/* Empatyczny Kompan — landing. Ciepły, redakcyjny spokój.
   Paleta wywiedziona z aplikacji (mobile/src/theme), typografia: Fraunces + Hanken Grotesk. */

:root {
  --cream: #faf0e4;
  --cream-deep: #f4e7d6;
  --paper: #fffdf9;
  --ink: #243b50;
  --slate: #31536e;
  --slate-soft: #e2eaf1;
  --sage: #4f8a60;
  --sage-soft: #e4efe6;
  --gold: #c9881f;
  --clay: #b5544c;
  --muted: #5a6675;          /* kontrast ~5.2:1 na kremie — WCAG AA */
  --line: #e7dbca;
  --shadow: 28px 28px 60px rgba(36, 59, 80, 0.10);
  --shadow-sm: 0 10px 30px rgba(36, 59, 80, 0.08);
  --radius: 22px;
  --maxw: 1120px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background-color: var(--cream);
  /* Atmosfera: miękkie świetlne poświaty zamiast płaskiego tła. */
  background-image:
    radial-gradient(58vw 42vw at 82% -8%, rgba(201, 136, 31, 0.13), transparent 60%),
    radial-gradient(52vw 46vw at -10% 12%, rgba(79, 138, 96, 0.10), transparent 55%),
    radial-gradient(60vw 50vw at 50% 118%, rgba(49, 83, 110, 0.08), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}

a { color: var(--slate); }

/* ---------- Górne menu (sticky) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 240, 228, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.topbar:hover { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-right: auto;
}
.brand img { width: 34px; height: 34px; border-radius: 50%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a.navlink {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a.navlink:hover { background: var(--slate-soft); }
.nav-sep {
  width: 1px;
  height: 22px;
  background: var(--line);
  margin: 0 4px;
}
.nav-lang {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
  padding: 8px 10px;
}
.nav-cta {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
  background: var(--slate);
  padding: 9px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Hamburger (czysty CSS, bez JS) */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
}
.nav-burger:hover { background: var(--slate-soft); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle:checked ~ .nav-burger span:first-child {
  transform: rotate(45deg) translate(0, 7px);
}
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:last-child {
  transform: rotate(-45deg) translate(0, -7px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 36px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-soft);
  border: 1px solid rgba(79, 138, 96, 0.25);
  padding: 7px 16px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(36px, 6.2vw, 66px);
  margin: 22px auto 18px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--slate);
}

/* Hero 2-col layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.hero-content { text-align: left; }

.hero-content h1 {
  margin: 22px 0 18px;
  max-width: none;
}

.hero-content .lead {
  margin: 0 0 30px;
  max-width: 52ch;
}

.hero-content .badges { justify-content: flex-start; }

/* Hero lifestyle photo */
.hero-visual {
  width: clamp(260px, 36vw, 460px);
  height: clamp(320px, 55vw, 420px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(36, 59, 80, 0.20);
  flex: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero .section-head { margin-top: 52px; }

.hero .lead {
  font-size: clamp(17px, 2.1vw, 21px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 30px;
}

/* Przyciski sklepów (placeholdery — bez ceny, nieklikalne do premiery) */
.badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: default;
}
.badge .glyph { font-size: 20px; line-height: 1; }
.badge small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.badge .store { font-size: 15px; line-height: 1.1; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* ---------- Transformacja przed → po ---------- */
.transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto 0;
}
.msg {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.msg__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.msg p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
}
.msg--before {
  background: #fbf6f5;
  border-color: rgba(181, 84, 76, 0.28);
}
.msg--before .msg__tag { color: var(--clay); }
.msg--before p { color: #7a5853; }
.msg--after {
  border-color: rgba(79, 138, 96, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.msg--after .msg__tag { color: var(--sage); }
.transform__arrow {
  font-size: 30px;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Sekcje ogólne ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 17px;
  color: var(--muted);
}

/* Kroki NVC */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.step__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}
.step__emoji { font-size: 32px; display: block; margin: 10px 0 12px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* Zalety aplikacji */
.benefits-section { background: linear-gradient(180deg, transparent, rgba(244, 231, 214, 0.55)); }
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.benefit {
  display: flex;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit__icon {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: var(--slate-soft);
  border-radius: 14px;
}
.benefit__icon--sage { background: var(--sage-soft); }
.benefit__icon--gold { background: rgba(201, 136, 31, 0.12); }
.benefit h3 { font-size: 18px; margin-bottom: 5px; }
.benefit p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ---------- Dla kogo ---------- */
.personas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.persona {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.persona:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.persona-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex: none;
}

.persona-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.persona h3 { font-size: 18px; margin-bottom: 14px; }
.persona-transform { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }

.pt-before, .pt-after {
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 13px;
  line-height: 1.45;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pt-before { background: #fbf6f5; color: #7a5853; }
.pt-after  { background: var(--sage-soft); color: #2d5c3a; }
.pt-arrow  { text-align: center; font-size: 16px; color: var(--gold); font-weight: 700; }

/* ---------- CTA — pobierz aplikację ---------- */
.cta-section {
  background: linear-gradient(135deg, #fdf3dd 0%, #fae4b8 60%, #f4d08a 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '🦒';
  position: absolute;
  font-size: 260px;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.cta-box {
  text-align: center;
  padding: clamp(48px, 7vw, 80px) 0;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-box .eyebrow {
  background: rgba(201, 136, 31, 0.18);
  color: #8a5e00;
  border: 1px solid rgba(201, 136, 31, 0.3);
}
.cta-box h2 { font-size: clamp(26px, 4vw, 38px); margin: 18px 0 14px; }
.cta-box p  { color: #5a4a2a; font-size: 17px; margin-bottom: 28px; line-height: 1.6; }
.cta-section .badge { background: #243b50; }
.badge--light {
  background: rgba(255, 255, 255, 0.55) !important;
  color: var(--ink) !important;
  border: 1.5px solid rgba(201, 136, 31, 0.35);
}

/* Prywatność */
.privacy-callout {
  background: var(--slate);
  color: var(--paper);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 60px);
  text-align: center;
  box-shadow: var(--shadow);
}
.privacy-callout .eyebrow {
  color: #bfe0c8;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}
.privacy-callout h2 { color: var(--paper); font-size: clamp(26px, 3.6vw, 38px); margin: 18px 0 14px; }
.privacy-callout p {
  max-width: 62ch;
  margin: 0 auto;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.86);
}
.privacy-callout a { color: #fff; text-underline-offset: 3px; }

/* ---------- Newsletter ---------- */
#newsletter { background: linear-gradient(180deg, transparent, var(--sage-soft)); }

.newsletter-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(32px, 5vw, 56px);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 18px 0 12px;
}

.newsletter-box .lead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
}

.nf-field { margin-bottom: 16px; text-align: left; }

.nf-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.nf-field input[type="email"] {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
}

.nf-field input[type="email"]:focus { border-color: var(--slate); }

.nf-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 12px;
  cursor: pointer;
  line-height: 1.5;
}

.nf-check input[type="checkbox"] {
  flex: none;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--sage);
  cursor: pointer;
}

.nf-check a { color: var(--slate); }

.nf-btn {
  width: 100%;
  margin-top: 8px;
  padding: 15px 24px;
  background: var(--slate);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nf-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.nf-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.nf-status { margin-top: 16px; font-size: 15px; font-weight: 500; color: var(--sage); }
.nf-status.error { color: var(--clay); }

/* ---------- Stopka ---------- */
.site-footer {
  margin-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(244, 231, 214, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 56px 0 32px;
}
.footer-brand { max-width: 34ch; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--slate); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
}
.footer-bottom.plain { border-top: none; }
.footer-bottom a { color: var(--slate); }

/* ---------- Strona prawna (polityka) ---------- */
main.legal { padding: clamp(48px, 7vw, 80px) 0; }
main.legal .wrap { max-width: 760px; }
main.legal h1 { font-size: clamp(30px, 5vw, 42px); margin-bottom: 8px; }
main.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
main.legal h2 { font-size: 22px; margin: 32px 0 10px; }
main.legal p, main.legal li { margin-bottom: 10px; color: var(--ink); }
main.legal ul { padding-left: 22px; }
main.legal a { text-underline-offset: 2px; }

/* ---------- Wejście (load) — staggered reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.reveal.d1 { animation-delay: 0.08s; }
.reveal.d2 { animation-delay: 0.16s; }
.reveal.d3 { animation-delay: 0.26s; }
.reveal.d4 { animation-delay: 0.36s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.reveal-pending {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-in { opacity: 1; transform: none; }

/* ---------- Responsywność ---------- */
@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 24px 20px;
    background: rgba(250, 240, 228, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a.navlink { padding: 12px 14px; }
  .nav-sep { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }

  .transform { grid-template-columns: 1fr; gap: 14px; }
  .msg--after { transform: none; }
  .transform__arrow { transform: rotate(90deg); justify-self: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Hero mobile */
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-content { text-align: center; }
  .hero-content h1 { margin: 22px auto 18px; }
  .hero-content .lead { margin: 0 auto 30px; }
  .hero-content .badges { justify-content: center; }
  .hero-visual { width: 100%; max-width: 300px; max-height: 280px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .personas { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .step { padding: 20px 18px; }
  .benefit { padding: 18px; }
  .steps { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .personas { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .step:hover, .benefit:hover, .nav-cta:hover, .persona:hover { transform: none; }
  .cta-section::before { display: none; }
  .reveal-pending { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   Podstrona: Współpraca
   =================================================================== */
.subpage-hero {
  padding: clamp(48px, 7vw, 92px) 0 8px;
  text-align: center;
}
.subpage-hero h1 {
  font-size: clamp(34px, 5.6vw, 60px);
  margin: 20px auto 16px;
  max-width: 20ch;
}
.subpage-hero h1 em { font-style: italic; color: var(--slate); }
.subpage-hero .lead {
  font-size: clamp(17px, 2.1vw, 21px);
  color: var(--muted);
  max-width: 58ch;
  margin: 0 auto;
}

/* Dwie kolumny: co oferujemy / czego szukamy */
.collab-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}
.collab-col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.collab-col h3 {
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.collab-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.collab-col li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}
.collab-col li::before {
  content: '🦒';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
}
.collab-col--seek li::before { content: '🤝'; }

/* Trzy kroki „jak zacząć" */
.steps--3 { grid-template-columns: repeat(3, 1fr); }

/* Karta kontaktu */
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  color: var(--paper);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 60px);
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.contact-card::before {
  content: '✉️';
  position: absolute;
  font-size: 220px;
  right: -28px;
  bottom: -56px;
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}
.contact-card .eyebrow {
  color: #bfe0c8;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}
.contact-card h2 {
  color: var(--paper);
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 18px 0 12px;
}
.contact-card p {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}
.contact-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22); }
.contact-meta {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.contact-meta a { color: #fff; text-underline-offset: 3px; }

@media (max-width: 860px) {
  .collab-cols { grid-template-columns: 1fr; }
  .steps--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps--3 { grid-template-columns: 1fr; }
}

/* Hero CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  background: var(--slate);
  color: var(--paper);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Formy promocji (2×2) */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}

/* Modele współpracy — karty „pricing" */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.model-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.model-card__tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.model-card h3 { font-size: 22px; margin-bottom: 12px; }
.model-card > p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.model-card__who {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
}
.model-card__who strong { color: var(--slate); font-weight: 600; }
.model-card--featured { border-color: rgba(201, 136, 31, 0.55); box-shadow: var(--shadow); }
.model-card__ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.model-note {
  text-align: center;
  max-width: 64ch;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.model-note strong { color: var(--slate); }

@media (max-width: 860px) {
  .promo-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-btn:hover,
  .btn-cta:hover,
  .model-card:hover { transform: none; }
}
