:root {
  /* Neutralna charcoalowa czerń z referencji (dla ciemnych pasów: CTA, footer) */
  --navy: #201e26;
  --navy-700: #1a181f;
  --navy-600: #34313d;
  /* Periwinkle / lawendowy akcent */
  --blue: #6d6ff5;
  --blue-2: #9b8efc;
  --blue-grad: linear-gradient(135deg, #6d6ff5, #9b8efc);
  --blue-soft: #eef0fe;
  --blue-border: #dcdefb;
  --grey-900: #26242e;
  --grey-600: #5f5b6b;
  --grey-400: #918da0;
  --grey-200: #e7e5ef;
  --grey-100: #f5f4f9;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(32, 28, 46, 0.10);
  --shadow-sm: 0 4px 16px rgba(32, 28, 46, 0.06);
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* karty wychodzące poza kadr nie tworzą poziomego scrolla */
}

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

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; color: var(--navy); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--grey-200);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo__mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: inline-block;
}
.logo__img {
  height: 52px;
  width: auto;
  display: block;
}
.logo__img--footer {
  height: 34px;
  width: auto;
  display: block;
}
.logo__accent { color: var(--blue); }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  color: var(--grey-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.18s;
}
.nav__links a:hover { color: var(--navy); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px; /* pill, jak w referencji */
  padding: 13px 26px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue-grad);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(109, 111, 245, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(109, 111, 245, 0.45); }
/* Outline pill — jak przycisk „Learn More" */
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--grey-200);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--nav { background: var(--blue-grad); color: var(--white); padding: 11px 22px; box-shadow: 0 8px 18px rgba(109, 111, 245, 0.30); }
.btn--nav:hover { transform: translateY(-2px); }
.btn--light {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn--light:hover { transform: translateY(-2px); }
/* Outline pill na ciemnym tle (sekcja CTA) */
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.30);
}
.btn--ghost-light:hover { border-color: var(--white); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 16px; }

/* HERO */
.hero {
  position: relative;
  background:
    radial-gradient(900px 440px at 10% -8%, rgba(155, 142, 252, 0.22), transparent 60%),
    radial-gradient(1000px 520px at 92% -4%, rgba(109, 111, 245, 0.20), transparent 62%),
    radial-gradient(760px 520px at 62% 112%, rgba(96, 165, 250, 0.12), transparent 60%),
    linear-gradient(180deg, #f1f0fb, var(--white) 70%);
  padding: 52px 0 68px;
  /* clip + margines: przycina rozsypkę, ale pozwala kartom wystawać poza dolną linię */
  overflow: clip;
  overflow-clip-margin: 140px;
  z-index: 1; /* karty na granicy widoczne nad kolejną sekcją */
}
/* Subtelnie pulsująca/przesuwająca się poświata — tło "żyje" */
.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 420px at 28% 38%, rgba(155, 142, 252, 0.20), transparent 60%),
    radial-gradient(380px 380px at 72% 58%, rgba(109, 111, 245, 0.18), transparent 60%),
    radial-gradient(300px 300px at 55% 85%, rgba(96, 165, 250, 0.12), transparent 60%);
  animation: heroGlow 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroGlow {
  from { transform: translate3d(-3%, -2%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}
/* Animowane tło — faktury i dokumenty zlatujące się w pierścień */
.hero__docs {
  position: absolute;
  inset: 0;
  pointer-events: none; /* nie blokuje CTA */
  z-index: 2; /* animacja NAD zdjęciem */
}
.doc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 102px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(32, 28, 46, 0.10);
  padding: 9px 9px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  will-change: transform, opacity;
}
.doc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.doc__dot {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--bar, var(--blue));
}
.doc__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--bar, var(--blue));
}
.doc__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.doc__lines i { height: 3px; border-radius: 2px; background: var(--grey-200); }
.doc__lines i:nth-child(1) { width: 100%; }
.doc__lines i:nth-child(2) { width: 84%; }
.doc__lines i:nth-child(3) { width: 92%; }
.doc__lines i:nth-child(4) { width: 58%; }
.doc__amt {
  margin-top: auto;
  font-size: 9px;
  font-weight: 800;
  color: var(--navy);
}

.hero__inner {
  position: relative;
  z-index: 3; /* tekst nad animacją i zdjęciem */
}
.hero__text { max-width: min(600px, 52vw); }

/* Zdjęcie jako panel po prawej — POD animacją dokumentów (bez białej ramki) */
.hero__media {
  position: absolute;
  /* prawy brzeg zdjęcia w tej samej odległości od krawędzi co H1 od lewej (margines kontenera) */
  right: max(24px, calc((100% - var(--maxw)) / 2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  height: clamp(360px, 52vh, 500px);
  aspect-ratio: 1 / 1;            /* kwadrat */
  width: auto;
  z-index: 1; /* nad poświatą, pod dokumentami (2) i tekstem (3) */
  /* Wytopienie krawędzi w tło — zamiast karty z cieniem */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 82%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 82%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* proporcje kontenera = proporcje zdjęcia → brak przycięcia */
  display: block;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--grey-600);
  max-width: 700px;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px; /* przerwa od guzika do dolnej krawędzi jak wcześniej */
}
.hero__note { color: var(--grey-400); font-size: 14px; }
.hero__badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
}
.hero__badges li {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-600);
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* SECTIONS */
.section { padding: 88px 0; }
.section__head { max-width: 760px; margin-bottom: 52px; }
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.kicker--light { color: #c3bdfd; }
.section h2 {
  font-size: clamp(22px, 2.8vw, 31px);
  font-weight: 800;
  margin-bottom: 18px;
}
.lead { font-size: 18px; color: var(--grey-600); }

/* PROBLEM */
.problem { background: var(--white); padding-top: 104px; }
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cdd8ef;
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card__icon svg {
  width: 24px;
  height: 24px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--grey-600); font-size: 15px; }
.problem__punch {
  margin-top: 44px;
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* PROCESS / TIMELINE */
.process { background: var(--grey-100); }
.timeline { list-style: none; max-width: 800px; }
.timeline__item {
  position: relative;
  display: flex;
  gap: 26px;
  padding-bottom: 34px;
}
.timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--grey-200);
}
.timeline__step {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  z-index: 1;
}
.timeline__body {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 22px 26px;
  flex: 1;
  box-shadow: var(--shadow-sm);
}
.timeline__body h3 {
  font-size: 19px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.timeline__body p { color: var(--grey-600); font-size: 15px; }
.timeline__body em { color: var(--navy-600); font-style: normal; font-weight: 600; }
.tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 11px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tag--free { background: #e7f5ec; color: #1f7a43; }
.tag--paid { background: var(--blue-soft); color: var(--blue); }

/* WHY */
.why { background: var(--white); }
.why__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.why__content .btn { margin-top: 28px; }
.why__list { list-style: none; display: grid; gap: 16px; }
.why__list li {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 15px;
  color: var(--grey-600);
}
.why__list strong { color: var(--navy); display: block; margin-bottom: 2px; }

/* CTA */
.cta {
  background:
    radial-gradient(900px 400px at 50% -20%, rgba(155, 142, 252, 0.40), transparent 60%),
    var(--navy);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
}
.cta__inner { max-width: 640px; margin: 0 auto; }
.cta h2 { color: var(--white); margin-bottom: 18px; font-size: clamp(22px, 2.8vw, 31px); }
.cta p { color: #c8c4dc; font-size: 18px; margin-bottom: 34px; }
.cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer {
  background: var(--navy-700);
  color: #9aa6c2;
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__copy { margin: 0; }
.footer p { font-size: 14px; }
@media (max-width: 720px) {
  .footer__inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* ORBITA — obszary automatyzacji */
.orbit-section {
  background:
    radial-gradient(700px 520px at 50% 32%, rgba(109, 111, 245, 0.22), transparent 60%),
    var(--navy);
  color: #fff;
  overflow: hidden;
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.orbit-section h2 { color: #fff; }
.lead--light { color: #c4c1d8; }

.orbit {
  position: relative;
  width: min(680px, 94vw);
  aspect-ratio: 1;
  margin: 44px auto 0;
}
.orbit__rings { position: absolute; inset: 0; }
.orbit__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px dotted rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

/* Centralny rdzeń z logo */
.orbit__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(96px, 16%, 132px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 38%, #9b8efc, #6d6ff5 58%, #4f51d6);
  box-shadow:
    0 0 0 8px rgba(109, 111, 245, 0.14),
    0 0 60px rgba(109, 111, 245, 0.55),
    0 0 120px rgba(109, 111, 245, 0.30);
}
.orbit__core-mark {
  font-weight: 800;
  font-size: clamp(14px, 2.4vw, 18px);
  letter-spacing: -0.02em;
  color: #fff;
}
.orbit__core-mark span { color: #e7e4ff; }

/* Pole z węzłami — wolny obrót */
.orbit__field {
  position: absolute;
  inset: 0;
  z-index: 2;
  animation: orbitSpin 80s linear infinite;
}
.orbit__node {
  position: absolute;
  transform: translate(-50%, -50%);
}
.orbit__node-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 116px;
  text-align: center;
  animation: orbitSpin 80s linear infinite reverse; /* kontr-rotacja — etykiety pionowo */
}
.orbit__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c, var(--blue));
  border: 1.5px solid var(--c, var(--blue));
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 18px -5px var(--c, var(--blue));
}
.orbit__icon svg { width: 21px; height: 21px; }
.orbit__label {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
  color: #d3d7e6;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit__field, .orbit__node-inner { animation: none; }
}

/* OD ZAŁOŻYCIELA */
.founder { background: var(--grey-100); }
.founder__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
}
.founder__media {
  /* bez karty — zdjęcie wtapia się w tło sekcji */
}
.founder__media img {
  width: 100%;
  height: auto;
  display: block;
  /* jasne tło zdjęcia wtapia się w tło sekcji (efekt „przezroczystości") */
  mix-blend-mode: multiply;
}
.founder__content .kicker { display: block; }
.founder__content h2 {
  font-size: clamp(22px, 2.8vw, 31px);
  margin-bottom: 20px;
}
.founder__content p {
  color: var(--grey-600);
  margin-bottom: 16px;
  max-width: 62ch;
}
.founder__content p:last-child { margin-bottom: 0; }

/* Dekoracyjne kropki (kropki.png) rozsiane po stronie.
   overflow-x: clip → nie wychodzą poza szerokość (brak poziomego scrolla),
   overflow-y: visible → mogą „siadać" na łączeniach sekcji. */
.dots-accent { position: relative; overflow-x: clip; overflow-y: visible; }
.dots-accent > .container { position: relative; z-index: 1; }
.dots-accent::before,
.dots-accent::after {
  position: absolute;
  width: 140px;
  height: 140px;
  background: url("kropki.png") no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
.dots-accent::before { content: ""; }
.dots-accent::after  { content: none; } /* drugi klaster — włączany per sekcja */

/* Różne kombinacje: obroty, lustrzane odbicia, część na szwach sekcji.
   Offsety nieujemne → klastry są kompletne (overflow-x: clip nic nie ucina). */
.problem.dots-accent::before { content: none; }                                                  /* domyślny wyłączony */
.problem.dots-accent::after  { content: ""; left: 24px; bottom: -46px; transform: scaleX(-1); opacity: 0.5; } /* szew Realia↔Co automatyzujemy, lewa, lustro */
.process.dots-accent::before { content: none; }                                                  /* domyślny wyłączony */
.process.dots-accent::after  { content: ""; right: 24px; bottom: -46px; opacity: 0.5; }          /* szew Metoda↔Dlaczego, prawa */
.founder.dots-accent::before { left: 24px; bottom: -46px; transform: scaleX(-1); opacity: 0.5; } /* szew Założyciel↔FAQ, lewa, lustro */

/* LICZBY */
.stats { background: var(--white); }
.stats__inner {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  flex: 1 1 280px;
  max-width: 380px;
  text-align: center;
  padding: 8px 40px;
}
.stats__inner > .stat + .stat { border-left: 1px solid var(--grey-200); }
@media (max-width: 600px) {
  .stats__inner > .stat + .stat {
    border-left: none;
    border-top: 1px solid var(--grey-200);
    padding-top: 28px;
    margin-top: 4px;
  }
}
.stat__num {
  display: block;
  font-size: clamp(42px, 6vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue);
  background: var(--blue-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  display: block;
  margin-top: 14px;
  color: var(--grey-600);
  font-size: 15px;
  line-height: 1.5;
}
.stat__label sup { color: var(--blue); }
.stats__note {
  text-align: center;
  color: var(--grey-400);
  font-size: 12.5px;
  margin-top: 18px;
}

/* FORMULARZ KONTAKTOWY */
.contact { background: var(--grey-100); }
.contact__inner { max-width: 760px; margin: 0 auto; }
.contact__intro { text-align: center; margin-bottom: 32px; }
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: 13px; font-weight: 600; color: var(--navy); }
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--grey-900);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  padding: 11px 13px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--grey-400) 50%), linear-gradient(135deg, var(--grey-400) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.contact__hint { margin: -2px 0 0; font-size: 13px; color: var(--grey-400); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(109, 111, 245, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.contact__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--grey-600);
}
.contact__consent input { margin-top: 3px; flex-shrink: 0; }
.contact__consent a { color: var(--blue); text-decoration: underline; }
.contact__form .btn { align-self: flex-start; }
.contact__hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }
.contact__status { margin: 0; font-size: 14px; font-weight: 600; }
.contact__status.is-ok { color: #1f7a43; }
.contact__status.is-err { color: #c0392b; }
@media (max-width: 600px) {
  .contact__row { grid-template-columns: 1fr; }
  .contact__form .btn { align-self: stretch; }
}

/* FAQ */
.faq { background: var(--white); }
.faq__list { max-width: 780px; margin: 40px auto 0; }
.faq__item {
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.faq__item:hover { border-color: #cdd8ef; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: #cdd8ef; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--grey-400);
  border-bottom: 2px solid var(--grey-400);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}
.faq__item[open] summary { color: var(--blue); }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq__a {
  padding: 0 22px 20px;
  color: var(--grey-600);
  font-size: 15px;
}

/* RESPONSIVE — zakres pośredni (tekst + obraz w hero) */
@media (min-width: 861px) and (max-width: 1080px) {
  .hero__text { max-width: 50vw; }
  .hero__media { height: clamp(300px, 44vh, 440px); }
  .hero h1 { font-size: clamp(24px, 3.4vw, 36px); }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .cards--3 { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: 36px; }
  .nav__links { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .hero__text { max-width: none; }
  .hero__media {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    height: auto;
    width: 340px;
    max-width: 86%;
    margin: 30px auto 0;
    border-radius: 16px;
  }
  .orbit__node-inner { width: 84px; gap: 5px; }
  .orbit__icon { width: 38px; height: 38px; }
  .orbit__icon svg { width: 17px; height: 17px; }
  .orbit__label { font-size: 9.5px; }

  .founder__inner { grid-template-columns: 1fr; gap: 28px; }
  .founder__media { max-width: 340px; margin: 0 auto; width: 100%; }
}

/* STOPKA — linki */
.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__links a {
  color: #9aa6c2;
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.footer__links a:hover { color: #fff; }

/* STRONY PRAWNE (polityka prywatności) */
.legal { padding: 56px 0 72px; }
.legal__inner { max-width: 800px; margin: 0 auto; }
.legal h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.legal__updated { color: var(--grey-400); font-size: 14px; margin-bottom: 36px; }
.legal h2 {
  font-size: 21px;
  margin: 34px 0 12px;
  color: var(--navy);
}
.legal h3 { font-size: 17px; margin: 22px 0 8px; color: var(--navy); }
.legal p, .legal li { color: var(--grey-600); font-size: 15.5px; line-height: 1.7; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue); }
.legal .legal__note {
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 28px;
}
.legal a.legal__back { display: inline-block; margin-top: 32px; font-weight: 600; color: #fff; }
