/* =========================================================
   SiteCode — landing.css
   Dokłada się do style.css (design tokens, .btn, .price-card, .container itd.)
   Warstwa specyficzna dla przebudowanej strony głównej (rebuild 01.09.2026):
   graf node'ów n8n (hero + "jak to działa"), ticker zaufania, skośne
   przejścia sekcji, kalkulator ROI, dowody, rzemiosło/realizacje, FAQ, o mnie.
   Zero zewnętrznych bibliotek (Three.js/GSAP) — czysty CSS + SVG,
   priorytet: szybkość ładowania na mobile (ruch z Meta/LinkedIn Ads).
   ========================================================= */

/* ---------- Logo — poziomy wordmark (obraz zamiast tekstu) ----------
   Dwie wersje wygenerowane z oryginału (usunięte tło, alpha z luminancji):
   images/logo-horizontal-black.png (jasne tła: header) i
   images/logo-horizontal-white.png (ciemne tła: stopka). ---------- */
.logo { display: inline-flex; align-items: center; }
.logo__img {
  height: 26px;
  width: auto;
  display: block;
}
.logo--footer .logo__img { height: 24px; margin-bottom: 14px; }

/* ---------- Wspólna tekstura tła: kropkowana siatka w stylu kanwy n8n ----------
   Używana wielokrotnie na ciemnych sekcjach, żeby cała strona miała spójną,
   rozpoznawalną tożsamość wizualną zamiast płaskiej czerni. */
.node-canvas-bg {
  background-image: radial-gradient(rgba(250, 246, 239, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
}
@media (max-width: 760px) {
  .node-canvas-bg { background-size: 22px 22px; }
}

/* ---------- Skośne przejścia między sekcjami (mniej "kanciasto") ---------- */
.tilt-top {
  clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
}
.tilt-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
}
@media (max-width: 640px) {
  .tilt-top { clip-path: polygon(0 12px, 100% 0, 100% 100%, 0 100%); }
  .tilt-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 0 100%); }
}

/* =========================================================
   HERO — graf automatyzacji w stylu n8n (zamiast zdjęcia/panelu)
   Węzły = realne kroki produktu (zapytanie → nieodebrane → automatyzacja
   SiteCode → SMS → rezerwacja). To nie dekoracja — to dosłowny diagram tego,
   co sprzedajemy, narysowany językiem wizualnym n8n (zaokrąglone karty-węzły,
   krzywe „przewody”, port-kropki, pulsujący sygnał wzdłuż połączenia).
   ========================================================= */
.hero {
  padding: 96px 0 88px;
}
.hero__inner { max-width: 900px; }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  align-items: center;
  max-width: none;
}
.hero__copy { position: relative; z-index: 2; text-align: left; }
.hero__copy .hero__cta,
.hero__copy .hero__trust { justify-content: flex-start; }

.hero__scene {
  position: relative;
  height: 100%;
  min-height: 420px;
  opacity: 1;
}

.node-graph {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 900 / 560;
  transition: transform 500ms var(--ease);
  will-change: transform;
}
/* Dwie bardzo wolno pulsujące poświaty za grafem (02.09.2026) — głębia i kolor
   bez zmiany głównego czarnego tła strony. Pozycje 1:1 z węzłami "SiteCode"
   (core, bursztyn) i "SMS" (sygnał, turkus), żeby światło wizualnie wychodziło
   z miejsc, które mają znaczenie w narracji produktu. */
.node-graph::before,
.node-graph::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.node-graph::before {
  left: 53.3%;
  top: 67.9%;
  transform: translate(-50%, -50%);
  background: rgba(200, 155, 60, 0.28);
  animation: glowPulse 7s ease-in-out infinite;
}
.node-graph::after {
  left: 74.4%;
  top: 25%;
  transform: translate(-50%, -50%);
  background: rgba(52, 201, 199, 0.24);
  animation: glowPulse 7s ease-in-out infinite 2.3s;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.node-graph__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.node-graph__wires path.wire {
  fill: none;
  stroke: rgba(250, 246, 239, 0.28);
  stroke-width: 2.5;
  stroke-linecap: round;
}
/* Przewody koloruje się w miarę zbliżania do/oddalania od rdzenia "SiteCode" —
   wchodzi bursztyn (automatyzacja), wychodzi turkus (sygnał wysłany), znów
   bursztyn (wartość dostarczona: rezerwacja). Pierwszy przewód (zapytanie →
   nieodebrane) zostaje neutralny — to jeszcze "problem", nie rozwiązanie. */
.node-graph__wires path.wire--amber { stroke: rgba(200, 155, 60, 0.6); }
.node-graph__wires path.wire--signal { stroke: rgba(52, 201, 199, 0.6); }
.node-graph__wires circle.port {
  fill: rgba(250, 246, 239, 0.5);
}
.node-graph__wires circle.pulse {
  fill: var(--amber);
  filter: drop-shadow(0 0 8px rgba(200, 155, 60, 0.9));
}
.node-graph__wires circle.pulse--signal {
  fill: var(--signal);
  filter: drop-shadow(0 0 8px rgba(52, 201, 199, 0.9));
}

.node-graph__node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: rgba(23, 19, 15, 0.85);
  border: 1px solid rgba(250, 246, 239, 0.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  animation: nodeFloat 6s ease-in-out infinite;
}
.node-graph__node-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(250, 246, 239, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.node-graph__node-icon svg { width: 16px; height: 16px; }
.node-graph__node-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--white);
  line-height: 1.2;
}
.node-graph__node-label span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10.5px;
  color: rgba(250, 246, 239, 0.55);
  margin-top: 1px;
}

/* Węzeł centralny „SiteCode” — wyróżniony: większy, z bursztynową obwódką/pulsem
   (jedyny kolorowy akcent w grafie — sygnalizuje: „tu dzieje się automatyzacja,
   tu powstaje wartość”). */
.node-graph__node--core {
  padding: 14px 22px 14px 16px;
  background: var(--white);
  border-color: var(--amber);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 155, 60, 0.55);
  animation: nodeFloat 6s ease-in-out infinite, corePulse 2.6s ease-in-out infinite;
}
.node-graph__node--core .node-graph__node-icon { background: var(--amber); color: var(--black); }
.node-graph__node--core .node-graph__node-label { color: var(--black); }
.node-graph__node--core .node-graph__node-label span { color: var(--gray-500); }

/* Węzeł "SMS" — drugi akcent (turkus, "sygnał wysłany"), świadomie subtelniejszy
   niż rdzeń "SiteCode" (bursztyn zostaje najsilniejszym punktem grafu — tam
   "dzieje się wartość"), ale wystarczający, żeby na mobile było widać kolor
   inny niż bursztyn i biel/czerń. */
.node-graph__node--signal {
  border-color: rgba(52, 201, 199, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(52, 201, 199, 0.35);
  animation: nodeFloat 6s ease-in-out infinite, signalPulse 2.6s ease-in-out infinite;
}
.node-graph__node--signal .node-graph__node-icon { background: rgba(52, 201, 199, 0.2); color: var(--signal-light); }

.node-graph__node:nth-of-type(2) { animation-delay: 0.4s; }
.node-graph__node:nth-of-type(3) { animation-delay: 0.9s; }
.node-graph__node:nth-of-type(4) { animation-delay: 1.3s; }
.node-graph__node:nth-of-type(5) { animation-delay: 1.7s; }

@keyframes nodeFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}
@keyframes corePulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 155, 60, 0.55); }
  50% { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(200, 155, 60, 0.18); }
}
@keyframes signalPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(52, 201, 199, 0.35); }
  50% { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 0 7px rgba(52, 201, 199, 0.16); }
}

/* Subtelny pulsujący glow na głównym CTA hero (02.09.2026) — oko samo tam
   trafia, zatrzymuje się na hover/focus żeby nie gryźć się z istniejącym
   micro-interaction (przesuwający się "błysk" z style.css). Tylko hero —
   reszta przycisków --primary na stronie zostaje bez zmian. */
.hero__cta .btn--primary {
  animation: heroCtaGlow 2.6s ease-in-out infinite;
}
.hero__cta .btn--primary:hover,
.hero__cta .btn--primary:focus-visible {
  animation-play-state: paused;
}
@keyframes heroCtaGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(200, 155, 60, 0.45); }
  50% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 22px 6px rgba(200, 155, 60, 0.38); }
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__copy .hero__cta, .hero__copy .hero__trust { justify-content: center; }
  /* 02.09.2026, na życzenie Janka — dotychczas graf na mobile był wciśnięty w
     grid, przyblakły (opacity .7) i z ukrytymi etykietami: efekt "biały napis
     na czarnym tle". Teraz: tekst/hook zostaje pierwszy (sprzedaje z reklam),
     a graf staje się osobnym, pełnoszerokościowym (edge-to-edge) pasem tuż pod
     nim — pełna nieprzezroczystość, cienka górna/dolna linia w gradiencie
     bursztyn→turkus jako wizualna "ramka" strefy produktu. */
  .hero__scene {
    min-height: 300px;
    margin-top: 28px;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    padding: 24px 24px 8px;
    opacity: 1;
    background-image:
      linear-gradient(90deg, var(--amber), var(--signal)),
      linear-gradient(90deg, var(--amber), var(--signal));
    background-repeat: no-repeat;
    background-size: 100% 2px, 100% 2px;
    background-position: top left, bottom left;
  }
  .node-graph__node-label { font-size: 11.5px; }
  /* Węzeł "Rezerwacja" (skrajnie prawy, left:90% w danych źródłowych) — z
     odsłoniętymi etykietami (patrz niżej) jego podpis "termin umówiony"
     wychodził poza krawędź ekranu. Przesuwam w lewo tylko na wąskich
     szerokościach, bez ruszania współrzędnych źródłowych/SVG. */
  .node-graph__node:nth-of-type(5) { left: 84% !important; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 40px; }
  .hero__scene { min-height: 260px; padding: 20px 16px 8px; }
  .node-graph__node { padding: 7px 12px 7px 9px; }
  .node-graph__node-icon { width: 24px; height: 24px; }
  .node-graph__node-icon svg { width: 13px; height: 13px; }
  .node-graph__node-label span { display: block; font-size: 9px; }
  .node-graph__node:nth-of-type(5) { left: 76% !important; }
}
@media (prefers-reduced-motion: reduce) {
  .node-graph__node { animation: none; }
  .node-graph__wires circle.pulse { display: none; }
  .node-graph::before, .node-graph::after { animation: none; }
}

/* =========================================================
   TICKER — pasek zaufania jako przewijana taśma (zamiast statycznych 3 kolumn)
   ========================================================= */
.ticker {
  background: var(--black);
  border-top: 1px solid rgba(250, 246, 239, 0.08);
  border-bottom: 1px solid rgba(250, 246, 239, 0.08);
  overflow: hidden;
  padding: 22px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 34s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  border-right: 1px solid rgba(250, 246, 239, 0.14);
}
.ticker__item strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--amber-light);
}
.ticker__item span {
  font-size: 13.5px;
  color: rgba(250, 246, 239, 0.6);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; overflow-x: auto; }
}

/* =========================================================
   "JAK TO DZIAŁA" — kroki jako połączony przewód (zamiast siatki 2x2)
   ========================================================= */
.flow { position: relative; }
.flow__wire {
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 70px;
  display: none;
}
.flow__wire path {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 2;
  stroke-dasharray: 1 10;
  stroke-linecap: round;
}
.flow__wire circle {
  fill: var(--black);
}
.flow__wire circle.flow-pulse {
  fill: var(--black);
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.35));
}
@media (prefers-reduced-motion: reduce) {
  .flow__wire circle.flow-pulse { display: none; }
}
.steps { position: relative; }
.step { position: relative; }

/* Zygzak "podłączony do przewodu" — tylko na desktopie, gdzie .flow__wire jest
   widoczny. Na mniejszych ekranach karty wracają do równego, czytelnego stosu. */
@media (min-width: 1025px) {
  .flow__wire { display: block; }
  .step:nth-child(2) { margin-top: 34px; }
  .step:nth-child(4) { margin-top: 34px; }
  .step:nth-child(1), .step:nth-child(3) { margin-top: -8px; }
}

/* =========================================================
   Disclaimer badge
   ========================================================= */
.disclaimer {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-top: 16px;
}

/* =========================================================
   Statbar / problem — duży watermark w tle dla efektu premium
   ========================================================= */
.statbar {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 64px 0 56px;
  overflow: hidden;
}
.statbar::before {
  content: 'STRATA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(60px, 16vw, 220px);
  color: rgba(250, 246, 239, 0.035);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.02em;
}
.statbar__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.statbar__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
}
.statbar__item span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.5;
}
@media (max-width: 760px) {
  .statbar__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   Kalkulator ROI
   ========================================================= */
.calc {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .calc { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
}
.calc__inputs .calc__field { margin-bottom: 28px; }
.calc__inputs label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}
.calc__inputs label .calc__value {
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}
.calc__inputs input[type="range"] {
  width: 100%;
  accent-color: var(--black);
  height: 6px;
  cursor: pointer;
}
.calc__hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.calc__result {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc__result-label { font-size: 14px; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.06em; }
.calc__result-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  margin: 10px 0;
  color: var(--amber-light);
  font-variant-numeric: tabular-nums;
  transition: transform 180ms var(--ease);
}
.calc__result-value.is-pulsing { animation: resultPulse 320ms var(--ease); }
@keyframes resultPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.045); }
  100% { transform: scale(1); }
}
.calc__result-sub { font-size: 14px; color: var(--gray-300); margin-bottom: 20px; }
.calc__result-divider { height: 1px; background: var(--gray-700); margin: 20px 0; }
.calc__compare { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.calc__compare strong { font-variant-numeric: tabular-nums; }
.calc__multiplier { margin-top: 18px; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--amber-light); }
.calc__multiplier span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--gray-300); margin-top: 4px; }

@media (prefers-reduced-motion: reduce) {
  .calc__result-value.is-pulsing { animation: none; }
}

/* =========================================================
   Dowody / case studies
   ========================================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 760px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.proof-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.proof-card__stat { font-family: var(--font-head); font-weight: 800; font-size: 32px; color: var(--black); }
.proof-card p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.proof-card a { text-decoration: underline; font-size: 13px; }

/* =========================================================
   Realizacje / rzemiosło — reużyte .portfolio-card ze style.css,
   przeramowane jako dowód jakości wykonania (nie case study branżowy PV/PC)
   ========================================================= */
.craft__note {
  text-align: center;
  max-width: 620px;
  margin: 36px auto 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* =========================================================
   Tier badge dodatkowy tekst pod price-card
   ========================================================= */
.price-card { transform-style: preserve-3d; }
.price-card__timing { font-size: 12px; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* =========================================================
   FAQ — dwie kolumny: lista + sticky karta zaufania
   ========================================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.faq { max-width: none; }
.faq__item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq__item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 220ms var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin-top: 14px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.faq__aside {
  position: sticky;
  top: 96px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.faq__aside h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.faq__aside p { color: rgba(250, 246, 239, 0.68); font-size: 14px; margin-bottom: 18px; line-height: 1.6; }
.faq__aside ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.faq__aside li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(250, 246, 239, 0.85); }
.faq__aside li svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
}

/* =========================================================
   O mnie — bez fałszywego zdjęcia. Wizualny motyw node-grafu
   (mini wersja) zamiast stockowej fotografii "founder", żeby
   nic na stronie nie udawało czegoś, czym nie jest.
   ========================================================= */
.about { background: var(--black-soft); padding: 100px 0; overflow: hidden; }
.about__inner { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: center; }
.about__media { position: relative; }
.about__visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #202020, #060606);
  border: 1px solid rgba(250, 246, 239, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__visual .node-canvas-bg { position: absolute; inset: 0; }
.about__visual-mark {
  position: relative;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 64px;
  color: var(--white);
  letter-spacing: -0.03em;
}
.about__visual-mark span { color: var(--gray-500); }
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-width: 190px;
}
.about__badge strong { font-family: var(--font-head); font-size: 26px; font-weight: 800; line-height: 1; }
.about__badge span { font-size: 13px; font-weight: 600; margin-top: 6px; color: var(--text-muted); }
.about__text h2 { color: var(--white); font-size: clamp(24px, 3.2vw, 32px); margin: 14px 0 20px; }
.about__text p { color: rgba(250, 246, 239, 0.68); font-size: 16px; margin-bottom: 14px; max-width: 560px; }
.about__text blockquote {
  margin: 24px 0 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  font-size: 17px;
  background: rgba(250, 246, 239, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__media { max-width: 300px; margin: 0 auto; }
  .about__text { text-align: center; }
  .about__text p, .about__text blockquote { margin-left: auto; margin-right: auto; }
}

/* =========================================================
   Responsywność ogólna sekcji dodanych w tej rewizji
   ========================================================= */
@media (max-width: 640px) {
  .statbar__item { font-size: 15px; }
}
