:root {
  --navy: #082f63;
  --navy-deep: #05234a;
  --blue: #0b62c4;
  --blue-bright: #1288dc;
  --blue-light: #eaf4ff;
  --blue-pale: #f4f9ff;
  --ink: #102640;
  --muted: #5d7188;
  --line: #d8e4ef;
  --white: #ffffff;
  --shadow: 0 14px 36px rgba(8, 47, 99, 0.10);
  --radius: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

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

button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8, 47, 99, .09);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 290px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 272px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.main-menu {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 700;
  font-size: 15px;
}

.main-menu a {
  transition: color .2s ease;
}

.main-menu a:hover { color: var(--blue); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 7px;
  border: 1px solid var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(11, 98, 196, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(11, 98, 196, .25);
}

.button-small { min-height: 43px; padding-inline: 21px; font-size: 14px; }

.button-outline {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.menu-button { display: none; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 39%;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 9%, rgba(255,255,255,.17) 30%, rgba(255,255,255,0) 46%),
    url("assets/hero-fabryka.jpg") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: center;
}

.hero-copy {
  padding: 62px 0 48px;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(39px, 4.35vw, 60px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 565px;
  color: #2e4966;
  font-size: 20px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.hero-benefits {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(calc(100% - 40px), 760px);
  margin: -30px auto 0 max(20px, calc((100vw - var(--container)) / 2));
  padding: 18px 20px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: translateY(30px);
  z-index: 2;
}

.mini-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.mini-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid #b9d7f5;
  background: var(--blue-pale);
  border-radius: 50%;
  font-weight: 900;
  font-size: 22px;
}

.mini-benefit strong,
.mini-benefit span { display: block; }

.mini-benefit strong {
  font-size: 14px;
  color: var(--navy);
}

.mini-benefit span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
  overflow: visible;
}


/* Sections */
.section { padding: 88px 0; }

.section-tinted {
  background:
    radial-gradient(circle at 50% 0, rgba(18,136,220,.08), transparent 38%),
    var(--blue-pale);
}

.section-soft { background: #f7fbff; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.section-heading h2::after,
.contact-copy h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--blue);
  border-radius: 999px;
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  grid-column: span 2;
}


.service-card {
  min-height: 270px;
  padding: 30px 22px 25px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 47, 99, .055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #9bc9f2;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
}

.service-icon svg {
  width: 47px;
  height: 47px;
  overflow: visible;
}

.service-icon svg *:not(text) {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon svg text {
  fill: currentColor;
  stroke: none;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  min-height: 48px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.32;
}

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


.training-note {
  max-width: 1080px;
  margin: 30px auto 0;
  padding: 17px 22px;
  border: 1px solid #c5ddf4;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--muted);
  text-align: center;
}

.training-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.training-note strong {
  color: var(--navy);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 11%;
  right: 11%;
  height: 1px;
  background: #a9caeb;
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-number {
  position: absolute;
  top: 0;
  left: calc(50% + 29px);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.step-icon {
  width: 106px;
  height: 106px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #bad8f5;
  background: #fff;
  color: var(--blue);
  font-size: 42px;
  box-shadow: 0 8px 20px rgba(8,47,99,.07);
}

.process-step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
}

.process-step p {
  margin: 10px auto 0;
  max-width: 235px;
  color: var(--muted);
  font-size: 14px;
}

.process-note {
  margin: 36px 0 0;
  text-align: center;
  color: var(--navy);
  font-weight: 800;
}

/* Cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.case-card > img {
  width: 100%;
  aspect-ratio: 16 / 6.4;
  object-fit: cover;
  background: #dfeaf5;
}

.case-body { padding: 24px 24px 28px; }

.case-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.case-card h3 {
  margin: 13px 0 0;
  color: var(--navy);
  font-size: 21px;
}

.case-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.advantage {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
}

.advantage-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid #b6d5f3;
  color: var(--blue);
  background: #fff;
  font-size: 28px;
  font-weight: 900;
}

.advantage h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}

.advantage p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: #fff;
}

.contact-photo {
  position: absolute;
  inset: 0 0 0 62%;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.93) 22%, rgba(255,255,255,.1) 72%),
    url("assets/kontakt-fabryka.jpg") center / cover no-repeat;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 43% 41%;
  gap: 9%;
  align-items: start;
}

.contact-copy h2::after {
  margin-left: 0;
  margin-right: 0;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
}

.contact-list {
  margin: 31px 0 0;
  border-top: 1px solid var(--line);
}

.contact-list div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 14px;
}

.contact-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

.contact-list a:hover { color: var(--blue); }

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: block;
  margin-bottom: 15px;
}

.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #c7d8e9;
  border-radius: 6px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,98,196,.10);
}

.contact-form textarea { resize: vertical; }

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
}

/* Footer */
.site-footer {
  padding: 26px 0;
  color: #fff;
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 270px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-logo {
  display: inline-block;
  width: 245px;
  padding: 5px 12px;
  background: #fff;
  border-radius: 5px;
}

.footer-logo img {
  width: 100%;
  height: 45px;
  object-fit: contain;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
}

.footer-menu a:hover { color: #8ec8ff; }

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 250px 1fr auto; }
  .brand img { width: 230px; }
  .main-menu { gap: 22px; font-size: 14px; }
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .service-card { grid-column: span 2; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }

  .header-inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand img { width: 220px; height: 58px; }
  .header-cta { display: none; }

  .menu-button {
    display: grid;
    width: 43px;
    height: 43px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 3px 0;
    background: var(--navy);
  }

  .main-menu {
    display: none;
    position: absolute;
    top: 71px;
    left: 14px;
    right: 14px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .main-menu.is-open { display: flex; }
  .main-menu a { padding: 12px; border-bottom: 1px solid #eef3f8; }
  .main-menu a:last-child { border: 0; }

  .hero-photo {
    position: relative;
    inset: auto;
    display: block;
    height: 310px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.05)),
      url("assets/hero-fabryka.jpg") center / cover no-repeat;
    order: 2;
  }


  .hero-grid {
    min-height: auto;
    display: block;
  }

  .hero-copy {
    padding: 48px 0 38px;
  }

  .hero h1 { font-size: clamp(42px, 11vw, 61px); }
  .hero-lead { font-size: 18px; }

  .hero-benefits {
    width: calc(100% - 28px);
    margin: -24px auto 0;
    grid-template-columns: 1fr;
    transform: translateY(24px);
  }

  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card,
  .service-card:nth-child(5) { grid-column: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 24px; }
  .process-grid::before { display: none; }
  .case-grid { grid-template-columns: 1fr; }
  .contact-photo { inset: 0; opacity: .12; background-position: right center; }
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-menu { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .brand img { width: 190px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 20px; }
  .contact-list div { grid-template-columns: 1fr; gap: 3px; }
  .footer-menu { gap: 16px; }
}


@media (max-width: 820px) {
  .case-card--document .case-image-link img {
    height: auto;
    max-height: 430px;
  }
}


/* Przykłady wdrożeń 5S */
.case-card--compare,
.case-card--single {
  display: flex;
  flex-direction: column;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 310px;
  padding: 10px;
  background: #edf3f9;
  border-bottom: 1px solid var(--line);
}

.compare-panel,
.single-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.compare-panel:first-child {
  border-radius: 8px 0 0 8px;
}

.compare-panel:last-child {
  border-radius: 0 8px 8px 0;
}

.compare-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-label {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(8, 47, 99, .92);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 4px 12px rgba(8, 47, 99, .18);
}

.compare-label--after {
  background: rgba(11, 98, 196, .94);
}

.single-photo {
  height: 310px;
  margin: 10px;
  border-radius: 8px;
}

.single-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-label--standard {
  background: rgba(11, 98, 196, .94);
}

.case-card--compare .case-body,
.case-card--single .case-body {
  flex: 1;
  padding: 23px 24px 27px;
}

.case-card--compare h3,
.case-card--single h3 {
  font-size: 20px;
}

.case-card--compare p,
.case-card--single p {
  font-size: 14px;
  line-height: 1.55;
}

/* Facebook w stopce */
.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-right p {
  margin: 0;
  white-space: nowrap;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.facebook-link:hover {
  color: #8ec8ff;
}

.facebook-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

@media (max-width: 820px) {
  .compare-grid {
    height: 360px;
  }

  .single-photo {
    height: 360px;
  }

  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .compare-grid {
    height: 290px;
  }

  .single-photo {
    height: 290px;
  }

  .footer-right {
    flex-direction: column;
    gap: 9px;
  }
}


/* Treść nastawiona na problemy i efekty */

.problems-section {
  padding-top: 105px;
  background: #fff;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.problem-card {
  min-height: 225px;
  padding: 25px 22px 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 47, 99, .055);
}

.problem-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.problem-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.32;
}

.problem-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.problems-summary {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 18px 22px;
  border: 1px solid #c5ddf4;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--navy);
  text-align: center;
  font-weight: 700;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  min-height: 70px;
}

.service-card p {
  flex: 1;
}


.case-details {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.case-details li {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.case-details li:first-child {
  margin-top: 0;
}

.case-details strong {
  color: var(--navy);
}

.cooperation-model {
  max-width: 930px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid #c5ddf4;
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.cooperation-model strong {
  color: var(--navy);
}

@media (max-width: 1080px) {
  .problems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .problems-section {
    padding-top: 82px;
  }

  .problems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card h3 {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
  }
}


/* Wyraźne etykiety metod Lean w kartach */
.method-label {
  display: inline-flex;
  align-self: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 8px 14px;
  border: 1px solid #9fc4eb;
  border-radius: 999px;
  background: var(--blue-pale);
  color: #0a4f9a;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.service-card h3 {
  min-height: 70px;
}

/* Lepsza prezentacja nowego zdjęcia głównego */
.hero-photo {
  background-position: center center;
}

@media (max-width: 820px) {
  .method-label {
    margin-bottom: 12px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .hero-photo {
    background-position: 38% center;
  }
}


/* Pierwszy ekran — widoczniejsze pozycjonowanie Lean Management */
.hero-eyebrow {
  margin-bottom: 13px;
  color: #0a5eb5;
  font-size: 14px;
  letter-spacing: .16em;
}

.hero-tools {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: .015em;
}

@media (max-width: 820px) {
  .hero-eyebrow {
    font-size: 13px;
  }

  .hero-tools {
    font-size: 12px;
  }
}


/* Ikony SVG w etapach współpracy i sekcji „Dlaczego Leanowiec.pl?” */
.step-icon svg,
.advantage-icon svg {
  width: 46px;
  height: 46px;
  overflow: visible;
}

.step-icon svg *,
.advantage-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Wersja 16 — większa czytelność opisów bez zmiany układu kart */
.problem-card p,
.service-card p {
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .problem-card p,
  .service-card p {
    font-size: 15px;
  }
}
