:root {
  --white: #ffffff;
  --soft: #f6f7f9;
  --ink: #101828;
  --muted: #667085;
  --line: #eaecf0;
  --navy: #101f3c;
  --rose: #e11d48;
  --rose-light: #fb7185;
  --rose-tint: #fff1f2;
  --grad: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
  --radius: 16px;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 12px 32px rgba(16, 24, 40, 0.09);
  --font: "Inter Tight", "Inter", system-ui, sans-serif;
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo svg {
  width: 2.4rem;
  height: 2.4rem;
}

.logo-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo-name small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active:not(.nav-cta) {
  color: var(--rose);
}

.nav-links a.nav-cta.is-active {
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.45);
}

.nav-cta {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.4);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.32);
}

.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(225, 29, 72, 0.42);
}

.btn-ghost {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

/* --- Hero --- */
.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(60% 80% at 85% 10%, var(--rose-tint) 0%, transparent 60%),
    var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rose);
  margin: 0 0 0.9rem;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .hero h1 {
    white-space: normal;
  }
}

.hero-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.hero-feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-feature svg {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
}

.hero-feature p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

/* --- Trust strip --- */
.trust {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-slot {
  font-size: 0.85rem;
  color: #98a2b3;
  padding: 0.4rem 1.1rem;
  border: 1px dashed #d0d5dd;
  border-radius: 999px;
}

/* --- Sections --- */
.section {
  padding: 5.25rem 0;
}

.section-soft {
  background: var(--soft);
}

.section-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rose);
  margin: 0 0 0.6rem;
  text-align: center;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-align: center;
}

.section-intro {
  margin: 0 auto 3rem;
  color: var(--muted);
  max-width: 42rem;
  text-align: center;
  font-size: 1.02rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Audience cards (Z kim pracujemy) --- */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.audience-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.audience-card > p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.audience-more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.audience-card.is-open .audience-more {
  grid-template-rows: 1fr;
}

.audience-more-inner {
  overflow: hidden;
}

.audience-more ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

.audience-more li {
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.audience-more li::marker {
  color: var(--rose);
}

.audience-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 0;
  padding: 0.5rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--rose);
}

.audience-toggle::after {
  content: "↓";
  transition: transform 0.3s var(--ease);
}

.audience-card.is-open .audience-toggle::after {
  transform: rotate(180deg);
}

/* --- Services (W czym możemy Ci pomóc) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card.is-hidden {
  display: none;
}

.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--rose-tint);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--rose);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.service-icon img {
  width: 1.4rem;
  height: 1.4rem;
}

.service-icon.has-logos {
  width: auto;
  min-width: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.85rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.services-more-wrap {
  text-align: center;
  margin-top: 2.25rem;
}

.services-note {
  margin: 2.5rem auto 0;
  max-width: 46rem;
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--rose-tint);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.95rem;
}

/* --- Why (Dlaczego wybrać) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.why-item h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.why-item h3::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

.why-item p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
}

.why-item strong {
  color: var(--ink);
}

/* --- Stats band --- */
.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.stat-blurb {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 3px solid var(--rose-light);
}

.stat-num strong {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fda4af, #fb7185);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-num span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Steps (Jak współpracujemy) --- */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: 56rem;
  margin-inline: auto;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  align-items: start;
}

.step-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose);
  white-space: nowrap;
  padding: 0.4rem 0.9rem;
  background: var(--rose-tint);
  border-radius: 999px;
}

.step-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* --- Testimonials --- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.9rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.testimonial::before {
  content: "\201D";
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 0.55;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial blockquote {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #44506a;
  flex: 1;
}

.testimonial figcaption {
  font-weight: 700;
  font-size: 0.92rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.testimonial figcaption span {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1rem;
}

.contact-form h3 {
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.consent input {
  margin-top: 0.2rem;
  accent-color: var(--rose);
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.88rem;
  color: var(--rose);
  margin: 0;
}

.contact-alt {
  display: grid;
  gap: 1rem;
}

.alt-card {
  padding: 1.5rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.alt-card p {
  margin: 0 0 0.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.alt-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.alt-value a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.alt-value a:hover {
  color: var(--rose);
}

.copy-btn {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.copy-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.copy-btn.is-copied {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.alt-person {
  padding: 1.5rem 1.6rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
}

.alt-person strong {
  display: block;
  font-size: 1.05rem;
}

.alt-person span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.alt-person-mail {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rose-light);
  border-bottom: 1px solid rgba(251, 113, 133, 0.5);
  transition: color 0.2s, border-color 0.2s;
}

.alt-person-mail:hover {
  color: #fff;
  border-color: #fff;
}

.contact-form > .btn {
  justify-self: center;
  min-width: 13rem;
}

.form-status {
  text-align: center;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
}

.footer-brand svg {
  width: 2.2rem;
  height: 2.2rem;
}

.footer-brand div {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand small {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Cookie bar --- */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 40rem;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-bar.is-hidden {
  display: none;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1 1 18rem;
}

.cookie-bar button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  background: var(--grad);
  color: #fff;
}

/* --- Mobile --- */
@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 4.5rem 0 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }

  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
  }

  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid,
  .contact-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 2.75rem 0 2.5rem;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
    max-height: 20rem;
  }

  .hero-features {
    margin-top: 2.25rem;
  }

  .stats-band {
    padding: 2.5rem 0;
  }

  .hero-features,
  .audience-cards,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .step-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step-badge {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero-features,
  .audience-cards,
  .services-grid,
  .stats-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* watermark */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0.055;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='260'><text x='180' y='140' font-family='Arial, sans-serif' font-size='32' font-weight='600' letter-spacing='8' fill='%23777777' text-anchor='middle' transform='rotate(-24 180 140)'>weblo</text></svg>") repeat;
  background-size: 360px 260px;
}
