/* ============================================================ INTRO: kolaż + tekst ============================================================ */
.intro {
  padding: 70px 0 100px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.collage {
  position: relative;
  height: 440px;
}
.collage-phone {
  position: absolute;
  width: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px 9px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.collage-phone .notch {
  width: 40px;
  height: 5px;
  border-radius: 4px;
  background: var(--line);
  margin: 0 auto 12px;
}
.collage-phone .l {
  height: 8px;
  border-radius: 4px;
  background: var(--surface-3);
  margin-bottom: 9px;
}
.collage-phone .l.title {
  height: 13px;
  width: 70%;
  margin-bottom: 14px;
}
.collage-phone .chip {
  height: 24px;
  width: 80px;
  border-radius: 14px;
  background: var(--accent-dim);
  margin-top: 10px;
}
.collage-phone.p1 {
  top: 0;
  left: 30px;
  transform: rotate(-9deg);
  z-index: 3;
  animation: driftA 8s ease-in-out infinite;
}
.collage-phone.p2 {
  top: 70px;
  left: 190px;
  transform: rotate(7deg);
  z-index: 2;
  animation: driftB 9s ease-in-out infinite;
}
.collage-phone.p2 .chip {
  background: var(--status-dim);
  border-color: var(--status);
}
.collage-phone.p3 {
  top: 220px;
  left: 80px;
  transform: rotate(-3deg);
  z-index: 1;
  animation: driftA 10s ease-in-out infinite reverse;
}
@keyframes driftA {
  0%,
  100% {
    transform: translateY(0) rotate(-9deg);
  }
  50% {
    transform: translateY(-12px) rotate(-7deg);
  }
}
@keyframes driftB {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }
  50% {
    transform: translateY(-16px) rotate(9deg);
  }
}
.collage-blob {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  top: 60px;
  left: 60px;
  z-index: 0;
}
@media (max-width: 640px) {
  .collage {
    height: 360px;
  }
  .collage-phone {
    width: 150px;
  }
  .collage-phone.p2 {
    left: 130px;
  }
  .collage-phone.p3 {
    left: 50px;
  }
}

.intro-copy p {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 16px;
}
.intro-copy p:last-child {
  margin-bottom: 0;
}
.intro-copy strong {
  color: var(--text);
  font-weight: 600;
}
.intro-copy h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* --- 4 mini karty "czym się zajmuję" --- */
.duty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.duty-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.duty-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.duty-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}
.duty-card p {
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .duty-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .duty-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ GŁOŚNY PASEK MARQUEE ============================================================ */
.loud-band {
  background: var(--glass-dim-light);
  color: var(--text);
  padding: 22px 0;
  overflow: hidden;
}
.loud-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: loudScroll 20s linear infinite;
}
.loud-band:hover .loud-track {
  animation-play-state: paused;
}
.loud-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@keyframes loudScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================ DUŻY STATEMENT ============================================================ */
.statement {
  padding: 150px 0;
  text-align: center;
  overflow: hidden;
}
.statement .sblob {
  position: absolute;
  width: 520px;
  height: 520px;
  background: var(--status);
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.14;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.statement-inner {
  position: relative;
  z-index: 1;
}
.statement h2 {
  font-size: clamp(38px, 8vw, 104px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}
.statement h2 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.16, 0.8, 0.28, 1);
}
.statement.is-visible h2 .word {
  opacity: 1;
  transform: translateY(0);
}
.statement p {
  margin-top: 26px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================ STATYSTYKI ============================================================ */
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.stat-cell {
  background: var(--surface);
  padding: 36px 28px;
  text-align: center;
}
.stat-cell .n {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--accent);
  font-weight: 500;
}
.stat-cell .l {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
/* Jedna z komórek bywa krótkim zdaniem zamiast liczby (np. "Jedna
   osoba") — ten sam rytm wizualny, ale bez przesadnie dużej czcionki
   dopasowanej do cyfr. */
.stat-cell .stat-word {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.25;
  display: inline-block;
}
@media (max-width: 820px) {
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stats-wrap {
    grid-template-columns: 1fr;
  }
}

/* --- marquee logotypów (wzorzec ze strony głównej) --- */
.logo-strip {
  padding: 64px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.logo-strip .cap {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-align: center;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scrollLeft 22s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-faint);
  opacity: 0.65;
  white-space: nowrap;
}
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================ ZASADY WSPÓŁPRACY ============================================================ */
.values-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.value-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.3fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
  transition: background 0.2s ease;
}
.value-row:first-child {
  border-top: 1px solid var(--line-soft);
}
.value-row:hover {
  background: var(--surface);
}
.value-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}
.value-row h4 {
  font-size: 18px;
}
.value-row p {
  font-size: 14.5px;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .value-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .value-num {
    order: 0;
  }
}

/* ============================================================ CTA / KONTAKT ============================================================ */

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.cta-copy h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 16px;
}
.cta-copy p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 26px;
  max-width: 440px;
}
.contact-alt {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact-alt a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.contact-alt a svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px; /* iOS Safari: <16px na inputach wywoluje auto-zoom przy fokusie */
}
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}
