/* Twój Projekt! v2 - jasny świat landingów /opt-in-page/ i /book-in/,
   przepisany mobile-first. Tokeny opisane w style-guide.html. */

:root {
  --granat: #1F3A93;
  --granat-ciemny: #172C70;
  --granat-tlo: #EEF1FA;
  --pom: #FF6B00;
  --pom-tekst: #C24A00;
  --pom-miekki: #FFE3CF;
  --ink: #111327;
  --muted: #545873;
  --line: #E3E6F0;
  --bg: #FFFFFF;
  --bg-soft: #F6F7FB;

  --font-head: 'Inter Tight', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r: 12px;
  --r-lg: 22px;
  --cien: 0 1px 2px rgba(31, 58, 147, .06), 0 10px 30px -12px rgba(31, 58, 147, .22);
  --cien-duzy: 0 30px 70px -28px rgba(31, 58, 147, .38);

  --max: 1160px;
  --gutter: 20px;
  --sekcja: 64px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

@media (min-width: 900px) {
  :root { --gutter: 40px; --sekcja: 96px; }
}

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

html { -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

::selection { background: var(--pom-miekki); color: var(--ink); }
:focus-visible { outline: 3px solid var(--pom); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}
h2 { font-size: clamp(30px, 6.4vw, 46px); }
h3 { font-size: 20px; letter-spacing: -0.015em; line-height: 1.2; font-weight: 700; }
p { text-wrap: pretty; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.sekcja { padding-block: var(--sekcja); }
.sekcja--soft { background: var(--bg-soft); }
.sekcja--granat { background: var(--granat); color: #fff; }
.naglowek { max-width: 720px; margin-bottom: 36px; }
.naglowek p { margin-top: 16px; color: var(--muted); font-size: 18px; }
.sekcja--granat .naglowek p { color: #D5DCF2; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip:focus { top: 12px; }

/* ── Ikony ── */
.ik { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Przyciski ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 28px;
  font-family: var(--font-head); font-size: 17px; font-weight: 700; letter-spacing: -0.005em;
  text-decoration: none; white-space: nowrap;
  border: 0; border-radius: var(--r); cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s;
}
.btn .ik { transition: transform .2s var(--ease); }
.btn:hover .ik { transform: translateX(4px); }
.btn--pom { background: var(--pom); color: var(--ink); box-shadow: 0 10px 24px -10px rgba(255, 107, 0, .7); }
.btn--pom:hover { background: #FF7A1A; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(255, 107, 0, .75); }
.btn--pom:active { transform: translateY(0); }
.btn--jasny { background: #fff; color: var(--granat); }
.btn--jasny:hover { background: var(--granat-tlo); }
.btn--obrys { background: transparent; color: var(--granat); box-shadow: inset 0 0 0 2px var(--granat); }
.btn--obrys:hover { background: var(--granat); color: #fff; }
.btn--pelny { width: 100%; }

.pod-btn { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 14px; font-size: 14px; color: var(--muted); }
.pod-btn span { display: inline-flex; align-items: center; gap: 6px; }
.pod-btn .ik { width: 16px; height: 16px; color: var(--granat); }

/* ── Nagłówek strony ── */
.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.top.jest-przewiniety { border-bottom-color: var(--line); }
.top__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.logo b { font-family: var(--font-head); font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.logo small { margin-top: 4px; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pom-tekst); }

.nav { display: none; }
.nav a { font-family: var(--font-head); font-size: 16px; font-weight: 600; text-decoration: none; color: var(--ink); padding: 8px 2px; }
.nav a:hover { color: var(--granat); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.top__cta { display: none; }

.menu-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 14px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700; cursor: pointer;
}
.menu-btn .ik { width: 18px; height: 18px; }

.menu {
  position: fixed; inset: 68px 0 auto 0; z-index: 49;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 40px -30px rgba(17, 19, 39, .35);
  padding: 8px var(--gutter) 24px;
  display: none;
}
.menu.jest-otwarte { display: block; }
.menu a:not(.btn) {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-head); font-size: 20px; font-weight: 700; text-decoration: none;
}
.menu a:not(.btn) .ik { color: var(--muted); }
.menu .btn { margin-top: 20px; width: 100%; }

@media (min-width: 960px) {
  .nav { display: flex; gap: 28px; }
  .top__cta { display: inline-flex; min-height: 46px; padding: 0 20px; font-size: 15px; }
  .menu-btn, .menu { display: none !important; }
}

/* ── Hero ── */
.hero { padding: 28px 0 var(--sekcja); }
.hero__in { display: grid; gap: 36px; }
.hero h1 { font-size: clamp(36px, 9.6vw, 56px); line-height: 1; }
.hero h1 .marker {
  background-image: linear-gradient(var(--pom), var(--pom));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% .16em;
  padding-bottom: .04em;
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .marker { animation: marker 1.1s .35s var(--ease) both; }
  @keyframes marker { from { background-size: 0 .16em; } }
}
.hero__lead { margin-top: 22px; font-size: 18px; color: var(--muted); max-width: 560px; }
.hero__lead strong { color: var(--ink); font-weight: 700; }

.koszt {
  margin: 28px 0 30px; padding: 18px 20px;
  background: var(--granat-tlo); border-radius: var(--r);
  max-width: 520px;
}
.koszt b { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--granat); line-height: 1.1; }
.koszt span { display: block; margin-top: 6px; font-size: 15px; line-height: 1.5; color: var(--ink); }

.hero__foto { position: relative; max-width: 440px; justify-self: center; width: 100%; }
.hero__foto picture img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 12%;
  border-radius: var(--r-lg); background: var(--pom);
  box-shadow: var(--cien-duzy);
}
.certy {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px -12px rgba(17, 19, 39, .4);
}
.certy strong { width: 100%; font-family: var(--font-head); font-size: 15px; font-weight: 700; line-height: 1.3; }
.chip {
  display: inline-block; padding: 5px 10px; border-radius: 999px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700; line-height: 1.2; white-space: nowrap;
  background: var(--granat); color: #fff;
}
.chip--pom { background: var(--pom); color: var(--ink); }
.chip--jasny { background: var(--granat-tlo); color: var(--granat); }

@media (min-width: 900px) {
  .hero { padding-top: 48px; }
  .hero__in { grid-template-columns: 1.35fr .65fr; gap: 56px; align-items: center; }
  .hero__foto { justify-self: end; }
  .hero__foto picture img { aspect-ratio: 4 / 5; }
}

/* ── Najtańsze ogniwo ── */
.ogniwo__in { display: grid; gap: 36px; }
.ogniwo h2 { color: #fff; }
.ogniwo p { margin-top: 18px; color: #D5DCF2; font-size: 18px; max-width: 600px; }
.ogniwo__kwota { border-top: 1px solid rgba(255, 255, 255, .22); padding-top: 26px; }
.ogniwo__kwota small { display: block; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: #FFB27A; }
.ogniwo__kwota b {
  display: block; margin-top: 8px;
  font-family: var(--font-head); font-size: clamp(34px, 8.6vw, 56px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.ogniwo__kwota > span { display: block; margin-top: 14px; color: #D5DCF2; font-size: 16px; max-width: 460px; }
@media (min-width: 900px) {
  .ogniwo__in { grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: end; }
  .ogniwo__kwota { border-top: 0; border-left: 1px solid rgba(255, 255, 255, .22); padding: 6px 0 6px 40px; }
}

/* ── Video ── */
.video__in { display: grid; gap: 32px; }
.video__ramka {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); box-shadow: var(--cien-duzy);
  aspect-ratio: 16 / 9; background: var(--ink);
  text-decoration: none; color: #fff;
}
.video__ramka img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.video__ramka:hover img { transform: scale(1.03); }
.video__play {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--pom); color: var(--ink);
  box-shadow: 0 12px 28px -8px rgba(17, 19, 39, .55);
  transition: transform .3s var(--ease);
}
.video__ramka:hover .video__play { transform: scale(1.08); }
.video__play .ik { width: 28px; height: 28px; fill: currentColor; stroke: none; margin-left: 4px; }
.video__czas {
  position: absolute; right: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 8px;
  background: rgba(17, 19, 39, .78); font-size: 14px; font-weight: 600;
}
.video__czas .ik { width: 16px; height: 16px; }

.rzeczy { list-style: none; padding: 0; display: grid; gap: 12px; }
.rzeczy li {
  display: grid; grid-template-columns: 40px 1fr; gap: 4px 16px;
  padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
}
.rzeczy .nr {
  grid-row: span 2;
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  background: var(--pom-miekki); color: #9A3A00;
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
}
.rzeczy h3 { font-size: 18px; }
.rzeczy p { color: var(--muted); font-size: 16px; line-height: 1.55; }
.video__cta { margin-top: 28px; }
@media (min-width: 900px) {
  .video__in { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .video__lewa { position: sticky; top: 100px; }
}

/* ── Droga ── */
.droga { list-style: none; padding: 0; display: grid; gap: 0; counter-reset: krok; }
.droga li { position: relative; padding: 0 0 30px 60px; }
.droga li::before {
  content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px;
  background: var(--line);
}
.droga li:last-child { padding-bottom: 0; }
.droga li:last-child::before { display: none; }
.droga__ik {
  position: absolute; left: 0; top: 0;
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--granat); color: #fff;
}
.droga li:first-child .droga__ik { background: var(--pom); color: var(--ink); }
.droga__czas { display: inline-block; margin-bottom: 6px; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--pom-tekst); }
.droga h3 { font-size: 21px; }
.droga p { margin-top: 8px; color: var(--muted); font-size: 16px; max-width: 340px; }
@media (min-width: 900px) {
  .droga { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .droga li { padding: 64px 0 0 0; }
  .droga li::before { left: 56px; right: -24px; top: 21px; bottom: auto; width: auto; height: 2px; }
}

/* ── Mentoring ── */
.sciezki { display: grid; gap: 14px; }
.sciezka {
  position: relative; display: flex; flex-direction: column;
  padding: 26px 24px; border-radius: var(--r-lg);
  background: #fff; box-shadow: var(--cien);
}
.sciezka--wyr { background: var(--granat); color: #fff; border-color: var(--granat); }
.sciezka__sesje { display: flex; align-items: baseline; gap: 8px; }
.sciezka__sesje b { font-family: var(--font-head); font-size: 48px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--granat); }
.sciezka--wyr .sciezka__sesje b { color: #fff; }
.sciezka__sesje span { font-family: var(--font-head); font-weight: 700; color: var(--muted); }
.sciezka h3 { margin-top: 18px; font-size: 22px; }
.sciezka p { margin-top: 8px; color: var(--muted); font-size: 16px; }
.sciezka .chip { position: absolute; top: 22px; right: 20px; }
.sciezka--wyr .sciezka__sesje span, .sciezka--wyr p { color: #D5DCF2; }

.cena {
  margin-top: 20px; padding: 24px; border-radius: var(--r-lg);
  background: var(--bg-soft); display: grid; gap: 20px;
}
.cena__kwota { font-family: var(--font-head); font-size: 17px; font-weight: 600; color: var(--muted); }
.cena__kwota b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.15; }
.cena ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.cena li { display: flex; gap: 10px; font-size: 16px; }
.cena li .ik { color: var(--granat); margin-top: 3px; }
@media (min-width: 900px) {
  .sciezki { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .sciezka--wyr { transform: translateY(-12px); }
  .cena { grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; padding: 28px 36px; }
  .cena ul { grid-template-columns: repeat(2, max-content); gap: 10px 28px; }
}

/* ── O mnie ── */
.omnie__in { display: grid; gap: 32px; }
.omnie__foto img { width: 100%; aspect-ratio: 1 / 1; object-position: center 15%; object-fit: cover; border-radius: var(--r-lg); max-width: 460px; }
.omnie h2 { font-size: clamp(34px, 7vw, 50px); }
.omnie .chipy { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.omnie p + p { margin-top: 14px; }
.omnie p { color: var(--muted); max-width: 600px; }
.omnie p strong { color: var(--ink); }
.omnie blockquote {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line);
  font-family: var(--font-head); font-size: 22px; font-weight: 700; line-height: 1.3; letter-spacing: -0.015em; max-width: 560px;
}
@media (min-width: 900px) {
  .omnie__in { grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: center; }
}

/* ── Opinie ── */
.opinie__gora { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.opinie__strzalki { display: none; gap: 10px; margin-bottom: 36px; }
.strzalka {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); cursor: pointer; color: var(--granat);
  transition: background-color .2s, color .2s;
}
.strzalka:hover { background: var(--granat); color: #fff; }
.strzalka:disabled { opacity: .35; cursor: default; background: #fff; color: var(--granat); }
.opinie__tor {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(86%, 380px); gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  padding: 4px var(--gutter) 24px; margin-inline: calc(var(--gutter) * -1);
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.opinia {
  scroll-snap-align: start;
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  padding: 26px 24px; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line);
}
.opinia p { font-size: 16px; line-height: 1.6; }
.opinia footer { display: flex; align-items: center; gap: 12px; }
.opinia__ini {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--granat); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
.opinia:nth-child(3n+2) .opinia__ini { background: var(--pom); color: var(--ink); }
.opinia cite { font-style: normal; display: flex; flex-direction: column; line-height: 1.35; }
.opinia cite b { font-family: var(--font-head); font-size: 16px; }
.opinia cite span { font-size: 14px; color: var(--muted); }
@media (min-width: 900px) {
  .opinie__strzalki { display: flex; }
  .opinie__tor { margin-inline: 0; padding-inline: 0; scroll-padding-inline: 0; }
}

/* ── Materiały ── */
.materialy { display: grid; gap: 14px; }
.produkt {
  display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: center;
  padding: 14px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line);
  text-decoration: none; transition: border-color .2s, transform .2s var(--ease);
}
.produkt:hover { border-color: #C9CFE3; transform: translateY(-2px); }
.produkt img { width: 96px; height: 96px; object-fit: cover; border-radius: 12px; background: var(--bg-soft); }
.produkt h3 { font-size: 17px; }
.produkt p { margin-top: 4px; font-size: 14px; color: var(--muted); line-height: 1.45; }
.produkt__cena { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-family: var(--font-head); font-weight: 800; font-size: 17px; }
.produkt__cena s { font-weight: 600; font-size: 14px; color: var(--muted); }
.produkt__cena .ik { width: 18px; height: 18px; color: var(--granat); margin-left: auto; }
@media (min-width: 900px) {
  .materialy { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .produkt { grid-template-columns: 1fr; padding: 16px 16px 20px; align-items: start; }
  .produkt img { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .produkt > div { padding-inline: 6px; }
}

/* ── FAQ ── */
.faq__in { display: grid; gap: 24px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; font-family: var(--font-head); font-size: 18px; font-weight: 700; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ik { color: var(--pom-tekst); transition: transform .3s var(--ease); }
.faq details[open] summary .ik { transform: rotate(45deg); }
.faq details p { padding: 0 0 22px; color: var(--muted); max-width: 640px; }
@media (min-width: 900px) {
  .faq__in { grid-template-columns: .8fr 1.2fr; gap: 72px; }
}

/* ── Finał ── */
.final__box {
  display: grid; gap: 24px;
  padding: 36px 24px; border-radius: var(--r-lg);
  background: var(--granat); color: #fff;
}
.final h2 { color: #fff; }
.final p { color: #D5DCF2; font-size: 18px; max-width: 560px; }
.final .pod-btn { color: #D5DCF2; }
.final .pod-btn .ik { color: #FFB27A; }
@media (min-width: 900px) {
  .final__box { grid-template-columns: 1fr auto; align-items: center; gap: 48px; padding: 56px; }
}

/* ── Stopka ── */
.stopka { padding: 44px 0 110px; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.stopka__in { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.stopka__in > :first-child { grid-column: 1 / -1; }
.stopka h2 { font-size: 15px; letter-spacing: 0; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.stopka ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.stopka a { text-decoration: none; }
.stopka a:hover { color: var(--granat); text-decoration: underline; text-underline-offset: 4px; }
.stopka__dol { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; }
.stopka__dol a { display: inline-flex; align-items: center; gap: 8px; }
.stopka__dol img { height: 20px; width: auto; }
@media (min-width: 900px) {
  .stopka { padding-bottom: 44px; }
  .stopka__in { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .stopka__in > :first-child { grid-column: auto; }
}

/* ── Pasek CTA na telefonie ── */
.pasek {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  translate: 0 110%; transition: translate .35s var(--ease);
}
.pasek.jest-widoczny { translate: 0 0; }
.pasek .btn { width: 100%; min-height: 52px; }
@media (min-width: 960px) { .pasek { display: none; } }
.final__lead { margin-top: 16px; }
.stopka__opis { margin-top: 14px; max-width: 320px; }
.produkt img.produkt__baner { object-position: right center; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.nw { white-space: nowrap; }
@media (min-width: 900px) { .omnie__foto img { aspect-ratio: 4 / 5; } }
.szczyt { position: absolute; top: 0; left: 0; width: 1px; height: 8px; pointer-events: none; }
.final__box .btn--pom, .final__box .btn--pom:hover { box-shadow: none; }

/* ═══ Wersja całej strony (układ z twoj-projekt.pl) ═══ */

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Nagłówek: Mentoring 1:1 widoczny też na telefonie */
.top__cta { display: inline-flex; min-height: 42px; padding: 0 14px; font-size: 14px; box-shadow: none; }
.top__in { gap: 10px; }
.top__in .logo { margin-right: auto; }
@media (max-width: 359px) { .top__cta { display: none; } }
@media (min-width: 960px) { .top__cta { min-height: 46px; padding: 0 20px; font-size: 15px; } }
.nav a[aria-current="page"] { color: var(--granat); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; text-decoration-color: var(--pom); }
.menu a[aria-current="page"] { color: var(--granat); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__cta .btn { flex: 1 1 auto; }
@media (min-width: 600px) { .hero__cta .btn { flex: 0 0 auto; } }
.hero__foto picture img { background: #F3F3F3; }

.chipy { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

/* Atuty: trzy powody */
.atuty { display: grid; gap: 28px; }
.atut__ik {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px;
  background: var(--granat); color: #fff; margin-bottom: 16px;
}
.atut__ik .ik { width: 24px; height: 24px; }
.atut h3 { font-size: 20px; }
.atut p { margin-top: 8px; color: var(--muted); font-size: 16px; }
@media (min-width: 900px) { .atuty { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

/* Zdjęcie obok tekstu */
.split { display: grid; gap: 32px; }
.split__foto img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3 / 2; object-fit: cover; }
.split h2 { font-size: clamp(28px, 5.6vw, 40px); }
.punkty { list-style: none; padding: 0; display: grid; gap: 16px; margin-top: 24px; }
.punkty li { display: flex; gap: 14px; }
.punkty li > .ik { flex: none; width: 26px; height: 26px; padding: 5px; border-radius: 50%; background: var(--pom-miekki); color: #9A3A00; stroke-width: 2.6; margin-top: 1px; }
.punkty p { color: var(--muted); }
.punkty strong { color: var(--ink); }
.punkty--jasne li > .ik { background: var(--granat-tlo); color: var(--granat); }
.split__dopisek { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); }
.split__dopisek strong { color: var(--ink); }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }

/* Oferta na głównej */
.oferta-glowna { display: grid; gap: 14px; }
.oferta-karta {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 26px 24px; border-radius: var(--r-lg); background: #fff; box-shadow: var(--cien);
  text-decoration: none; transition: transform .2s var(--ease);
}
.oferta-karta:hover { transform: translateY(-3px); }
.oferta-karta h3 { font-size: 22px; }
.oferta-karta p { color: var(--muted); font-size: 16px; flex: 1; }
.oferta-karta__ik { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--granat-tlo); color: var(--granat); margin-bottom: 6px; }
.oferta-karta__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-family: var(--font-head); font-weight: 700; color: var(--granat); }
.oferta-karta--wyr { background: var(--granat); color: #fff; box-shadow: var(--cien-duzy); }
.oferta-karta--wyr .chip { align-self: flex-start; margin-bottom: 6px; }
.oferta-karta--wyr p { color: #D5DCF2; }
.oferta-karta--wyr .oferta-karta__link { color: #FFB27A; }
.oferta-dodatkowa { display: grid; gap: 10px; margin-top: 14px; }
.oferta-dodatkowa a {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--r); background: #fff; border: 1px solid var(--line);
  text-decoration: none; font-size: 15px; color: var(--muted); line-height: 1.4;
  transition: border-color .2s;
}
.oferta-dodatkowa a:hover { border-color: var(--granat); }
.oferta-dodatkowa a > .ik:first-child { color: var(--granat); }
.oferta-dodatkowa a > .ik:last-child { color: var(--muted); width: 18px; height: 18px; }
.oferta-dodatkowa b { display: block; font-family: var(--font-head); font-size: 16px; color: var(--ink); }
@media (min-width: 900px) {
  .oferta-glowna { grid-template-columns: 1.15fr 1fr 1fr; gap: 20px; }
  .oferta-karta { padding: 32px 28px; }
  .oferta-dodatkowa { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
}

/* Finał ze zdjęciem */
.final__box--foto { overflow: hidden; padding-bottom: 0; }
.final__tekst { padding-bottom: 8px; }
.final__tekst .btn { margin-top: 26px; }
.final__foto img { width: 100%; max-width: 300px; margin: 0 auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: 18px 18px 0 0; }
@media (min-width: 900px) {
  .final__box--foto { grid-template-columns: 1fr 320px; padding: 56px 56px 0; align-items: end; }
  .final__tekst { padding-bottom: 56px; }
}
.final__cytat { font-family: var(--font-head); font-size: clamp(20px, 3.4vw, 26px); font-weight: 700; line-height: 1.35; letter-spacing: -0.015em; }
.final__akcje { display: grid; gap: 10px; }

/* Nagłówek podstrony */
.podstrona-hero { padding: 36px 0 var(--sekcja); }
.podstrona-hero h1 { font-size: clamp(34px, 8vw, 54px); line-height: 1.02; }
.podstrona-hero .hero__lead + .hero__lead { margin-top: 12px; }
.podstrona-hero__in { display: grid; gap: 32px; }
.podstrona-hero__foto img { width: 100%; max-width: 440px; border-radius: var(--r-lg); box-shadow: var(--cien-duzy); aspect-ratio: 1 / 1; object-fit: cover; object-position: top; }
.podstrona-hero__foto--wysokie img { aspect-ratio: 4 / 5; }
.podstrona-hero--waska { padding-bottom: 28px; }
@media (min-width: 900px) {
  .podstrona-hero { padding-top: 56px; }
  .podstrona-hero__in { grid-template-columns: 1.3fr .7fr; gap: 64px; align-items: center; }
  .podstrona-hero__foto { justify-self: end; }
  .podstrona-hero__foto--wysokie img { max-width: 380px; }
}

/* O mnie */
.kompetencje { display: grid; gap: 14px; }
.kompetencje > div { padding: 22px 22px 24px; border-radius: var(--r-lg); background: #fff; }
.kompetencje dt { font-family: var(--font-head); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.kompetencje dd { margin: 8px 0 0; color: var(--muted); font-size: 16px; }
@media (min-width: 900px) {
  .kompetencje { grid-template-columns: 1fr 1fr; gap: 20px; }
  .kompetencje > div:last-child { grid-column: 1 / -1; }
}
.obszary { display: grid; gap: 14px; }
.obszar { padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.obszar h3 { font-size: 19px; }
.obszar p { margin-top: 8px; color: var(--muted); font-size: 16px; }
.obszar--wyr { background: var(--granat); border-color: var(--granat); color: #fff; }
.obszar--wyr .chip { margin-bottom: 16px; }
.obszar--wyr p { color: #D5DCF2; }
@media (min-width: 900px) { .obszary { grid-template-columns: repeat(3, 1fr); gap: 20px; } .obszar--wyr { grid-column: span 2; } }

/* Oferta */
.skoki {
  display: flex; gap: 8px; margin-top: 26px;
  overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
}
.skoki::-webkit-scrollbar { display: none; }
.skoki a {
  flex: none; padding: 10px 16px; border-radius: 999px; background: var(--granat-tlo); color: var(--granat);
  font-family: var(--font-head); font-size: 15px; font-weight: 700; text-decoration: none; white-space: nowrap;
}
.skoki a:hover { background: var(--granat); color: #fff; }
@media (min-width: 900px) { .skoki { flex-wrap: wrap; margin-inline: 0; padding-inline: 0; } }

.usluga-glowna { display: grid; gap: 32px; }
.usluga-glowna h2 { color: #fff; }
.usluga-glowna > div > p { margin-top: 18px; color: #D5DCF2; font-size: 18px; max-width: 580px; }
.usluga-glowna__karta { padding: 26px 22px; border-radius: var(--r-lg); background: #fff; color: var(--ink); }
.usluga-glowna__karta h3 { font-size: 22px; }
.usluga-glowna__krok { margin-top: 8px; color: var(--muted); font-size: 16px; }
.usluga-glowna__karta .punkty { margin: 18px 0 24px; gap: 12px; }
.usluga-glowna__karta .punkty p { color: var(--ink); font-size: 16px; }
@media (min-width: 900px) { .usluga-glowna { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; } .usluga-glowna__karta { padding: 32px; } }

.uslugi { display: grid; gap: 14px; }
.usluga { display: grid; gap: 4px; padding: 24px; border-radius: var(--r-lg); background: var(--bg-soft); }
.usluga h3 { font-size: 21px; }
.usluga p { margin-top: 8px; color: var(--muted); max-width: 640px; }
.usluga__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--font-head); font-weight: 700; color: var(--granat); text-decoration: none; }
.usluga__link:hover { text-decoration: underline; text-underline-offset: 5px; }
@media (min-width: 900px) {
  .uslugi { grid-template-columns: 1fr 1fr; gap: 20px; }
  .usluga { grid-template-columns: auto 1fr; gap: 20px; padding: 32px; }
  .usluga .atut__ik { margin: 0; }
}

/* Sklep: katalog w kafelkach */
.sekcja--sklep { padding-top: 0; }
.katalog { list-style: none; padding: 0; display: grid; gap: 16px; }
.kafel {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r-lg); background: #fff; box-shadow: var(--cien);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.kafel:hover { transform: translateY(-3px); box-shadow: var(--cien-duzy); }
.kafel__foto { display: block; background: var(--bg-soft); }
.kafel__foto img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; transition: transform .5s var(--ease); }
.kafel:hover .kafel__foto img { transform: scale(1.03); }
.kafel__tresc { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.kafel__rodzaj { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--pom-tekst); }
.kafel h2 { margin-top: 4px; font-size: 21px; letter-spacing: -0.02em; line-height: 1.2; }
.kafel h2 a { text-decoration: none; }
.kafel h2 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.kafel p { margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1; }
.kafel__dol { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.kafel__dol b { font-family: var(--font-head); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.kafel__cta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--granat); }
@media (min-width: 640px) { .katalog { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .katalog { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* Formularze */
.form { display: grid; gap: 18px; }
.pole { display: grid; gap: 8px; border: 0; padding: 0; min-width: 0; }
.pole > label, .pole > legend { font-family: var(--font-head); font-size: 16px; font-weight: 700; line-height: 1.35; padding: 0; }
.pole > legend { margin-bottom: 10px; }
.pole__pomoc { margin-top: -4px; font-size: 14px; color: var(--muted); }
.pole input:not([type="radio"]):not([type="checkbox"]), .pole textarea {
  width: 100%; min-height: 52px; padding: 12px 16px;
  border: 1.5px solid #CBD1E3; border-radius: 12px; background: #fff;
  font: inherit; font-size: 16px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.pole textarea { resize: vertical; min-height: 120px; }
.pole input::placeholder, .pole textarea::placeholder { color: #6B7089; }
.pole input:focus, .pole textarea:focus { outline: none; border-color: var(--granat); box-shadow: 0 0 0 4px rgba(31, 58, 147, .14); }
.pole--blad input, .pole--blad textarea { border-color: #C0262D; }
.pole__blad { font-size: 14px; font-weight: 600; color: #B3222A; }

.pigulki, .opcje { display: flex; flex-wrap: wrap; gap: 8px; }
.opcje { flex-direction: column; }
.pigulki label, .opcje label { position: relative; cursor: pointer; }
.pigulki input, .opcje input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.pigulki span, .opcje span {
  display: block; padding: 11px 16px; border-radius: 12px;
  border: 1.5px solid #CBD1E3; background: #fff;
  font-size: 15px; line-height: 1.4; transition: border-color .15s, background-color .15s, color .15s;
}
.pigulki span { border-radius: 999px; }
.opcje span { padding: 13px 16px 13px 44px; }
.opcje span::before {
  content: ""; position: absolute; left: 16px; top: 15px; width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid #9CA3BD; background: #fff; transition: border .15s;
}
.pigulki label:hover span, .opcje label:hover span { border-color: var(--granat); }
.pigulki input:checked + span { background: var(--granat); border-color: var(--granat); color: #fff; }
.opcje input:checked + span { border-color: var(--granat); background: var(--granat-tlo); }
.opcje input:checked + span::before { border: 5px solid var(--granat); }
.pigulki input:focus-visible + span, .opcje input:focus-visible + span { outline: 3px solid var(--pom); outline-offset: 2px; }
.pole--blad .pigulki span, .pole--blad .opcje span { border-color: #E3A1A4; }

.zgoda { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--muted); cursor: pointer; }
.zgoda input { flex: none; width: 20px; height: 20px; margin-top: 1px; accent-color: var(--granat); }
.zgoda a { color: var(--granat); }
.zgoda.pole--blad span { color: #B3222A; }

.form__komunikat:empty { display: none; }
.form__komunikat { padding: 14px 16px; border-radius: 12px; background: var(--granat-tlo); color: var(--granat); font-size: 15px; font-weight: 600; }
.form__komunikat--blad { background: #FDECEC; color: #B3222A; }

.form-karta { padding: 24px 20px; border-radius: var(--r-lg); background: #fff; box-shadow: var(--cien-duzy); }
.form-karta > h2 { font-size: 26px; }
.form-karta > p { margin: 8px 0 22px; color: var(--muted); font-size: 16px; }
.form-karta > p a { color: var(--granat); }
@media (min-width: 900px) { .form-karta { padding: 36px; } }

/* Kontakt */
.kontakt__in { display: grid; gap: 36px; }
.kanaly { list-style: none; padding: 0; display: grid; gap: 10px; margin-top: 24px; }
.kanaly a { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 17px; text-decoration: none; }
.kanaly .ik { width: 38px; height: 38px; padding: 9px; border-radius: 10px; background: var(--granat-tlo); color: var(--granat); }
.kanaly a:hover { color: var(--granat); }
.kontakt__foto { display: none; }
@media (min-width: 900px) {
  .kontakt__in { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .kontakt__foto { display: block; margin-top: 32px; }
  .kontakt__foto img { width: 100%; max-width: 360px; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 20%; border-radius: var(--r-lg); }
}

/* Newsletter */
.nl-hero__in { display: grid; gap: 32px; }
.nl-hero__okladka img { width: 100%; margin-top: 28px; border-radius: var(--r-lg); box-shadow: var(--cien-duzy); }
.nl-karta { padding: 26px 22px; border-radius: var(--r-lg); background: var(--granat); color: #fff; }
.nl-karta h2 { font-size: 26px; color: #fff; }
.nl-karta > p { margin: 10px 0 22px; color: #D5DCF2; font-size: 16px; }
.nl-karta .pole > label { color: #fff; }
.nl-karta .pole input { border-color: transparent; }
.nl-karta .zgoda { color: #D5DCF2; }
.nl-karta .zgoda a { color: #fff; }
.nl-karta .form__komunikat { background: #fff; }
@media (min-width: 900px) {
  .nl-hero__in { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
  .nl-karta { padding: 36px; position: sticky; top: 96px; }
}

.nl-pas { padding: 48px 0; background: var(--granat); color: #fff; }
.nl-pas__in { display: grid; gap: 24px; }
.nl-pas h2 { color: #fff; font-size: clamp(24px, 4.6vw, 32px); }
.nl-pas__in > div > p { margin-top: 10px; color: #D5DCF2; }
.nl-form { gap: 12px; }
.nl-form .pole > label { color: #fff; font-size: 14px; }
.nl-form .pole input { border-color: transparent; }
.nl-form .zgoda { color: #D5DCF2; font-size: 13px; }
.nl-form .zgoda a { color: #fff; }
.nl-form .form__komunikat { background: #fff; }
.bez-nl-pasa .nl-pas { display: none; }
@media (min-width: 700px) {
  .nl-form { grid-template-columns: 1fr 1fr; align-items: end; }
  .nl-form .zgoda, .nl-form .form__komunikat { grid-column: 1 / -1; }
  .nl-form .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (min-width: 1000px) { .nl-pas__in { grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; } }

/* Zgłoszenie mentoringowe */
.zgloszenie__in { display: grid; gap: 32px; }
.zgloszenie__lista { margin-top: 26px; }
.zgloszenie__lista h2 { font-size: 20px; letter-spacing: -0.015em; }
.zgloszenie__lista .punkty { margin-top: 14px; }
.zgloszenie__lista .punkty p { color: var(--ink); }
.podpis { display: flex; gap: 14px; align-items: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.podpis img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: top; flex: none; }
.podpis p { font-size: 15px; color: var(--muted); }
.podpis b { display: block; margin-top: 2px; font-family: var(--font-head); color: var(--ink); }
@media (min-width: 900px) {
  .zgloszenie__in { grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
  .zgloszenie__intro { position: sticky; top: 100px; }
}

.krok { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: 22px; }
.krok__tytul { font-family: var(--font-head); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; padding: 0; margin-bottom: 4px; }
.kroki__pasek, .kroki__licznik, .kroki__wstecz, .kroki__dalej { display: none; }
.kroki__nawigacja { display: flex; gap: 10px; }
.kroki__nawigacja .btn { flex: 1; }
.kroki--js .krok:not(.jest-aktywny) { display: none; }
.kroki--js .kroki__pasek { display: block; height: 6px; border-radius: 999px; background: var(--granat-tlo); overflow: hidden; }
.kroki--js .kroki__pasek span { display: block; height: 100%; width: 33.3%; background: var(--pom); border-radius: inherit; transition: width .4s var(--ease); }
.kroki--js .kroki__licznik { display: block; margin-top: -8px; font-size: 14px; color: var(--muted); }
.kroki--js .kroki__licznik b { color: var(--ink); }
.kroki--js .kroki__wstecz, .kroki--js .kroki__dalej { display: inline-flex; }
.kroki--js .kroki__wyslij { display: none; }
.kroki--js.na-pierwszym .kroki__wstecz { display: none; }
.kroki--js.na-ostatnim .kroki__dalej { display: none; }
.kroki--js.na-ostatnim .kroki__wyslij { display: inline-flex; }
.kroki--js .kroki__wstecz { flex: 0 0 auto; }
.podstrona-hero__in > *, .hero__in > *, .split > *, .usluga-glowna > * { min-width: 0; }

/* Poprawki po zrzutach */
.hero h1 { font-size: clamp(32px, 8.2vw, 54px); }
.hero__foto--naturalne picture img, .hero__foto--naturalne picture img { aspect-ratio: auto; }
.nl-pas { background: var(--granat-tlo); color: var(--ink); }
.nl-pas h2 { color: var(--ink); }
.nl-pas__in > div > p { color: var(--muted); }
.nl-form .pole > label { color: var(--ink); }
.nl-form .pole input { border-color: #CBD1E3; }
.nl-form .zgoda { color: var(--muted); }
.nl-form .zgoda a { color: var(--granat); }
.nl-form .form__komunikat { background: #fff; }
.stopka__in > :nth-child(2) { grid-column: 1 / -1; }
@media (min-width: 900px) { .stopka__in > :nth-child(2) { grid-column: auto; } }
.usluga-glowna__karta .usluga-glowna__krok { color: var(--muted); font-size: 16px; margin-top: 8px; }
/* Ikona obok nagłówka, nie nad nim */
.atut, .obszar:not(.obszar--wyr) { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; align-content: start; }
.atut .atut__ik, .obszar .atut__ik { grid-row: span 2; margin: 0; }
.atut h3, .obszar h3 { align-self: center; }

/* ═══ Rejestr obecnej strony: spokojniejsza typografia, markowe logo, lepsze menu ═══ */

/* Nagłówek */
.top { background: #fff; }
.top.jest-przewiniety { border-bottom-color: transparent; box-shadow: 0 8px 24px -16px rgba(31, 58, 147, .35); }
.top__in { height: 72px; gap: 16px; }
.logo { align-items: center; }
.logo b {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em; color: var(--granat);
  padding-bottom: 3px; border-bottom: 2px solid var(--pom);
}
.logo small { margin-top: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--pom-tekst); }
.top__narzedzia { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.ikona-btn {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  color: var(--granat); transition: background-color .15s, color .15s;
}
.ikona-btn:hover { background: var(--granat-tlo); }
.ikona-btn .ik { width: 22px; height: 22px; stroke-width: 1.8; }
.ikona-btn--konto { display: none; }
.top__cta { display: none; }
.menu-btn { width: 44px; height: 44px; padding: 0; justify-content: center; background: var(--granat); color: #fff; border: 0; border-radius: 12px; }
.menu-btn .ik { width: 22px; height: 22px; }

.menu { inset: 72px 0 0 0; overflow-y: auto; padding: 8px var(--gutter) 32px; box-shadow: none; border-top: 1px solid var(--line); }
.menu nav a { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--granat); text-decoration: none; }
.menu nav a .ik { color: var(--pom-tekst); }
.menu__konto { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 12px; }
.menu__konto a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; border-radius: 12px; background: var(--granat-tlo); color: var(--granat); font-family: var(--font-head); font-weight: 700; text-decoration: none; }
.menu .btn { margin-top: 0; }
body.menu-otwarte { overflow: hidden; }

@media (min-width: 960px) {
  .top__in { height: 88px; }
  .logo b { font-size: 26px; }
  .logo small { font-size: 15px; }
  .nav { flex: 1; justify-content: center; gap: 6px; }
  .nav a { position: relative; padding: 10px 14px; font-size: 16px; font-weight: 600; color: var(--granat); text-decoration: none; }
  .nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--pom); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .nav a:hover, .nav a[aria-current="page"] { color: var(--granat); text-decoration: none; }
  .nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
  .top__narzedzia { margin-left: 0; gap: 2px; }
  .ikona-btn--konto { display: grid; }
  .top__cta { display: inline-flex; margin-left: 12px; min-height: 46px; padding: 0 20px; font-size: 15px; }
}
html { scroll-padding-top: 96px; }

/* Typografia: średnia waga jak na obecnej stronie, wyróżnienie grubością */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(27px, 4.4vw, 38px); line-height: 1.18; }
.hero h1 { font-size: clamp(28px, 6.6vw, 44px); font-weight: 500; line-height: 1.24; letter-spacing: -0.02em; }
.hero h1 strong { font-weight: 800; color: var(--granat); }
.hero h1 .marker { font-weight: 800; background-size: 100% .1em; }
.podstrona-hero h1 { font-size: clamp(30px, 6vw, 46px); font-weight: 700; line-height: 1.12; }
.naglowek--srodek { text-align: center; margin-inline: auto; }
.sekcja { padding-block: calc(var(--sekcja) + 8px); }

/* Atuty jak na obecnej stronie: wyśrodkowane, kolorowe ikony bez kafli */
.atuty .atut { display: block; text-align: center; max-width: 340px; margin-inline: auto; }
.atuty .atut__ik { width: auto; height: auto; background: none; color: var(--pom); margin: 0 auto 14px; }
.atuty .atut:nth-child(2) .atut__ik { color: var(--granat); }
.atuty .atut__ik .ik { width: 44px; height: 44px; stroke-width: 1.6; }

/* Oferta na głównej: wyśrodkowane karty */
.oferta-karta { align-items: center; text-align: center; }
.oferta-karta__ik { width: auto; height: auto; background: none; color: var(--granat); }
.oferta-karta__ik .ik { width: 40px; height: 40px; stroke-width: 1.6; }
.oferta-karta:nth-child(3) .oferta-karta__ik { color: var(--pom); }
.oferta-karta--wyr .chip { align-self: center; }

/* Finały jasne, jeden granat na stronę wystarczy */
.final__box { background: var(--bg-soft); color: var(--ink); }
.final h2 { color: var(--ink); }
.final p, .final__lead { color: var(--muted); }
.final .pod-btn { color: var(--muted); }
.final .pod-btn .ik { color: var(--granat); }
.final__cytat { color: var(--ink); }
.final .btn--jasny { background: #fff; box-shadow: inset 0 0 0 2px var(--granat); }
.final__box .btn--pom, .final__box .btn--pom:hover { box-shadow: 0 10px 24px -10px rgba(255, 107, 0, .7); }
.nl-pas { background: #fff; border-top: 1px solid var(--line); }

/* Druga runda: bliżej proporcji obecnej strony */
:root { --muted: #464A66; }
h2, h3 { font-weight: 600; }
.hero h1 strong { color: var(--ink); font-weight: 700; }
.hero h1 .marker { font-weight: inherit; background-size: 100% .08em; background-position: 0 92%; }
.atut p, .oferta-karta p, .punkty p { font-size: 17px; }
@media (min-width: 960px) {
  .logo b { font-size: 28px; }
  .logo small { font-size: 16px; }
  .nav a { font-size: 17px; }
}
/* Zdjęcie w hero duże i odsłonięte, certyfikaty pod spodem */
.hero__foto .certy { position: static; margin-top: 14px; padding: 0; background: none; box-shadow: none; }
.hero__foto .certy strong { font-size: 15px; font-weight: 600; color: var(--muted); }
.hero__foto--naturalne picture img { border-radius: 18px; }
@media (min-width: 900px) {
  .hero__in { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero__foto { max-width: 520px; }
}

/* Trzecia runda: większa skala całej strony */
:root { --max: 1280px; }
body { font-size: 18px; }
@media (min-width: 900px) { :root { --gutter: 48px; --sekcja: 104px; } }

/* Nagłówek i menu */
.top__in { height: 80px; }
.logo b { font-size: 25px; }
.logo small { font-size: 15px; }
.ikona-btn, .menu-btn { width: 48px; height: 48px; }
.ikona-btn .ik, .menu-btn .ik { width: 26px; height: 26px; }
.menu { inset: 80px 0 0 0; }
.menu nav a { font-size: 24px; padding: 20px 0; }
@media (min-width: 960px) {
  .top__in { height: 104px; }
  .logo b { font-size: 34px; padding-bottom: 4px; border-bottom-width: 3px; }
  .logo small { font-size: 18px; margin-top: 6px; }
  .nav { gap: 10px; }
  .nav a { font-size: 19px; padding: 12px 14px; }
  .nav a::after { height: 3px; bottom: 2px; }
  .top__cta { min-height: 54px; padding: 0 26px; font-size: 17px; }
}
html { scroll-padding-top: 116px; }

/* Typografia */
.hero h1 { font-size: clamp(32px, 7.4vw, 56px); }
.hero__lead { font-size: 20px; max-width: 620px; }
h2 { font-size: clamp(30px, 5vw, 48px); }
h3 { font-size: 22px; }
.naglowek { max-width: 820px; margin-bottom: 48px; }
.naglowek p { font-size: 20px; }
.podstrona-hero h1 { font-size: clamp(34px, 6.6vw, 56px); }
.atut p, .oferta-karta p, .punkty p, .usluga p, .obszar p, .kompetencje dd, .kafel p { font-size: 18px; }
.atut h3, .obszar h3, .kompetencje dt { font-size: 22px; }
.oferta-karta h3, .usluga h3, .kafel h2 { font-size: 24px; }
.opinia p { font-size: 18px; }

/* Przyciski */
.btn { min-height: 60px; padding: 0 32px; font-size: 18px; }

/* Zdjęcia */
@media (min-width: 900px) {
  .hero__in { grid-template-columns: 1fr 1fr; gap: 64px; }
  .hero__foto { max-width: 620px; }
  .split { grid-template-columns: 1.1fr .9fr; gap: 72px; }
  .podstrona-hero__foto img { max-width: 540px; }
  .podstrona-hero__foto--wysokie img { max-width: 460px; }
  .podstrona-hero__in { grid-template-columns: 1.15fr .85fr; }
  .final__box--foto { grid-template-columns: 1fr 400px; }
  .kontakt__foto img { max-width: 480px; }
}
.split__foto img { border-radius: 20px; }
.final__foto img { max-width: 400px; }

/* Ikony */
.atuty .atut__ik .ik { width: 56px; height: 56px; }
.oferta-karta__ik .ik { width: 48px; height: 48px; }
.atut__ik { width: 56px; height: 56px; }
.atut__ik .ik { width: 28px; height: 28px; }
.atut, .obszar:not(.obszar--wyr) { grid-template-columns: 56px 1fr; }
.punkty li > .ik { width: 30px; height: 30px; padding: 6px; }

/* Karty i kafle */
.oferta-karta { padding: 32px 28px; }
.katalog { gap: 20px; }
@media (min-width: 1000px) { .katalog { gap: 28px; } }
.kafel__tresc { padding: 22px 24px 24px; }
.kafel__dol b { font-size: 26px; }
.opinie__tor { grid-auto-columns: min(88%, 420px); }

/* Czwarta runda: mniejszy H1, podpis pod zdjęciem, pełne ikony, newsletter na konwersję */
.hero h1 { font-size: clamp(28px, 6.4vw, 44px); line-height: 1.22; }
@media (min-width: 900px) { .hero__in { grid-template-columns: 1.1fr .9fr; } }
.hero__foto .certy { justify-content: center; text-align: center; }

.ikf { display: block; width: 48px; height: 48px; fill: currentColor; }
.atut__ik { width: auto; height: auto; background: none; color: var(--pom); margin: 0 0 14px; border-radius: 0; }
.atut__ik .ikf { width: 48px; height: 48px; }
.atuty .atut__ik .ikf { width: 64px; height: 64px; }
.atuty .atut:nth-child(2) .atut__ik, .obszar:nth-child(even) .atut__ik, .usluga:nth-child(even) .atut__ik { color: var(--granat); }
.atut, .obszar:not(.obszar--wyr) { grid-template-columns: 48px 1fr; }
.atuty .atut { grid-template-columns: none; }
.oferta-karta__ik .ikf { width: 56px; height: 56px; }
.oferta-karta--wyr .oferta-karta__ik { color: #FFB27A; }
.oferta-karta:nth-child(2) .oferta-karta__ik { color: var(--pom); }
.oferta-karta:nth-child(3) .oferta-karta__ik { color: var(--granat); }
.oferta-dodatkowa .ikf { width: 30px; height: 30px; color: var(--pom); }

/* Newsletter: blok nastawiony na zapis */
.nl-pas { padding: var(--sekcja) 0; background: #fff; border-top: 0; }
.nl-box {
  display: grid; overflow: hidden; border-radius: 26px;
  background: var(--granat); color: #fff; box-shadow: var(--cien-duzy);
}
.nl-box__okladka { position: relative; display: block; background: #0f1d52; }
.nl-box__okladka img { width: 100%; height: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.nl-box__play {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%;
  background: var(--pom); color: var(--ink); box-shadow: 0 12px 28px -8px rgba(0, 0, 0, .55);
}
.nl-box__play .ik { width: 28px; height: 28px; fill: currentColor; stroke: none; margin-left: 4px; }
.nl-box__czas { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 8px; background: rgba(10, 16, 45, .8); font-size: 15px; font-weight: 600; }
.nl-box__czas .ik { width: 16px; height: 16px; }
.nl-box__tresc { padding: 28px 22px 30px; }
.nl-box h2 { color: #fff; font-size: clamp(26px, 4.4vw, 38px); }
.nl-box__tresc > p { margin-top: 12px; color: #D5DCF2; font-size: 18px; }
.nl-box .nl-form { margin-top: 24px; gap: 14px; }
.nl-box .pole > label { color: #fff; font-size: 16px; }
.nl-box .pole input { border-color: transparent; }
.nl-box .zgoda { color: #C5CEEB; font-size: 14px; }
.nl-box .zgoda a { color: #fff; }
.nl-box .pod-btn { margin-top: 0; color: #D5DCF2; }
.nl-box .pod-btn .ik { color: #FFB27A; }
.nl-box .form__komunikat { background: #fff; }
.nl-box .btn--pom { box-shadow: none; }
@media (min-width: 700px) {
  .nl-box .nl-form { grid-template-columns: 1fr 1fr; align-items: end; }
  .nl-box .nl-form > :not(.pole) { grid-column: 1 / -1; }
}
@media (min-width: 1000px) {
  .nl-box { grid-template-columns: .9fr 1.1fr; }
  .nl-box__okladka img { aspect-ratio: auto; min-height: 100%; }
  .nl-box__tresc { padding: 48px 52px; }
}

/* Formularze: większe pola, łatwiejsze wypełnianie */
.pole input:not([type="radio"]):not([type="checkbox"]) { min-height: 58px; font-size: 18px; padding: 14px 18px; }
.pole textarea { font-size: 18px; padding: 14px 18px; }
.pole > label, .pole > legend { font-size: 17px; }
.pigulki span, .opcje span { font-size: 17px; padding-block: 13px; }
.opcje span::before { top: 17px; }
.zgoda input { width: 22px; height: 22px; }
.form .btn--pelny { min-height: 62px; font-size: 19px; }

/* Piąta runda: koszyk skrajnie po prawej, Mentoring przy menu, odstępy o połowę */
@media (min-width: 960px) {
  .nav { flex: 0 1 auto; justify-content: flex-start; align-items: center; margin-left: 48px; gap: 4px; }
  .nav .top__cta { margin-left: 14px; color: var(--ink); }
  .nav .top__cta::after { display: none; }
  .nav .top__cta:hover { color: var(--ink); }
  .top__narzedzia { margin-left: auto; }
}
:root { --sekcja: 36px; }
@media (min-width: 900px) { :root { --sekcja: 56px; } }
.sekcja { padding-block: var(--sekcja); }
.hero { padding: 24px 0 var(--sekcja); }
.podstrona-hero { padding: 28px 0 var(--sekcja); }
@media (min-width: 900px) { .hero, .podstrona-hero { padding-top: 40px; } }
.naglowek { margin-bottom: 32px; }
.nl-pas { padding: var(--sekcja) 0; }
/* Okładka newslettera w całości, nie przycięta */
@media (min-width: 1000px) {
  .nl-box__okladka { display: flex; align-items: center; padding: 40px 0 40px 40px; background: none; }
  .nl-box__okladka picture { position: relative; display: block; width: 100%; }
  .nl-box__okladka img { aspect-ratio: 16 / 9; min-height: 0; height: auto; border-radius: 16px; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .6); }
  .nl-box__play { left: calc(50% + 20px); }
  .nl-box__czas { right: 14px; bottom: 54px; }
}
.stopka .logo { align-items: flex-start; }
.stopka .logo small { margin-left: 0; }
.nl-box__okladka picture { position: relative; display: block; }
.nl-box__play { left: 50%; }
@media (min-width: 1000px) { .nl-box__play { left: 50%; } .nl-box__czas { bottom: 14px; } }

/* Przycisk Mentoring 1:1 w nagłówku: niższy, szerszy, biały tekst (życzenie klienta) */
@media (min-width: 960px) {
  .nav .top__cta, .nav .top__cta:hover { min-height: 44px; padding: 0 30px; font-size: 17px; color: #fff; box-shadow: none; }
}
/* Szara linia oddzielająca menu od treści, jak na obecnej stronie */
.top .top__in { position: relative; }
.top .top__in::after { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); bottom: 0; height: 1px; background: #DDE1EC; }
.top.jest-przewiniety .top__in::after { opacity: 0; }
/* Dodatkowe obszary oferty: większe boxy, ale niższe od trzech głównych kart */
.oferta-dodatkowa { gap: 14px; margin-top: 18px; }
.oferta-dodatkowa a {
  grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 10px;
  padding: 24px 22px 22px; border-radius: 20px; font-size: 17px; background: #fff; border: 0; box-shadow: var(--cien);
  transition: transform .2s var(--ease);
}
.oferta-dodatkowa a:hover { transform: translateY(-3px); }
.oferta-dodatkowa .ikf { width: 40px; height: 40px; }
.oferta-dodatkowa a:nth-child(2) .ikf { color: var(--granat); }
.oferta-dodatkowa b { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.oferta-dodatkowa a > .ik:last-child { width: 22px; height: 22px; color: var(--granat); }
@media (min-width: 900px) { .oferta-dodatkowa { gap: 20px; margin-top: 20px; } }
.stopka__dol img { height: 25px; }
/* Oferta: karty usług równej wysokości, ikona nad tekstem, link przy dolnej krawędzi */
.uslugi { align-items: stretch; }
.usluga, .usluga > div { display: flex; flex-direction: column; }
.usluga { gap: 0; padding: 30px 28px; border-radius: 22px; background: #fff; box-shadow: var(--cien); }
.usluga > div { flex: 1; }
.usluga .atut__ik { margin: 0 0 18px; }
.usluga .atut__ik .ikf { width: 64px; height: 64px; }
.usluga h3 { font-size: 24px; }
.usluga p { flex: 1; }
.usluga__link { margin-top: 22px; }
@media (min-width: 900px) {
  .usluga { display: flex; grid-template-columns: none; padding: 36px; }
}
/* Oferta na głównej: 6 kart w jednym formacie */
@media (min-width: 900px) { .oferta-glowna { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 640px) and (max-width: 899px) { .oferta-glowna { grid-template-columns: 1fr 1fr; } }
.oferta-karta .oferta-karta__ik .ikf { width: 60px; height: 60px; }
.oferta-karta:nth-child(4) .oferta-karta__ik { color: var(--pom); }
.oferta-karta:nth-child(5) .oferta-karta__ik { color: var(--granat); }
.oferta-karta:nth-child(6) .oferta-karta__ik { color: var(--pom); }
.oferta-karta h3 { min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
.btn--pelny { white-space: normal; text-align: center; line-height: 1.25; padding-block: 12px; }
.nl-hero__in > *, .kontakt__in > *, .zgloszenie__in > *, .nl-box > * { min-width: 0; }
.opinia p { font-style: italic; }
.usluga .atut__ik { align-self: flex-start; }
/* Motyw z logo: pomarańczowa kreska pod nagłówkami sekcji */
.naglowek h2, .final h2, .split h2, .usluga-glowna h2, .nl-box h2 {
  display: inline-block; padding-bottom: 8px; border-bottom: 3px solid var(--pom);
}
.naglowek p { display: block; }
/* Zgłoszenie: wstęp nad formularzem, jedna kolumna */
@media (min-width: 900px) {
  .zgloszenie__in { grid-template-columns: 1fr; max-width: 880px; margin-inline: auto; gap: 36px; }
  .zgloszenie__intro { position: static; }
  .zgloszenie__lista .punkty { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .zgloszenie__lista .punkty li { flex-direction: column; gap: 10px; }
  .form-karta { padding: 44px 48px; }
}
@media (min-width: 960px) { .nav .top__cta[aria-current="page"] { color: #fff; } }
/* Koszyk: większa, pełna ikona na jasnym tle */
.ikona-btn--koszyk { width: 50px; height: 50px; border-radius: 14px; background: var(--granat-tlo); color: var(--granat); }
.ikona-btn--koszyk .ikf { width: 28px; height: 28px; }
.ikona-btn--koszyk:hover { background: var(--granat); color: #fff; }
@media (min-width: 960px) { .ikona-btn--koszyk { width: 56px; height: 56px; } .ikona-btn--koszyk .ikf { width: 32px; height: 32px; } }
/* Wyraźne przyciski w boksach (Oferta i Moja oferta na głównej) */
.usluga__link, .oferta-karta__link {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 12px;
  box-shadow: inset 0 0 0 2px var(--granat); color: var(--granat);
  font-family: var(--font-head); font-size: 17px; font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: background-color .2s, color .2s;
}
.oferta-karta__link { align-self: center; margin-top: 14px; }
.usluga__link:hover, .oferta-karta:hover .oferta-karta__link { background: var(--granat); color: #fff; text-decoration: none; }
.usluga__link .ik, .oferta-karta__link .ik { transition: transform .2s var(--ease); }
.usluga__link:hover .ik, .oferta-karta:hover .oferta-karta__link .ik { transform: translateX(4px); }
.oferta-karta--wyr .oferta-karta__link { background: var(--pom); color: var(--ink); box-shadow: none; }
.oferta-karta--wyr:hover .oferta-karta__link { background: #FF7A1A; color: var(--ink); }
/* Kontakt: tekst i zdjęcie obok siebie, formularz pod spodem na środku */
.wrap--waski { max-width: 860px; }
.kontakt__foto { display: block; }
.kontakt__foto img { width: 100%; max-width: 460px; margin-inline: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%; border-radius: 22px; box-shadow: var(--cien-duzy); }
@media (min-width: 900px) {
  .kontakt__in { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .kontakt__foto { margin-top: 0; justify-self: end; }
  .kontakt__foto img { max-width: 460px; aspect-ratio: 4 / 5; }
}
@media (max-width: 899px) { .kontakt__foto img { aspect-ratio: 1 / 1; } }
.sekcja--soft .form-karta { box-shadow: var(--cien); }
.form-karta > h2 { font-size: clamp(26px, 4vw, 34px); }

/* Newsletter: jedna kolumna na środku */
.nl-hero__in { grid-template-columns: 1fr !important; max-width: 820px; margin-inline: auto; gap: 32px; }
.nl-hero__gora { text-align: center; }
.nl-hero__gora .hero__lead { margin-inline: auto; }
.nl-hero__okladka img { max-width: 720px; margin-inline: auto; }
.nl-karta { position: static !important; width: 100%; max-width: 640px; margin-inline: auto; text-align: center; }
.nl-karta .form { text-align: left; }
@media (min-width: 900px) { .nl-karta { padding: 44px 48px; } }
.nl-box__tresc > p strong, .nl-karta > p strong { color: #fff; font-weight: 700; }

/* Newsletter: wyraźniejsze zapewnienia pod przyciskiem */
.nl-box .pod-btn { gap: 8px 22px; color: #fff; font-size: 16px; font-weight: 600; }
.nl-box .pod-btn .ik { width: 20px; height: 20px; color: var(--pom); stroke-width: 2.6; }

/* Stopka */
.stopka { padding: 56px 0 28px; background: #142462; color: #C9D1EE; border-top: 0; font-size: 16px; }
.stopka__gora { display: grid; gap: 40px; }
.logo--jasne b { color: #fff; }
.logo--jasne small { color: #FF8A3D; }
.stopka__marka p { margin-top: 18px; max-width: 340px; line-height: 1.6; }
.stopka__social { list-style: none; padding: 0; display: flex; gap: 10px; margin-top: 22px; }
.stopka__social a {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 255, 255, .08); color: #fff; transition: background-color .2s, color .2s;
}
.stopka__social a:hover { background: var(--pom); color: var(--ink); }
.stopka__social .ik { width: 22px; height: 22px; }
.stopka__kolumny { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
.stopka__kolumny > div:last-child { grid-column: 1 / -1; }
.stopka h2 { margin-bottom: 14px; font-size: 16px; font-weight: 700; letter-spacing: 0; color: #fff; }
.stopka ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.stopka a { color: #C9D1EE; text-decoration: none; transition: color .15s; }
.stopka a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--pom); text-underline-offset: 5px; }
.stopka .btn.stopka__cta { margin-top: 20px; min-height: 50px; padding: 0 22px; font-size: 16px; color: var(--ink); box-shadow: none; }
.stopka .btn.stopka__cta:hover { text-decoration: none; color: var(--ink); }
.stopka__dol {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: 14px;
}
.stopka__prawne { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.stopka__imker { display: inline-flex; align-items: center; gap: 10px; }
.stopka__imker img { height: 25px; width: auto; }
@media (min-width: 900px) {
  .stopka { padding: 72px 0 32px; }
  .stopka__gora { grid-template-columns: 1fr 1.6fr; gap: 64px; }
  .stopka__kolumny { grid-template-columns: repeat(3, 1fr); }
  .stopka__kolumny > div:last-child { grid-column: auto; }
  .stopka__dol { flex-direction: row; align-items: center; justify-content: space-between; }
}
.stopka ul.stopka__social { display: flex; }

/* ═══ Sklep: strony produktów i koszyk ═══ */
.ikona-btn--koszyk { position: relative; }
.koszyk-licznik {
  position: absolute; top: -6px; right: -6px; min-width: 22px; height: 22px; padding: 0 6px;
  display: grid; place-items: center; border-radius: 999px; background: var(--pom); color: var(--ink);
  font-family: var(--font-head); font-size: 13px; font-weight: 800; line-height: 1; border: 2px solid #fff;
}
.koszyk-licznik[hidden] { display: none; }

.okruszki { display: flex; gap: 10px; padding-top: 22px; font-size: 15px; color: var(--muted); }
.okruszki a { color: var(--granat); font-weight: 600; text-decoration: none; }
.okruszki a:hover { text-decoration: underline; }

.karta-produktu { display: grid; gap: 28px; padding-top: 18px; padding-bottom: var(--sekcja); grid-template-areas: "foto" "zakup" "tresc"; }
.produkt__foto { grid-area: foto; margin: 0; }
.produkt__foto img { width: 100%; max-height: 560px; object-fit: contain; border-radius: 22px; background: var(--bg-soft); }
.zakup { grid-area: zakup; align-self: start; padding: 24px 22px; border-radius: 22px; background: #fff; box-shadow: var(--cien-duzy); }
.produkt__tresc { grid-area: tresc; min-width: 0; }
@media (min-width: 1000px) {
  .karta-produktu { grid-template-columns: minmax(0, 1fr) 420px; grid-template-areas: "foto zakup" "tresc zakup"; column-gap: 56px; row-gap: 36px; }
  .zakup { position: sticky; top: 124px; padding: 30px 28px; }
}
.zakup h1 { margin-top: 6px; font-size: clamp(26px, 3vw, 32px); line-height: 1.15; font-weight: 700; }
.zakup__podtytul { margin-top: 8px; color: var(--muted); font-size: 17px; }
.zakup__cena { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 4px; }
.zakup__cena b { font-family: var(--font-head); font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.zakup__cena s, .wariant__cena s { color: var(--muted); font-size: 17px; }
.zakup__30 { font-size: 14px; color: var(--muted); }
.zakup .btn { margin-top: 12px; }
.zakup .btn--pom .ik { width: 22px; height: 22px; }
.zakup__info { margin-top: 10px; font-size: 14px; color: var(--muted); }
.zakup__lista { list-style: none; padding: 18px 0 0; margin-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: 16px; }
.zakup__lista li { display: flex; gap: 10px; }
.zakup__lista .ik { flex: none; color: var(--granat); margin-top: 3px; }
.zakup__zaufanie { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 14px; color: var(--muted); }
.zakup__zaufanie .ik { width: 18px; height: 18px; color: var(--pom-tekst); }

.warianty { border: 0; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; }
.wariant { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 14px 16px 14px 44px; border-radius: 14px; border: 1.5px solid #CBD1E3; cursor: pointer; transition: border-color .15s, background-color .15s; }
.wariant input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.wariant::before { content: ""; position: absolute; left: 16px; top: 50%; translate: 0 -50%; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #9CA3BD; background: #fff; }
.wariant:has(input:checked) { border-color: var(--granat); background: var(--granat-tlo); }
.wariant:has(input:checked)::before { border: 5px solid var(--granat); }
.wariant:has(input:focus-visible) { outline: 3px solid var(--pom); outline-offset: 2px; }
.wariant b { display: block; font-family: var(--font-head); font-size: 16px; }
.wariant small { display: block; font-size: 13px; color: var(--muted); line-height: 1.4; }
.wariant__cena { display: flex; flex-direction: column; align-items: flex-end; font-family: var(--font-head); font-weight: 800; white-space: nowrap; }
.wariant__cena s { font-size: 13px; font-weight: 500; }

/* Treść produktu */
.p-punkty { list-style: none; padding: 0; display: grid; gap: 10px; }
.p-punkty li { display: flex; gap: 12px; font-size: 18px; }
.p-punkty .ik { flex: none; width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: var(--pom-miekki); color: #9A3A00; stroke-width: 2.8; margin-top: 2px; }
.p-sekcja { margin-top: 48px; }
.p-sekcja > h2 { display: inline-block; padding-bottom: 8px; margin-bottom: 22px; border-bottom: 3px solid var(--pom); font-size: clamp(26px, 3.4vw, 34px); }
.p-wstep { display: grid; gap: 22px; align-items: center; padding: 24px; border-radius: 22px; background: var(--bg-soft); }
.p-wstep img { width: 100%; max-width: 280px; border-radius: 16px; }
.p-wstep p { font-size: 18px; line-height: 1.65; }
@media (min-width: 700px) { .p-wstep { grid-template-columns: 220px 1fr; } }
.pozycje { list-style: none; padding: 0; display: grid; gap: 12px; }
.pozycja { display: flex; gap: 16px; padding: 20px 22px; border-radius: 18px; background: #fff; box-shadow: var(--cien); }
.pozycja h3 { font-size: 20px; }
.pozycja p { margin-top: 6px; color: var(--muted); font-size: 17px; }
.pozycja__pod { font-family: var(--font-head); font-weight: 600; color: var(--pom-tekst) !important; margin-top: 4px !important; }
.pozycja__nr { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--granat); color: #fff; font-family: var(--font-head); font-weight: 800; }
.p-korzysci .pozycja { border-left: 0; }
.p-bonusy .pozycja { background: var(--granat-tlo); box-shadow: none; }
.p-modul p { color: var(--muted); margin-bottom: 18px; }
.p-zaufanie__gora { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.p-zaufanie__gora img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: top; }
.p-zaufanie__gora h2 { display: inline-block; padding-bottom: 8px; border-bottom: 3px solid var(--pom); font-size: clamp(26px, 3.4vw, 34px); }
.p-opinie__lista { display: grid; gap: 12px; }
.p-opinie__lista .opinia { box-shadow: var(--cien); border: 0; }
@media (min-width: 1200px) { .p-opinie__lista { grid-template-columns: repeat(3, 1fr); } .p-opinie__lista .opinia p { font-size: 16px; } }
.p-cytat { margin-top: 48px; padding: 28px; border-radius: 22px; background: var(--granat); color: #fff; font-family: var(--font-head); font-size: clamp(20px, 2.6vw, 26px); font-weight: 600; line-height: 1.35; }
.p-faq details p { margin-top: 0; padding-bottom: 12px; }
.p-faq details .p-punkty { padding-bottom: 20px; }
.p-faq details .p-punkty li { font-size: 16px; color: var(--muted); }

/* Pasek zakupu na telefonie */
.p-pasek { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -20px rgba(17, 19, 39, .4); translate: 0 110%; transition: translate .3s var(--ease); }
.p-pasek.jest-widoczny { translate: 0 0; }
.p-pasek span { display: flex; flex-direction: column; min-width: 0; }
.p-pasek small { font-size: 13px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-pasek b { font-family: var(--font-head); font-size: 22px; font-weight: 800; }
.p-pasek .btn { min-height: 50px; padding: 0 28px; }
@media (min-width: 1000px) { .p-pasek { display: none; } }
.strona-produktu .stopka { padding-bottom: 110px; }
@media (min-width: 1000px) { .strona-produktu .stopka { padding-bottom: 32px; } }

/* Szuflada koszyka */
.szuflada-tlo { position: fixed; inset: 0; z-index: 90; background: rgba(12, 18, 50, .45); opacity: 0; transition: opacity .25s; }
.szuflada-tlo.jest-otwarte { opacity: 1; }
.szuflada {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100; width: min(440px, 100%);
  display: flex; flex-direction: column; background: #fff; box-shadow: -20px 0 50px -20px rgba(12, 18, 50, .45);
  translate: 100% 0; transition: translate .3s var(--ease);
}
.szuflada.jest-otwarta { translate: 0 0; }
.szuflada__gora { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.szuflada__gora h2 { font-size: 24px; }
.szuflada__komunikat:empty { display: none; }
.szuflada__komunikat { margin: 14px 20px 0; padding: 12px 14px; border-radius: 12px; background: var(--granat-tlo); color: var(--granat); font-weight: 600; font-size: 15px; }
.szuflada__lista { list-style: none; padding: 8px 20px; margin: 0; flex: 1; overflow-y: auto; }
.szuflada__poz { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.szuflada__poz img { width: 64px; height: 64px; object-fit: cover; object-position: top; border-radius: 12px; background: var(--bg-soft); }
.szuflada__poz a { display: block; font-family: var(--font-head); font-weight: 700; font-size: 16px; line-height: 1.25; text-decoration: none; }
.szuflada__poz small { display: block; font-size: 13px; color: var(--muted); }
.szuflada__poz b { display: block; margin-top: 4px; font-family: var(--font-head); }
.szuflada__usun { display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 10px; background: none; color: var(--muted); cursor: pointer; }
.szuflada__usun:hover { background: var(--bg-soft); color: var(--ink); }
.szuflada__pusty { display: none; padding: 30px 20px; text-align: center; color: var(--muted); }
.szuflada__pusty .btn { margin-top: 16px; }
.szuflada.jest-pusty .szuflada__pusty { display: block; }
.szuflada.jest-pusty .szuflada__dol, .szuflada.jest-pusty .szuflada__lista { display: none; }
.szuflada__dol { padding: 18px 20px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--bg-soft); }
.szuflada__suma { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.szuflada__suma b { font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.szuflada__dalej { display: block; width: 100%; margin-top: 10px; padding: 12px; border: 0; background: none; color: var(--granat); font-family: var(--font-head); font-weight: 700; font-size: 16px; cursor: pointer; }
.szuflada__dalej:hover { text-decoration: underline; }
.szuflada[hidden], .szuflada-tlo[hidden] { display: none; }
.zakup__cena b { color: var(--ink); }
@media (min-width: 1200px) { .p-opinie__lista { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
/* Przycisk „Do koszyka” w kaflu: nad warstwą linku całego kafla */
.btn-koszyk {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  min-height: 46px; padding: 0 18px; border: 0; border-radius: 12px; cursor: pointer;
  background: var(--pom); color: var(--ink); font-family: var(--font-head); font-size: 16px; font-weight: 700;
  transition: background-color .15s;
}
.btn-koszyk:hover { background: #FF7A1A; }
.btn-koszyk .ik { width: 20px; height: 20px; }
