/* =============================================
   ROOT — Nowy Start, design system
   ============================================= */
:root {
  --c-green:      #0C1B4E;
  --c-green-dark: #081337;
  --c-sage:       #0EB9DC;
  --c-sage-dark:  #0C9DBB;
  --c-text:       #0C1B4E;
  --c-text-sub:   #4B576B;
  --c-bg:         #F0F6FE;
  --c-white:      #FFFFFF;
  --c-border:     #E3E8EF;

  --t-xs:   0.8125rem;
  --t-sm:   0.875rem;
  --t-base: 0.9375rem;
  --t-md:   1rem;
  --t-lg:   1.125rem;

  --radius:    0;
  --radius-sm: 0;
  --shadow-card: 0 16px 44px rgba(12,27,78,.12);
  --transition: .25s ease;
}

/* =============================================
   DEKORACJE — subtelne elementy w tle sekcji
   (wspólny zestaw, używany w każdej sekcji z umiarem)
   ============================================= */
@keyframes ns-float-y    { from{transform:translateY(0)}  to{transform:translateY(-22px)} }
@keyframes ns-float-x    { from{transform:translateX(0)}  to{transform:translateX(18px)} }
@keyframes ns-float-diag { from{transform:translate(0,0)} to{transform:translate(16px,-18px)} }
@keyframes ns-pulse      { from{transform:scale(.9)}       to{transform:scale(1.08)} }
@keyframes ns-rotate-slow{ from{transform:rotate(0deg)}    to{transform:rotate(360deg)} }

.ns-deco { position: absolute; pointer-events: none; will-change: transform; z-index: 0; }
.ns-deco--ring       { border: 1px solid rgba(12,27,78,.12); }
.ns-deco--ring-light { border: 1px solid rgba(255,255,255,.16); }
.ns-deco--dot        { background: var(--c-sage-dark); opacity: .35; }
.ns-deco--dot-light  { background: var(--c-sage); opacity: .55; }
.ns-deco--square     { border: 1px solid rgba(12,27,78,.12); }
.ns-deco--grid       { background-image: linear-gradient(rgba(12,27,78,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(12,27,78,.16) 1px, transparent 1px); background-size: 14px 14px; transform-origin: bottom left; }
.ns-deco--grid-light { background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 14px 14px; transform-origin: bottom left; }
.ns-deco--line       { background: linear-gradient(to bottom, transparent, rgba(12,27,78,.14), transparent); }
.ns-deco--line-light { background: linear-gradient(to bottom, transparent, rgba(255,255,255,.16), transparent); }
.ns-deco--watermark  { font-family: 'Fraunces', Georgia, serif; font-weight: 600; color: rgba(12,27,78,.055); line-height: 1; user-select: none; }

.ns-fy1  { animation: ns-float-y 9s ease-in-out infinite alternate; }
.ns-fy2  { animation: ns-float-y 7s ease-in-out infinite alternate; animation-delay: -2.4s; }
.ns-fx1  { animation: ns-float-x 8s ease-in-out infinite alternate; animation-delay: -1.2s; }
.ns-fd1  { animation: ns-float-diag 10s ease-in-out infinite alternate; }
.ns-pulse1  { animation: ns-pulse 6s ease-in-out infinite alternate; }
.ns-rotate1 { animation: ns-rotate-slow 44s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .ns-fy1, .ns-fy2, .ns-fx1, .ns-fd1, .ns-pulse1, .ns-rotate1 { animation: none; }
}
@media (max-width: 760px) { .ns-deco--hide-mobile { display: none; } }

.ns-fit, .ns-help, .ns-process, .ns-why, .ns-faq, .ns-area, .ns-reviews, .ns-contact, .ns-closing {
  position: relative;
  overflow: hidden;
}
.ns-fit > .container, .ns-help > .container, .ns-process > .container, .ns-why > .container,
.ns-faq > .container, .ns-area > .container, .ns-reviews > .container, .ns-contact > .container,
.ns-closing > .ns-closing__inner {
  position: relative;
  z-index: 1;
}

/* =============================================
   BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }
@media (max-width: 960px) { html { font-size: 15px; } }
@media (max-width: 600px) { html { font-size: 14px; } }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--t-base);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; }

.container { max-width: 1200px; margin-inline: auto; }

section { padding: 6em 2em; }
section.ns-hero, section.ns-closing { padding: 0; }
@media (max-width: 860px) {
  section { padding: 3.5em 1.5em; }
}
@media (max-width: 600px) {
  section { padding: 2em 1em !important; }
  section.ns-hero, section.ns-closing { padding: 0 !important; }
  .ns-header--center .ns-lead { text-align: left; }
  .ns-area__tags { justify-content: center; }
}

/* =============================================
   SHARED — eyebrow, heading, lead
   ============================================= */
.ns-eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 1rem;
}
.ns-eyebrow::before {
  content: '';
  display: block;
  width: 4px; height: 1.2em;
  background: var(--c-sage-dark);
  flex-shrink: 0;
}
.ns-header { max-width: 720px; margin-bottom: 3rem; }
.ns-header--center { margin-inline: auto; text-align: center; }
.ns-h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -.3px;
  line-height: 1.2;
  color: var(--c-green);
}
.ns-lead {
  font-size: var(--t-md);
  color: var(--c-text-sub);
  line-height: 1.75;
  margin-top: 1.1rem;
}
.ns-accent { color: var(--c-sage-dark); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex; align-items: center; gap: 2rem; height: 76px;
}
.site-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--c-green);
  flex-shrink: 0;
}
.site-nav {
  display: flex; align-items: center; gap: 1.85rem;
  margin-left: auto;
}
.site-nav__link {
  font-size: var(--t-sm); font-weight: 500;
  color: var(--c-text);
  position: relative; padding-bottom: 3px;
  white-space: nowrap;
  transition: color var(--transition);
}
.site-nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--c-sage-dark);
  transition: width var(--transition);
}
.site-nav__link:hover { color: var(--c-green); }
.site-nav__link:hover::after { width: 100%; }
.site-nav__link.active { color: var(--c-green); }
.site-nav__link.active::after { width: 100%; }

.btn-header-cta {
  display: flex; align-items: center; gap: .5rem;
  padding: .65em 1.3em;
  background: var(--c-green); color: var(--c-white);
  font-size: var(--t-sm); font-weight: 600;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-header-cta:hover { background: var(--c-green-dark); transform: translateY(-2px); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-text); transition: var(--transition); }
.burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .site-header__inner { padding-inline: 1em; }
  .burger { display: flex; }
  .site-nav {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .site-nav--open { display: flex; }
  .site-nav__link { display: block; padding: 14px 24px; border-left: 3px solid transparent; border-bottom: 1px solid var(--c-border); }
  .site-nav__link::after { display: none; }
  .site-nav__link.active { border-left-color: var(--c-sage-dark); background: var(--c-bg); }
  .btn-header-cta { display: none; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85em 1.85em;
  font-size: var(--t-sm); font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), color var(--transition), border-color var(--transition);
}
.btn-sage { position: relative; overflow: hidden; background: var(--c-sage); color: var(--c-white); }
.btn-sage:hover { background: var(--c-sage-dark); transform: translateY(-3px); }
.btn-sage::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.65), transparent);
  transform: skewX(-20deg); pointer-events: none;
  transition: left .65s ease;
}
.btn-sage:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) { .btn-sage::after { display: none; } }

.btn-primary { background: var(--c-green); color: var(--c-white); }
.btn-primary:hover { background: var(--c-green-dark); transform: translateY(-3px); }

.btn-outline-light { background: transparent; color: var(--c-white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); transform: translateY(-3px); }

.btn-outline { background: transparent; color: var(--c-green); border: 1.5px solid var(--c-green); }
.btn-outline:hover { background: var(--c-green); color: var(--c-white); transform: translateY(-3px); }

.btn__icon { width: 17px; height: 17px; flex-shrink: 0; }

/* =============================================
   HERO
   ============================================= */
.ns-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 900px 560px at 88% -8%, rgba(14,185,220,.16) 0%, rgba(14,185,220,0) 60%),
    var(--c-bg);
  color: var(--c-text);
  min-height: 660px;
  display: flex; align-items: center;
}

.ns-hero__ring { position: absolute; border: 1px solid rgba(14,185,220,.16); pointer-events: none; }
.ns-hero__ring--1 { width: 420px; height: 420px; top: -140px; right: -80px; }
.ns-hero__ring--2 { width: 240px; height: 240px; bottom: -80px; right: 12%; border-color: rgba(14,185,220,.1); }
@media (max-width: 860px) { .ns-hero__ring { display: none; } }

.ns-hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 7em 2rem;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: center;
}

.ns-hero__content { max-width: 560px; }
.ns-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-green); margin-bottom: 1.75rem;
}

.ns-hero__heading {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 500; line-height: 1.18; letter-spacing: -.3px;
  color: var(--c-text);
  margin-bottom: 1.75rem;
}
.ns-hero__heading em { font-style: italic; color: var(--c-sage); }

.ns-hero__lead {
  font-size: var(--t-lg); color: var(--c-text-sub); line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* Hero — kwadratowe ramki z cząsteczką krążącą po ich obwodzie */
@keyframes ns-square-orbit {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(calc(var(--size) - 8px), 0); }
  50%  { transform: translate(calc(var(--size) - 8px), calc(var(--size) - 8px)); }
  75%  { transform: translate(0, calc(var(--size) - 8px)); }
  100% { transform: translate(0, 0); }
}
.ns-hero__orbit {
  position: absolute;
  border: 1px dashed rgba(14,185,220,.22);
}
.ns-hero__orbit-dot {
  position: absolute; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--c-sage);
  animation: ns-square-orbit linear infinite;
}
.ns-hero__orbit--1 { top: 6%; right: 14%; width: 190px; height: 190px; }
.ns-hero__orbit--1 .ns-hero__orbit-dot { --size: 190px; animation-duration: 24s; }
.ns-hero__orbit--2 { bottom: 8%; right: 32%; width: 110px; height: 110px; }
.ns-hero__orbit--2 .ns-hero__orbit-dot { --size: 110px; animation-duration: 17s; animation-direction: reverse; }
@media (max-width: 860px) { .ns-hero__orbit { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .ns-hero__orbit-dot { animation: none; }
}

.ns-hero__ctas { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.ns-hero__phone { display: flex; align-items: center; gap: .6rem; font-size: var(--t-sm); font-weight: 600; color: var(--c-text); }
.ns-hero__phone svg { width: 18px; height: 18px; color: var(--c-sage); }

.ns-hero__trust { margin-top: 2.5rem; font-size: var(--t-xs); color: var(--c-text-sub); display: flex; align-items: center; gap: .5rem; }
.ns-hero__trust svg { width: 14px; height: 14px; color: var(--c-sage); flex-shrink: 0; }

/* Prawa kolumna — panel ze zdjęciem */
.ns-hero__visual {
  position: relative;
  border: 1px solid var(--c-border);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.ns-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

@media (max-width: 1024px) {
  .ns-hero__inner { grid-template-columns: 1fr; gap: 2.75rem; padding: 5em 2rem; }
  .ns-hero__content { max-width: 100%; }
  .ns-hero__visual { max-width: 420px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .ns-hero { min-height: auto; }
  .ns-hero__inner { padding: 3.5em 1.25rem; }
  .ns-hero__ctas { flex-direction: column; align-items: center; gap: 1.25rem; }
  .ns-hero__phone { font-size: 1.75rem; font-weight: 700; }
  .ns-hero__phone svg { width: 26px; height: 26px; }
}

/* ── Hero — efekty "wow" ─────────────────────────────────────── */

/* 3. Aurora — wolno przesuwające się rozmyte plamy światła w tle */
@keyframes ns-aurora-move {
  0%   { transform: translate(0, 0) scale(1); opacity: .55; }
  50%  { transform: translate(6%, 4%) scale(1.18); opacity: .9; }
  100% { transform: translate(0, 0) scale(1); opacity: .55; }
}
.ns-hero__aurora {
  position: absolute; pointer-events: none; z-index: 0; filter: blur(70px);
  background: radial-gradient(circle, var(--c-sage) 0%, transparent 70%);
  animation: ns-aurora-move 24s ease-in-out infinite;
}
.ns-hero__aurora--1 { top: -12%; right: -6%; width: 520px; height: 520px; opacity: .14; }
.ns-hero__aurora--2 { bottom: -18%; left: 2%; width: 420px; height: 420px; opacity: .09; animation-duration: 32s; animation-delay: -9s; }
@media (max-width: 860px) { .ns-hero__aurora { display: none; } }
@media (prefers-reduced-motion: reduce) { .ns-hero__aurora { animation: none; } }

/* 4. Ziarno filmowe — subtelna faktura na całym hero */
.ns-hero__grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}

/* 6. Delikatny, pulsujący blask za nagłówkiem */
@keyframes ns-glow-pulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.1); }
}
.ns-hero__headline-glow {
  position: absolute; left: -60px; top: -20%; width: 460px; height: 280px;
  z-index: -1; pointer-events: none; filter: blur(40px);
  background: radial-gradient(ellipse, var(--c-sage) 0%, transparent 72%);
  opacity: .2;
  animation: ns-glow-pulse 6.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .ns-hero__headline-glow { animation: none; } }

/* 7. Cienkie linie "rysujące się" same, łączące elementy hero */
.ns-hero__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.ns-hero__line-path {
  fill: none; stroke: var(--c-sage); stroke-width: 1.4; opacity: .3;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: ns-line-draw 2.2s ease-out .5s forwards;
}
.ns-hero__line-path--2 { animation-delay: 1.1s; opacity: .2; }
@keyframes ns-line-draw { to { stroke-dashoffset: 0; } }
@media (max-width: 860px) { .ns-hero__lines { display: none; } }
@media (prefers-reduced-motion: reduce) { .ns-hero__line-path { animation: none; stroke-dashoffset: 0; } }

/* 26. Sekwencyjne wejście elementów hero */
@keyframes ns-hero-fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ns-hero__eyebrow, .ns-hero__heading, .ns-hero__lead, .ns-hero__ctas, .ns-hero__trust, .ns-hero__visual {
  animation: ns-hero-fade-up .8s ease both;
}
.ns-hero__eyebrow  { animation-delay: .05s; }
.ns-hero__heading  { animation-delay: .2s; }
.ns-hero__lead     { animation-delay: .38s; }
.ns-hero__ctas     { animation-delay: .56s; }
.ns-hero__trust    { animation-delay: .72s; }
.ns-hero__visual   { animation-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .ns-hero__eyebrow, .ns-hero__heading, .ns-hero__lead, .ns-hero__ctas, .ns-hero__trust, .ns-hero__visual { animation: none; }
}

/* 29. Pasek postępu "czytania" hero, wypełniający się przy scrollowaniu */
.ns-hero__progress { position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; z-index: 2; background: rgba(12,27,78,.1); }
.ns-hero__progress-fill { width: 0%; height: 100%; background: var(--c-sage); }

.ns-hero__content { position: relative; }

/* =============================================
   SEKCJA 2 — Czy upadłość konsumencka jest dla Ciebie
   ============================================= */
.ns-fit { background: var(--c-white); position: relative; }

/* 4. Rozmyta plama w rogu, delikatna paralaksa przy scrollu */
.ns-fit__blob {
  position: absolute; z-index: 0; pointer-events: none; filter: blur(90px);
  background: radial-gradient(circle, var(--c-sage) 0%, transparent 70%);
  opacity: .18;
  width: 480px; height: 480px;
  bottom: -180px; right: -140px;
  will-change: transform;
}
@media (max-width: 860px) { .ns-fit__blob { display: none; } }

.ns-fit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .ns-fit__grid { grid-template-columns: repeat(2, 1fr); } }
.ns-fit-card {
  position: relative;
  background: #0C1B4E;
  border: 1px solid #0C1B4E;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.ns-fit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }

/* 29. Kropka reagująca na wejście karty w viewport */
.ns-fit-card__dot {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 8px; height: 8px;
  background: rgba(255,255,255,.22);
  transition: background .6s ease;
}
.ns-fit-card__dot.is-visible { background: var(--c-sage); }

.ns-fit-card__icon {
  width: 48px; height: 48px;
  background: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  color: #1763C6;
  flex-shrink: 0;
}
.ns-fit-card__icon svg { width: 22px; height: 22px; }

/* 13. Podkreślenie tytułu wjeżdżające od lewej przy hover na karcie */
.ns-fit-card__title {
  position: relative; display: inline-block; padding-bottom: 2px;
  font-size: var(--t-lg); font-weight: 700; color: var(--c-white); line-height: 1.35; font-family: 'Inter', sans-serif;
}
.ns-fit-card__title::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--c-sage);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
}
.ns-fit-card:hover .ns-fit-card__title::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .ns-fit-card__title::after { transition: none; } }

.ns-fit-card__desc { font-size: var(--t-sm); color: rgba(255,255,255,.68); line-height: 1.65; }

.ns-fit__closing {
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.ns-fit__closing-text { font-size: var(--t-lg); color: var(--c-green); font-weight: 500; font-family: 'Fraunces', Georgia, serif; max-width: 560px; line-height: 1.5; }

@media (max-width: 640px) {
  .ns-fit__grid { grid-template-columns: 1fr; }
  .ns-fit__closing { flex-direction: column; align-items: center; text-align: center; }
}

/* =============================================
   SEKCJE 3-9 — style podstawowe (do rozbudowy po dostarczeniu
   ogólnej koncepcji wizualnej przez klienta)
   ============================================= */

/* Usługi (jak pomagamy) — jedna kolumna, styl kart jak w sekcji 2 */
.ns-help { background: var(--c-bg); }
.ns-help__grid { display: flex; flex-direction: column; gap: 1.5rem; }
.ns-help-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.ns-help-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.ns-help-item__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(23,99,198,.1); color: #1763C6;
  display: flex; align-items: center; justify-content: center;
}
.ns-help-item__icon svg { width: 22px; height: 22px; }
.ns-help-item__title { font-size: var(--t-lg); font-weight: 700; color: var(--c-text); margin-bottom: .35rem; }
.ns-help-item__desc { font-size: var(--t-sm); color: var(--c-text-sub); line-height: 1.6; }

/* Proces współpracy — pionowy suwaczek po lewej, kwadratowe znaczniki */
.ns-process { background: var(--c-bg); }
.ns-process__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: stretch; }
.ns-process__visual { position: relative; border: 1px solid var(--c-border); overflow: hidden; min-height: 380px; }
.ns-process__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 960px) {
  .ns-process__inner { grid-template-columns: 1fr; }
  .ns-process__visual { order: -1; max-height: 360px; }
}
.ns-process__list { position: relative; display: flex; flex-direction: column; gap: 0; max-width: 760px; }
.ns-process__track {
  position: absolute; left: 21px; top: 21px; bottom: 21px; width: 2px;
  background: var(--c-border); z-index: 0;
}
.ns-process__track-fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 0%;
  background: #1763C6;
}
.ns-process-step {
  position: relative; z-index: 1;
  display: flex; gap: 1.5rem; padding: 1.5rem 0;
}
.ns-process-step__num {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--c-green); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--t-md);
}
.ns-process-step__title { font-size: var(--t-md); font-weight: 700; color: var(--c-text); margin-bottom: .3rem; }
.ns-process-step__desc { font-size: var(--t-sm); color: var(--c-text-sub); line-height: 1.6; }

/* Dlaczego my — zdjęcie w tle, ciemna nakładka, symetryczna siatka 2 x 3 */
.ns-why {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--c-green-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ns-why__overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(8,19,55,.93) 0%, rgba(12,27,78,.82) 45%, rgba(8,19,55,.95) 100%);
}
.ns-why > .container { position: relative; z-index: 1; }
.ns-why .ns-eyebrow { color: var(--c-sage); }
.ns-why .ns-eyebrow::before { background: var(--c-sage-dark); }
.ns-why .ns-h2 { color: var(--c-white); }

.ns-why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.ns-why-item {
  position: relative;
  background: rgba(240,246,254,.06);
  border: 1px solid rgba(14,185,220,.25);
  border-left: 3px solid var(--c-sage);
  padding: 2em 1.75em;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: var(--transition);
}
.ns-why-item:hover { background: rgba(240,246,254,.11); border-color: rgba(14,185,220,.55); border-left-color: var(--c-sage); transform: translateY(-4px); }
.ns-why-item__num { display: block; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: var(--t-lg); color: var(--c-sage); opacity: .65; margin-bottom: .5em; }
.ns-why-item__title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: var(--t-lg); line-height: 1.35; color: var(--c-white); margin: 0 0 .4rem; }
.ns-why-item__desc { font-family: 'Inter', sans-serif; font-size: var(--t-sm); color: rgba(255,255,255,.68); line-height: 1.65; }

@media (max-width: 700px) { .ns-why__grid { grid-template-columns: 1fr; } }

/* FAQ — karty zawsze otwarte, 2 kolumny */
.ns-faq { background: var(--c-bg); }
.ns-faq__grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; counter-reset: ns-faq-count; }

/* 2. Pionowa linia rozdzielająca kolumny, rysująca się przy wejściu w sekcję */
.ns-faq__divider {
  position: absolute; top: 0; left: 50%; width: 1px;
  background: var(--c-border);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 1s ease;
  pointer-events: none;
}
.ns-faq__divider.is-visible { transform: translateX(-50%) scaleY(1); }
@media (max-width: 700px) { .ns-faq__divider { display: none; } }
@media (prefers-reduced-motion: reduce) { .ns-faq__divider { transition: none; } }

.ns-faq-card {
  position: relative; overflow: hidden;
  counter-increment: ns-faq-count;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.ns-faq-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }

/* 9. Blady numer pytania w tle karty */
.ns-faq-card::before {
  content: counter(ns-faq-count, decimal-leading-zero);
  position: absolute; top: .5rem; right: .9rem; z-index: -1;
  font-family: 'Fraunces', Georgia, serif; font-size: 3rem; font-weight: 500;
  color: var(--c-green); opacity: .06; line-height: 1; pointer-events: none;
}

/* 15. Lewy akcent karty rosnący przy hover */
.ns-faq-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--c-sage);
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s ease;
}
.ns-faq-card:hover::after { transform: scaleY(1); }
@media (prefers-reduced-motion: reduce) { .ns-faq-card::after { transition: none; } }

.ns-faq-card__q { font-weight: 700; font-size: var(--t-md); color: var(--c-green); margin-bottom: .6rem; }

.ns-faq-card__a { font-size: var(--t-sm); color: var(--c-text-sub); line-height: 1.65; }
@media (max-width: 700px) { .ns-faq__grid { grid-template-columns: 1fr; } }

.ns-faq__cta {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
  background: #0C1B4E;
  padding: 2.5rem 2rem;
  text-align: center;
}
.ns-faq__cta-title {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: 'Fraunces', Georgia, serif; font-size: var(--t-lg); font-weight: 500; color: var(--c-white); margin-bottom: .5rem;
}
/* 22. Pulsująca kropka "live" przy tekście CTA */
.ns-faq__live-dot { position: relative; display: inline-block; width: 8px; height: 8px; background: var(--c-sage); flex-shrink: 0; }
.ns-faq__live-dot::after {
  content: ''; position: absolute; inset: -6px; border: 1px solid var(--c-sage);
  opacity: .6; animation: ns-live-ping 2s ease-out infinite;
}
@keyframes ns-live-ping { 0% { transform: scale(.4); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .ns-faq__live-dot::after { animation: none; display: none; } }

.ns-faq__cta-desc { font-size: var(--t-sm); color: rgba(255,255,255,.72); margin-bottom: 1.5rem; }

/* Obszar działania */
.ns-area { background: var(--c-white); }
.ns-area__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
@keyframes ns-tag-float { from { transform: translateY(0); } to { transform: translateY(-5px); } }
.ns-area__tag {
  font-size: var(--t-xs); font-weight: 600; color: var(--c-green);
  background: rgba(12,27,78,.07);
  padding: .5em 1.1em;
  transition: background var(--transition), color var(--transition);
  animation: ns-tag-float 3.2s ease-in-out infinite alternate;
}
.ns-area__tag:nth-child(2n) { animation-delay: -.8s; }
.ns-area__tag:nth-child(3n) { animation-delay: -1.6s; }
.ns-area__tag:nth-child(4n) { animation-delay: -2.3s; }
@media (prefers-reduced-motion: reduce) { .ns-area__tag { animation: none; } }
.ns-area__tag:hover { background: var(--c-sage); color: var(--c-green); }

/* Opinie — split: wielka deklaracja + lista opinii */
.ns-reviews { background: var(--c-bg); }
.ns-reviews__split { display: flex; align-items: stretch; max-width: 1400px; margin: 0 auto; box-shadow: var(--shadow-card); }

.ns-reviews__statement { flex: 0 0 40%; background: var(--c-green); color: var(--c-white); padding: clamp(2.5rem,4vw,4.5rem); display: flex; flex-direction: column; justify-content: center; }
.ns-reviews__statement-text { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(2rem,3.2vw,3rem); line-height: 1.16; margin: 0 0 2rem; }
.ns-reviews__statement-accent { color: var(--c-sage); font-style: italic; }
.ns-reviews__statement-line { width: 64px; height: 3px; background: var(--c-sage); margin-bottom: 2rem; }
.ns-reviews__statement-sub { font-size: var(--t-sm); line-height: 1.65; color: rgba(255,255,255,.72); max-width: 32ch; margin: 0; }

.ns-reviews__list { flex: 0 0 60%; background: var(--c-white); display: flex; flex-direction: column; }
.ns-reviews__item { position: relative; padding: clamp(2.25rem,3.4vw,3.25rem) clamp(2.5rem,4vw,4rem); border-bottom: 1px solid var(--c-border); overflow: hidden; }
.ns-reviews__item:last-child { border-bottom: none; }
.ns-reviews__mark { position: absolute; top: .25rem; right: clamp(1.5rem,3vw,3rem); font-family: 'Fraunces', Georgia, serif; font-size: clamp(4rem,7vw,6rem); line-height: 1; color: var(--c-sage); opacity: .55; pointer-events: none; user-select: none; }
.ns-reviews__quote { position: relative; z-index: 1; font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: clamp(1.15rem,1.6vw,1.5rem); line-height: 1.5; color: var(--c-text); max-width: 46ch; margin: 0 0 1.25rem; }
.ns-reviews__author { font-size: var(--t-sm); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--c-text-sub); margin: 0; }
.ns-reviews__author::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--c-sage-dark); margin-right: .75rem; vertical-align: middle; }

@media (max-width: 900px) {
  .ns-reviews__split { flex-direction: column; }
  .ns-reviews__statement, .ns-reviews__list { flex: none; width: 100%; }
}
@media (max-width: 600px) {
  .ns-reviews__statement { padding: 2.25rem 1.5rem; }
  .ns-reviews__item { padding: 2rem 1.5rem; }
  .ns-reviews__mark { font-size: 3.25rem; top: .1rem; right: 1rem; }
  .ns-reviews__quote { max-width: none; }
}

/* Kontakt — split 35/65, ciemny panel + rozbudowany formularz */
.ns-contact { background: var(--c-bg); }
.ns-contact__split { display: grid; grid-template-columns: 60fr 40fr; box-shadow: var(--shadow-card); }
.ns-contact__panel { background: var(--c-green); color: var(--c-white); display: flex; }
.ns-contact__panel-inner { padding: 4em 3em; display: flex; flex-direction: column; gap: 2.2em; }
.ns-contact__eyebrow { font-size: var(--t-sm); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--c-sage); margin: 0; }
.ns-contact__heading { font-size: clamp(1.9rem, 2.6vw, 2.6rem); font-weight: 600; line-height: 1.15; margin: 0; color: var(--c-white); }
.ns-contact__lead { font-size: var(--t-md); line-height: 1.6; color: rgba(255,255,255,.78); margin: 0; max-width: 34ch; }
.ns-contact__list { list-style: none; margin: .5em 0 0; padding: 2em 0 0; display: flex; flex-direction: column; gap: 1.4em; }
.ns-contact__item-text { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.9); display: flex; flex-direction: column; }
.ns-contact__item-label { font-size: var(--t-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(14,185,220,.75); margin-bottom: .25em; }
.ns-contact__item-text a { color: var(--c-white); text-decoration: none; transition: color var(--transition); }
.ns-contact__item-text a:hover { color: var(--c-sage); }

.ns-contact__form-panel { background: var(--c-white); padding: 4em; display: flex; align-items: center; }
.ns-contact__form-panel .ns-form { width: 100%; }

@media (max-width: 900px) {
  .ns-contact__split { grid-template-columns: 1fr; }
  .ns-contact__panel-inner { padding: 3em 2em; }
  .ns-contact__form-panel { padding: 3em 2em; }
}
@media (max-width: 600px) {
  .ns-contact__panel-inner { padding: 2.5em 1.3em; gap: 1.8em; }
  .ns-contact__form-panel { padding: 2.5em 1.3em; }
  .ns-contact__heading { font-size: 1.6rem; }
}

.ns-form { display: flex; flex-direction: column; gap: 1.3rem; }
.ns-form-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.ns-form-input, .ns-form-textarea {
  width: 100%; box-sizing: border-box;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); padding: .75em 1em;
  font-size: var(--t-sm); font-family: inherit; color: var(--c-text);
  outline: none; transition: border-color var(--transition);
}
.ns-form-input:focus, .ns-form-textarea:focus { border-color: var(--c-green); }
.ns-form-textarea { resize: vertical; min-height: 90px; }
.ns-form-submit {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--c-green); color: var(--c-white);
  padding: .85em 1em; border-radius: var(--radius-sm);
  font-size: var(--t-sm); font-weight: 700;
  transition: background var(--transition);
}
.ns-form-submit:hover { background: var(--c-green-dark); }
.ns-form-submit::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); pointer-events: none;
  transition: left .65s ease;
}
.ns-form-submit:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) { .ns-form-submit::after { display: none; } }

.form-rodo { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--t-xs); color: var(--c-text-sub); line-height: 1.5; }
.form-rodo input { margin-top: 3px; flex-shrink: 0; }
.form-rodo a { color: var(--c-green); text-decoration: underline; }
.form-msg { font-size: var(--t-xs); }
.form-msg--ok { color: #2E7D32; }
.form-msg--err { color: #B3261E; }

@media (max-width: 860px) {
  .ns-contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Zamknięcie — nie musisz radzić sobie z tym sam */
.ns-closing {
  background: linear-gradient(160deg, #0F2263 0%, var(--c-green) 55%, var(--c-green-dark) 100%);
  color: var(--c-white);
  text-align: center;
}
.ns-closing__inner { max-width: 640px; margin: 0 auto; padding: 6em 2rem; }
.ns-closing__heading { font-size: clamp(24px, 3vw, 34px); font-weight: 500; color: var(--c-white); margin-bottom: 1.25rem; }
.ns-closing__heading em { font-style: italic; color: var(--c-sage); }
.ns-closing__desc { font-size: var(--t-md); color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 2.25rem; }
@media (max-width: 600px) { .ns-closing__inner { padding: 3.5em 1.25rem; } }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--c-green-dark); color: rgba(255,255,255,.72); }
.site-footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem;
  padding-top: 3.5rem; padding-bottom: 3.5rem;
}
.site-footer__logo { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--c-white); margin-bottom: .85rem; display: block; }
.site-footer__desc { font-size: var(--t-sm); line-height: 1.7; color: rgba(255,255,255,.55); max-width: 340px; }
.site-footer__col-title { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-white); margin-bottom: 1.1rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.site-footer__col a { font-size: var(--t-sm); color: rgba(255,255,255,.55); transition: color var(--transition); }
.site-footer__col a:hover { color: var(--c-sage); }
.site-footer__contact-list { display: flex; flex-direction: column; gap: .8rem; }
.site-footer__contact-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.5; }
.site-footer__contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--c-sage); }
.site-footer__contact-list a { color: rgba(255,255,255,.55); }
.site-footer__contact-list a:hover { color: var(--c-sage); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; font-size: var(--t-xs); color: rgba(255,255,255,.35); }
.site-footer__bottom-inner a { color: rgba(255,255,255,.35); }
.site-footer__bottom-inner a:hover { color: var(--c-sage); }

/* =============================================
   POLITYKA PRYWATNOŚCI — prosty dokument
   ============================================= */
.pp-hero { background: var(--c-green); color: var(--c-white); padding: 5em 2em; }
.pp-hero__inner { max-width: 720px; }
.pp-hero h1 { font-size: clamp(30px,4vw,44px); font-weight: 500; margin-bottom: 1rem; }
.pp-hero p { font-size: var(--t-md); color: rgba(255,255,255,.78); line-height: 1.7; }
.pp-doc { background: var(--c-white); }
.pp-doc__inner { max-width: 780px; margin: 0 auto; }
.pp-section { margin-bottom: 2.5rem; }
.pp-section:last-child { margin-bottom: 0; }
.pp-section__title { font-size: var(--t-lg); font-weight: 700; color: var(--c-green); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--c-border); }
.pp-section p { font-size: var(--t-base); color: var(--c-text); line-height: 1.8; margin-bottom: .75rem; }
.pp-section ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin: .75rem 0; }
.pp-section ul li { font-size: var(--t-base); color: var(--c-text); line-height: 1.7; padding-left: 1.1rem; position: relative; }
.pp-section ul li::before { content: ''; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; background: var(--c-sage-dark); }
.pp-section a { color: var(--c-green); text-decoration: underline; }
.pp-meta { font-size: var(--t-sm); color: var(--c-text-sub); margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--c-border); }

@media (max-width: 860px) { .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1rem; }
  .site-footer__bottom-inner { flex-direction: column; gap: .5rem; text-align: center; padding: 1rem; }
}
