:root {
  --ink: #354f60;
  --ink-soft: #486171;
  --paper: #f8fbfd;
  --canvas: #edf4f8;
  --white: #ffffff;
  --muted: #486171;
  --line: rgba(49, 98, 128, .16);
  --line-strong: rgba(49, 98, 128, .28);
  --accent: #4386ac;
  --accent-dark: #326782;
  --blush: #dcecf7;
  --blush-light: #eef6fc;
  --sage: #d8ebed;
  --sage-light: #edf7f7;
  --max: 1160px;
  --sans: system-ui, "Segoe UI", "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  --serif: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -90px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { top: 18px; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 250, .91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -.018em;
  line-height: 1.08;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--accent);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 640;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--accent-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.nav-links .nav-cta {
  margin-left: 7px;
  padding-inline: 17px;
  color: var(--ink);
  background: #e5ebee;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}
.nav-links .nav-cta:hover { color: var(--ink); background: #dce5e9; text-decoration: none; }
.menu-button {
  display: none;
  min-width: 58px;
  height: 40px;
  padding: 0 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { overflow-wrap: normal; word-break: normal; hyphens: none; -webkit-hyphens: none; text-wrap: balance; }
h1, h2 {
  font-family: var(--sans);
  font-weight: 400;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(50px, 5.8vw, 78px);
  line-height: 1.02;
  letter-spacing: -.046em;
}
h2 {
  margin-bottom: 15px;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.034em;
}
h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.018em;
}
.accent-word,
.page-jdg .accent-word,
.page-company .accent-word {
  color: var(--accent);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
}
.kicker, .eyebrow, .aside-kicker {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.page-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}
.section-intro { max-width: 700px; margin-bottom: 0; color: var(--ink-soft); font-size: 18px; }
.muted { color: var(--muted); }

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  color: var(--ink);
  background: #e5ebee;
  border: 1px solid #aebdc5;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
  transition: transform .17s ease, background-color .17s ease, border-color .17s ease;
}
.button:hover { transform: translateY(-1px); color: var(--ink); background: #dce5e9; border-color: #93a7b2; }
.button-dark, .button-jdg, .button-company { color: var(--ink); background: #e5ebee; }
.button-light { color: var(--ink); background: transparent; border-color: var(--line-strong); }
.button-light:hover { color: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 1px 6px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.text-link:hover { color: var(--accent-dark); border-color: var(--accent-dark); }

/* Strona główna */
.choice-hero, .offer-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.choice-hero {
  padding: 72px 0 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.choice-copy { display: grid; grid-template-columns: 1.25fr .75fr; gap: 68px; align-items: end; }
.choice-copy h1 { max-width: 800px; margin-bottom: 0; }
.hero-note { padding: 0 0 8px 22px; border-left: 1px solid var(--line-strong); }
.hero-note > p:first-child { margin-bottom: 18px; color: var(--ink-soft); font-size: 18px; }
.hero-principle {
  margin-bottom: 0;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: 23px;
  font-style: italic;
  line-height: 1.32;
}
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
  border-top: 1px solid var(--line-strong);
}
.path-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px 36px 32px 0;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .2s ease;
}
.path-card-company { padding-left: 36px; padding-right: 0; border-left: 1px solid var(--line-strong); }
.path-card:hover { background: var(--blush-light); }
.path-card-company:hover { background: var(--sage-light); }
.path-label {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.path-card h2 { max-width: 500px; margin: 14px 0 12px; font-size: clamp(34px, 3.4vw, 46px); }
.path-card p { max-width: 500px; margin: 0; color: var(--ink-soft); }
.path-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}
.path-arrow { font-family: var(--sans); font-size: 23px; line-height: 1; transition: transform .18s ease; }
.path-card:hover .path-arrow { transform: translate(3px, -3px); }

.shared, .offer-section { padding: 68px 0; }
.shared { background: var(--canvas); border-bottom: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: 190px 1fr; gap: 40px; margin-bottom: 38px; }
.section-head > .kicker { align-self: start; padding-top: 8px; }
.shared-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.shared-card { min-height: 215px; padding: 24px 24px 24px 0; }
.shared-card + .shared-card { padding-left: 24px; border-left: 1px solid var(--line); }
.shared-card span, .situation-no {
  display: block;
  margin-bottom: 35px;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
.shared-card strong { display: block; margin-bottom: 7px; font-size: 19px; }
.shared-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 16px; }

.thinking-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--blush);
  border-bottom: 1px solid var(--line);
}
.thinking-section::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 185px;
  right: -150px;
  top: 90px;
  border: 1px solid rgba(111, 139, 155, .18);
  border-radius: 50%;
  transform: rotate(19deg);
  pointer-events: none;
}
.thinking-lead { max-width: 850px; }
.thinking-lead h2 { max-width: 760px; }
.thinking-lead > p:last-child { max-width: 790px; margin-bottom: 0; color: var(--ink-soft); font-size: 19px; }
.principle {
  max-width: 770px;
  margin: 38px 0 62px auto;
  padding-left: 26px;
  border-left: 1px solid var(--accent-dark);
  font-family: var(--sans);
  font-size: clamp(27px, 3vw, 38px);
  font-style: italic;
  line-height: 1.22;
}
.situations-head { display: flex; justify-content: space-between; gap: 30px; align-items: baseline; }
.situations-head > p:last-child { color: var(--muted); font-size: 13px; }
.situation-list { border-top: 1px solid var(--line-strong); }
.situation {
  display: grid;
  grid-template-columns: 70px minmax(230px, .75fr) 1.25fr;
  gap: 28px;
  padding: 24px 0 25px;
  border-bottom: 1px solid var(--line);
}
.situation-no { margin: 1px 0 0; }
.situation h3 { margin: 0; font-family: var(--sans); font-size: 25px; font-weight: 500; line-height: 1.2; }
.situation p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.company-thinking { background: var(--sage); }
.compact-lead { margin-bottom: 44px; }
.compact-situations .situation { grid-template-columns: 70px minmax(260px, .9fr) 1.1fr; }
.scope-note {
  max-width: 900px;
  margin: 34px 0 0 auto;
  padding: 18px 0 0 25px;
  border-left: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 15px;
}

/* Podstrony ofert */
.offer-hero {
  padding: 70px 0 66px;
  background: var(--blush-light);
  border-bottom: 1px solid var(--line);
}
.page-company .offer-hero { background: var(--sage-light); }
.offer-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.offer-hero h1 { max-width: 800px; }
.hero-checklist {
  padding: 23px 0 2px 25px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.hero-checklist .aside-kicker { margin-bottom: 13px; }
.hero-checklist strong { display: block; margin-bottom: 13px; font-family: var(--sans); font-size: 21px; font-weight: 500; line-height: 1.35; }
.hero-checklist ul { margin: 0; padding: 0; list-style: none; }
.hero-checklist li { position: relative; padding: 7px 0 7px 22px; border-top: 1px solid var(--line); font-size: 15px; }
.hero-checklist li::before { content: "↗"; position: absolute; left: 0; color: var(--accent-dark); font-family: var(--sans); }

.quick-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-item { min-height: 105px; padding: 22px 22px 22px 0; }
.quick-item + .quick-item { padding-left: 22px; border-left: 1px solid var(--line); }
.quick-item b { display: block; margin-bottom: 3px; color: var(--ink); font-family: var(--sans); font-size: 18px; font-weight: 600; }
.quick-item span { display: block; color: var(--muted); font-size: 13px; line-height: 1.45; }

.offer-section { background: var(--canvas); border-bottom: 1px solid var(--line); }
.offer-section.white { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}
.service-card {
  min-height: 215px;
  padding: 24px 27px 26px 0;
  border-bottom: 1px solid var(--line);
}
.service-card:nth-child(3n + 2), .service-card:nth-child(3n + 3) { padding-left: 27px; border-left: 1px solid var(--line); }
.service-no {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
}
.service-card p, .process-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 16px; }
.service-afterword {
  max-width: 760px;
  margin: 30px 0 0 auto;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: 24px;
  font-style: italic;
  line-height: 1.35;
}

.process-band, .page-company .process-band { background: var(--sage-light); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.process-card { min-height: 205px; padding: 24px 22px 24px 0; }
.process-card + .process-card { padding-left: 22px; border-left: 1px solid var(--line); }
.process-card b {
  display: block;
  margin-bottom: 32px;
  color: var(--accent-dark);
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}

.pricing-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 54px; align-items: start; }
.price-box { overflow-x: auto; border-top: 1px solid var(--line-strong); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 15px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table th {
  color: var(--accent-dark);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.price-table tbody tr:hover { background: rgba(255, 255, 255, .46); }
.price-table td { font-size: 15px; }
.price-table td:last-child { white-space: nowrap; color: var(--accent-dark); font-weight: 750; }
.price-notes {
  margin-top: 24px;
  padding: 22px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}
.price-notes p:last-child { margin-bottom: 0; }
.aside-price {
  margin-top: 30px;
  padding: 25px 27px;
  background: var(--blush);
  border-radius: 18px;
}
.aside-price h3 { font-family: var(--sans); font-size: 22px; font-weight: 500; }
.aside-price dl { margin: 14px 0 0; }
.aside-price div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-top: 1px solid var(--line); }
.aside-price dt, .aside-price dd { margin: 0; font-size: 14px; }
.aside-price dd { white-space: nowrap; color: var(--accent-dark); font-weight: 750; }

.scanye-section { background: var(--paper); }
.scanye-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 42px 46px;
  overflow: hidden;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.scanye-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 110px;
  right: -95px;
  top: -50px;
  border: 1px solid rgba(111, 139, 155, .17);
  border-radius: 50%;
  transform: rotate(15deg);
}
.scanye-box h2 { font-size: clamp(36px, 4vw, 50px); }
.scanye-box p { margin-bottom: 0; color: var(--ink-soft); }
.clean-list { margin: 8px 0 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 10px 0 10px 24px; border-top: 1px solid var(--line); }
.clean-list li::before { content: "/"; position: absolute; left: 2px; color: var(--accent-dark); font-family: var(--sans); font-style: normal; }

.faq-grid { display: grid; grid-template-columns: minmax(19rem, .85fr) minmax(0, 1.55fr); gap: clamp(28px, 4vw, 56px); }
.faq-grid > div { min-width: 0; }
.faq-grid h2 { font-size: clamp(32px, 3.5vw, 46px); line-height: 1.15; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 18px 40px 18px 0; cursor: pointer; font-weight: 680; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; margin-right: -30px; color: var(--accent-dark); font-family: var(--sans); font-size: 23px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 790px; padding: 0 34px 18px 0; color: var(--ink-soft); }

.contact {
  padding: 70px 0;
  color: var(--ink);
  background: #e6ecef;
  border-bottom: 1px solid var(--line);
}
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; align-items: start; }
.contact h2 { max-width: 540px; }
.contact .kicker { color: var(--accent-dark); }
.contact .section-intro { color: var(--ink-soft); }
.contact-meta { margin-top: 28px; color: var(--muted); font-size: 14px; }
.contact-meta strong { color: var(--ink); }
.contact-card {
  padding: 28px;
  color: var(--ink);
  background: rgba(252, 253, 254, .76);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
}
.field textarea { min-height: 100px; resize: vertical; }
.form-note { margin: 11px 0 0; color: var(--muted); font-size: 12px; }
.form-status { min-height: 22px; margin: 8px 0 0; color: var(--accent-dark); font-size: 14px; font-weight: 700; }

.site-footer { padding: 20px 0; color: var(--ink-soft); background: #dce4e8; font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 22px; }

@media (max-width: 980px) {
  .choice-copy, .offer-hero-grid { grid-template-columns: 1.05fr .95fr; gap: 42px; }
  .shared-grid { grid-template-columns: 1fr 1fr; }
  .shared-card:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .shared-card:nth-child(4) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n + 2), .service-card:nth-child(3n + 3) { padding-left: 0; border-left: 0; }
  .service-card:nth-child(even) { padding-left: 25px; border-left: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .process-card:nth-child(4) { border-top: 1px solid var(--line); }
  .pricing-layout, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (min-width: 1100px) {
  .accent-word { white-space: nowrap; }
}

@media (max-width: 760px) {
  .wrap { width: min(calc(100% - 30px), var(--max)); }
  body { font-size: 16px; }
  .nav { min-height: 66px; }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    inset: 66px 0 auto 0;
    display: none;
    align-items: stretch;
    padding: 14px 16px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(78, 91, 99, .09);
  }
  .menu-open .nav-links { display: grid; }
  .nav-links a { padding: 11px 3px; font-size: 16px; }
  .nav-links .nav-cta { margin: 7px 0 0; padding: 11px 16px; text-align: center; }
  h1 { font-size: clamp(45px, 13vw, 63px); line-height: 1; letter-spacing: -.045em; }
  h2 { font-size: clamp(36px, 10.5vw, 48px); line-height: 1.05; }
  .choice-hero { padding-top: 48px; }
  .choice-copy, .offer-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-note { max-width: 560px; margin-left: 11%; }
  .path-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .path-card, .path-card-company { min-height: 245px; padding: 24px 0 27px; border-left: 0; }
  .path-card-company { border-top: 1px solid var(--line-strong); }
  .path-card:hover, .path-card-company:hover { padding: 24px 0 27px; }
  .shared, .offer-section, .thinking-section, .contact { padding: 52px 0; }
  .section-head { grid-template-columns: 1fr; gap: 4px; margin-bottom: 28px; }
  .section-head > .kicker { padding-top: 0; }
  .shared-grid, .service-grid, .process-grid { grid-template-columns: 1fr; }
  .shared-card, .shared-card + .shared-card,
  .service-card, .service-card:nth-child(even), .service-card:nth-child(3n + 2), .service-card:nth-child(3n + 3),
  .process-card, .process-card + .process-card, .process-card:nth-child(3), .process-card:nth-child(4) {
    min-height: auto;
    padding: 22px 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .shared-card:last-child, .process-card:last-child { border-bottom: 0; }
  .shared-card span, .service-no, .process-card b { margin-bottom: 15px; }
  .principle { margin: 32px 0 45px 8%; padding-left: 20px; }
  .situations-head { display: block; }
  .situation, .compact-situations .situation { grid-template-columns: 42px 1fr; gap: 14px; }
  .situation h3 { font-size: 24px; }
  .situation p { grid-column: 2; }
  .offer-hero { padding: 49px 0 46px; }
  .hero-checklist { margin-left: 8%; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-item { min-height: 95px; padding: 17px 17px 17px 0; border-bottom: 1px solid var(--line); }
  .quick-item + .quick-item { padding-left: 17px; }
  .quick-item:nth-child(3) { padding-left: 0; border-left: 0; }
  .quick-item:nth-child(4) { border-left: 1px solid var(--line); }
  .service-afterword { font-size: 22px; }
  .pricing-layout { gap: 34px; }
  .price-table th:nth-child(2), .price-table td:nth-child(2) { display: none; }
  .price-table th, .price-table td { padding: 13px 9px; }
  .scanye-box { grid-template-columns: 1fr; gap: 20px; padding: 31px 24px; border-radius: 18px; }
  .faq-grid { grid-template-columns: 1fr; gap: 23px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-card { padding: 23px 19px; border-radius: 18px; }
  .footer-row { flex-direction: column; gap: 6px; }
}

@media (max-width: 440px) {
  .brand-mark { width: 32px; height: 32px; }
  .brand { gap: 8px; font-size: 15px; }
  .brand small { font-size: 9px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item, .quick-item + .quick-item, .quick-item:nth-child(3), .quick-item:nth-child(4) { min-height: auto; padding: 15px 0; border-left: 0; }
  .hero-note, .hero-checklist { margin-left: 0; }
  .aside-price div { display: block; }
  .aside-price dd { margin-top: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .path-card, .path-arrow, .button { transition: none; }
}

/* Rozwinięcie dotychczasowej identyfikacji: chłodne szarości, stalowy błękit,
   cienkie podziały i otwarte sekcje. Bez zmiany kroju i charakteru strony. */
[hidden] { display: none !important; }
.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; }
section[id], main[id], [id='jdg'], [id='spolki'] { scroll-margin-top: 110px; }
.accent-word { white-space: normal; }
.brand small { font-size: 14px; letter-spacing: .045em; text-transform: none; font-weight: 450; }
.nav { gap: 20px; }
.nav-links a { padding: 9px 10px; }
.menu-button { min-width: 90px; min-height: 44px; align-items: center; justify-content: center; gap: 9px; }
.menu-lines { width: 14px; height: 7px; border-top: 1px solid; border-bottom: 1px solid; }
.menu-open .menu-lines { transform: rotate(-45deg); }
.header-contact { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; padding: 0 0 10px; font-size: 14px; }
.eyebrow, .kicker, .aside-kicker, .path-label, .service-no { font-size: 14px; letter-spacing: .08em; }
.choice-hero { padding: 62px 0 0; }
.choice-copy { grid-template-columns: 1.17fr .83fr; gap: 56px; }
.choice-copy h1 { font-size: clamp(48px,5.2vw,70px); }
.hero-note { align-self: start; padding-top: 5px; }
.hero-note > p:first-child { font-size: 19px; }
.hero-principle { margin: 20px 0 25px; color: var(--ink); font-size: 17px; line-height: 1.55; }
.path-grid { margin-top: 48px; }
.path-card { min-height: 260px; }
.path-card h2 { font-size: 37px; }
.path-action { align-items: flex-start; }
.path-action small { display: block; padding-top: 7px; font-size: 14px; line-height: 1.5; font-weight: 450; color: var(--muted); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px 34px; padding: 21px 0 25px; border-top: 1px solid var(--line); font-size: 14px; }
.hero-proof > span { display: flex; gap: 9px; align-items: center; }
.line-icon { width: 23px; height: 23px; flex: 0 0 23px; color: var(--accent-dark); vertical-align: middle; }
.section-action { margin: 28px 0 0; }
.small-note { font-size: 14px; line-height: 1.65; color: var(--muted); }
.situation p + p { margin-top: 9px; }
.situation strong { font-weight: 600; color: var(--ink); }
.process-card .service-no { margin-bottom: 23px; }
.process-card h3 { font-size: 20px; }
.process-card p { font-size: 16px; }
.change-section { background: #e5edf1; }
.change-callout { display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 65px; }
.change-callout h2 { max-width: 690px; }
.change-callout p:last-child { max-width: 680px; margin-bottom: 0; color: var(--ink-soft); }
.change-callout > div:last-child { justify-self: end; }
.button-primary { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.button-primary:hover { background: #425d6c; color: var(--white); }
.button:disabled { opacity: .66; cursor: not-allowed; transform: none; }
.button { min-height: 48px; text-align: center; }
.button-row { align-items: center; }
.reading-width { width: min(calc(100% - 48px), 780px); margin-inline: auto; }
.wrap .reading-width { width: min(100%,780px); }
.vat-note { margin-block: 20px; padding-left: 18px; border-left: 2px solid var(--accent); font-size: 16px; }
.price-table th { font-size: 14px; letter-spacing: 0; text-transform: none; }
.price-table thead th { background: var(--blush); }
.price-table tbody th { font-weight: 500; color: var(--ink); }
.price-table td { font-size: 16px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table td:nth-child(2) { font-weight: 650; }
.price-table td:last-child { font-weight: 450; color: var(--muted); }
.annual-price { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 22px; }
.annual-price p { font-size: 16px; }
.additional-prices p { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; padding: 18px 0; margin: 0; border-top: 1px solid var(--line); font-size: 16px; }
.additional-prices span { text-align: right; }
.pricing-addons { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line-strong); }
.pricing-addons h3 { margin-bottom: 12px; font-size: clamp(24px, 2.5vw, 30px); font-weight: 500; line-height: 1.25; }
.additional-price-list { margin: 22px 0 0; }
.additional-price-row { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 28px; padding: 20px 0; border-top: 1px solid var(--line); }
.additional-price-row:last-child { border-bottom: 1px solid var(--line); }
.additional-price-row dt, .additional-price-row dd { min-width: 0; margin: 0; font-size: 16px; line-height: 1.6; }
.additional-price-row dt { font-weight: 600; }
.additional-price-row strong { color: var(--accent-dark); font-weight: 650; }
.additional-price-row span { display: block; margin-top: 5px; font-weight: 400; color: var(--ink-soft); }
.additional-price-row b { color: var(--ink); font-weight: 550; }
.pricing-addons > p, .pricing-table-note, .pricing-rule p, .pricing-scope-note { font-size: 16px; line-height: 1.65; }
.pricing-table-note { margin-top: 18px; }
.pricing-details { margin-top: 18px; }
.pricing-details + .pricing-details { margin-top: 0; }
.pricing-details summary { font-size: 16px; line-height: 1.5; }
.pricing-details-body { max-width: 850px; padding: 0 0 8px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.pricing-details-body p { max-width: none; padding: 0; margin: 0 0 16px; }
.pricing-details-body ul { padding-left: 23px; margin: 0 0 16px; }
.pricing-details-body li + li { margin-top: 9px; }
.pricing-rule { margin-top: 26px; padding: 24px; background: #e5f0f8; border-left: 3px solid #729bb8; }
.pricing-rule h4 { margin: 0 0 12px; font-size: 18px; font-weight: 600; }
.pricing-rule p:last-child { margin-bottom: 0; }
.pricing-example { margin-top: 16px; }
.pricing-annual { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 36px; padding: 28px; background: #dcecf5; border-top: 2px solid #91b7cc; }
.pricing-annual p { font-size: 16px; line-height: 1.65; }
.pricing-annual .annual-amount { font-size: 24px; font-weight: 600; color: var(--accent-dark); }
.annual-amount span { display: block; margin-top: 6px; font-size: 16px; font-weight: 400; }
.pricing-annual p:last-child { margin-bottom: 0; }
.invoice-example { max-width: 850px; margin-inline: auto; }
.invoice-example .price-table th:first-child { width: auto; }
.invoice-example .price-table td:last-child { font-weight: 600; color: var(--ink); }
.invoice-example .price-table tfoot { border-top: 2px solid var(--line-strong); background: #e5f0f8; }
.invoice-example > p { font-size: 16px; line-height: 1.65; }
.location-note { max-width: 44ch; margin: 14px 0; line-height: 1.6; }
.phone-link { white-space: nowrap; }
.contact-meta { font-size: 16px; }
.contact-meta > p { margin: 5px 0 21px; }
address { font-style: normal; }
.contact-meta > .text-link { display: inline-flex; margin-top: 20px; align-items: center; gap: 8px; }
.direct-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-block: 20px; font-weight: 600; overflow-wrap: anywhere; }
.contact-card h3 { font-size: 24px; font-weight: 550; }
.form-intro { font-size: 16px; color: var(--ink-soft); }
.field label { font-size: 14px; }
.field input, .field select, .field textarea { font-size: 16px; min-height: 48px; }
.field small, .optional, .form-note, .privacy-note { font-size: 14px; line-height: 1.6; }
.optional { font-weight: 400; color: var(--muted); }
.privacy-note { margin: 0 0 20px; color: var(--muted); }
.privacy-note a, .article-body a { text-underline-offset: 3px; text-decoration-thickness: 1px; }
.honey { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.draft-note { padding: 14px 16px; background: #f1eee5; border-left: 2px solid #a89670; color: #625b4b; font-size: 14px; }
.draft-note p:last-child { margin-bottom: 0; }
.form-status { font-size: 15px; }
.form-status.is-error { color: #94453f; }
.compact-hero { padding: 54px 0; background: var(--blush-light); border-bottom: 1px solid var(--line); }
.compact-hero h1 { max-width: 950px; font-size: clamp(40px,4.8vw,64px); }
.compact-hero .page-lead { margin-bottom: 0; }
.location-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; }
.map-panel { min-height: 360px; background: var(--blush-light); border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; }
.map-placeholder { padding: 36px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.map-placeholder .line-icon { width: 32px; height: 32px; margin-bottom: 15px; }
.map-placeholder h3 { margin-bottom: 3px; }
.map-placeholder .small-note { max-width: 360px; margin-top: 19px; margin-bottom: 0; }
.map-panel iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }
.identity-panel { padding: 38px; border: 1px solid var(--line-strong); background: #e9eff2; border-radius: 14px; }
.identity-mark { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 25px; background: var(--accent); color: var(--paper); border-radius: 50%; font-size: 46px; font-weight: 300; }
.identity-panel p { font-size: 23px; line-height: 1.4; }
.identity-panel strong { font-size: 16px; font-weight: 450; }
.identity-panel .text-link { display: inline-block; margin-top: 18px; }
.trust-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.team-grid img { display: block; width: 100%; height: auto; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line-strong); }
.article-card { display: flex; flex-direction: column; padding: 27px 30px 28px 0; text-decoration: none; }
.article-card + .article-card { border-left: 1px solid var(--line); padding-left: 30px; }
.article-card h3 { margin-top: 18px; font-size: 27px; line-height: 1.25; font-weight: 500; }
.article-card p { font-size: 16px; color: var(--ink-soft); }
.article-card .text-link { margin-top: auto; padding-top: 18px; }
.article-card:hover h3 { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.article-hero { padding: 54px 0; background: var(--blush-light); border-bottom: 1px solid var(--line); }
.article-hero .eyebrow { margin-top: 38px; }
.article-hero h1 { font-size: clamp(39px,4.8vw,62px); }
.article-meta { font-size: 14px; margin-top: 20px; color: var(--muted); }
.article-body { font-size: 18px; line-height: 1.8; }
.article-body h2 { margin-top: 42px; margin-bottom: 18px; font-size: 32px; line-height: 1.23; }
.article-body h2:first-child { margin-top: 0; }
.article-body ul { padding-left: 23px; }
.article-body li { margin-bottom: 10px; }
.article-callout { margin-top: 35px; padding: 25px 28px; background: var(--blush); border-left: 2px solid var(--accent); }
.article-callout h3 { font-size: 22px; }
.article-callout p:last-child { margin-bottom: 0; }
.article-end { padding-top: 30px; margin-top: 42px; border-top: 1px solid var(--line); }
.article-end p { font-weight: 550; }
.site-footer { padding: 45px 0 22px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr 1fr; gap: 36px; padding-bottom: 35px; }
.footer-grid > div { min-width: 0; }
.footer-grid h2 { font-size: 16px; font-weight: 650; letter-spacing: 0; margin-bottom: 20px; }
.footer-grid > div > a:not(.brand) { display: block; width: fit-content; margin-bottom: 11px; text-decoration: none; }
.footer-grid > div > a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-grid .brand { margin-bottom: 20px; font-size: 17px; }
.footer-grid p { font-size: 14px; }
.footer-grid address { margin-bottom: 20px; }
.footer-bottom { padding-top: 22px; border-top: 1px solid var(--line-strong); font-size: 14px; flex-wrap: wrap; gap: 12px 24px; }

@media (max-width: 1040px) {
  .nav { min-height: 74px; }
  .menu-button { display: inline-flex; }
  .nav-links { position: absolute; inset: 100% 0 auto; display: none; padding: 14px 24px 24px; background: var(--paper); border-bottom: 1px solid var(--line-strong); box-shadow: 0 20px 26px rgb(78 91 99 / 8%); max-height: calc(100dvh - 130px); overflow-y: auto; }
  .nav-links { max-height: calc(100vh - 130px); max-height: calc(100dvh - 130px); }
  html:not(.js) .nav { flex-wrap: wrap; }
  html:not(.js) .nav-links { position: static; display: flex; flex-wrap: wrap; width: 100%; max-height: none; padding: 0 0 12px; box-shadow: none; }
  html:not(.js) .menu-button { display: none; }
  .menu-open .nav-links { display: grid; }
  .nav-links a { padding: 12px 5px; font-size: 16px; }
  .nav-links .nav-cta { margin: 8px 0 0; text-align: center; }
  .header-contact { justify-content: flex-start; }
  .header-contact a { min-height: 32px; display: inline-flex; align-items: center; }
  .choice-copy { gap: 36px; }
  .change-callout { grid-template-columns: 1fr; gap: 26px; }
  .change-callout > div:last-child { justify-self: start; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; gap: 30px 42px; }
  .location-layout, .trust-layout { gap: 35px; }
}
@media (max-width: 760px) {
  .wrap, .reading-width { width: min(calc(100% - 36px),var(--max)); }
  .nav { min-height: 70px; gap: 12px; }
  .brand small { font-size: 14px; }
  .choice-hero { padding-top: 40px; }
  .choice-copy { grid-template-columns: 1fr; gap: 22px; }
  .choice-copy h1 { font-size: clamp(42px,10.7vw,64px); margin-bottom: 0; }
  .hero-note { margin-left: 0; }
  .hero-note > p:first-child { font-size: 18px; }
  .hero-principle { margin-top: 15px; }
  .path-grid { margin-top: 36px; }
  .path-card, .path-card-company { min-height: auto; }
  .path-card h2 { font-size: 34px; }
  .path-action { margin-top: 18px; }
  .hero-proof { gap: 14px; flex-direction: column; padding-block: 23px; }
  .eyebrow, .kicker, .aside-kicker, .path-label { line-height: 1.55; }
  .section-head { gap: 2px; }
  .section-head h2 { font-size: clamp(33px,8.6vw,46px); }
  .situation, .compact-situations .situation { grid-template-columns: 28px 1fr; gap: 12px; }
  .situation div { grid-column: 2; }
  .situation h3 { font-size: 24px; }
  .offer-hero h1 { font-size: clamp(40px,10vw,61px); line-height: 1.07; }
  .hero-checklist { margin-left: 0; }
  .pricing-layout { gap: 28px; }
  .price-box { overflow-x: auto; }
  .price-table th:nth-child(2), .price-table td:nth-child(2) { display: table-cell; }
  .price-table th, .price-table td { font-size: 14px; padding: 14px 8px; }
  .price-table th:first-child { width: 36%; }
  .price-table td { letter-spacing: -.025em; }
  .price-table th:last-child, .price-table td:last-child { text-align: right; }
  .additional-prices p { grid-template-columns: 1fr; gap: 5px; }
  .additional-prices span { text-align: left; }
  .additional-price-row { grid-template-columns: 1fr; gap: 8px; }
  .pricing-annual { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .pricing-rule { padding: 20px; }
  .location-layout, .trust-layout, .team-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card, .article-card + .article-card { padding: 27px 0; border-left: 0; }
  .article-card + .article-card { border-top: 1px solid var(--line); }
  .article-card h3 { margin-top: 12px; }
  .article-body { font-size: 17px; }
  .article-body h2 { font-size: 29px; }
  .article-callout { padding: 21px; }
  .article-hero { padding: 38px 0; }
  .article-hero h1 { font-size: 40px; }
  .map-placeholder { padding: 28px 22px; }
  .contact-card { padding: 25px 20px; }
  .contact-card .button { width: 100%; }
  .privacy-note { font-size: 14px; }
  .footer-grid { gap: 30px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 380px) {
  .brand { font-size: 15px; }
  .brand small { font-size: 14px; letter-spacing: 0; }
  .menu-button { min-width: 79px; padding: 0 10px; font-size: 14px; }
  .nav { gap: 8px; }
  .button-row { flex-direction: column; align-items: flex-start; }
  .hero-note .button { width: 100%; font-size: 15px; }
  .path-action { font-size: 16px; }
  .price-table th, .price-table td { padding: 12px 5px; }
  .contact-card { padding: 21px 16px; }
}
@media print {
  .site-header, .menu-button, .contact-card, .map-panel, .site-footer, .button-row, .button { display: none; }
  body { background: white; color: #222; font-size: 11pt; }
  h1 { font-size: 30pt !important; } h2 { font-size: 22pt !important; }
  section { break-inside: avoid; padding-block: 20px !important; }
  .wrap { width: 100%; } a { text-decoration: none; }
}

/* OM: jaśniejsze sekcje z wyraźniejszymi akcentami błękitu i turkusu. */
.site-header { background: rgb(248 251 253 / 96%); }
.brand { flex-shrink: 0; }
.brand-logo { display: block; width: 238px; height: auto; aspect-ratio: 5.66; object-fit: cover; object-position: 50% 47.5%; mix-blend-mode: multiply; }
.footer-grid .brand-logo { width: min(250px, 100%); }
.identity-logo { display: block; width: min(100%, 330px); height: auto; aspect-ratio: 5.66; object-fit: cover; object-position: 50% 47.5%; mix-blend-mode: multiply; margin-bottom: 28px; }
.choice-hero { background: #edf5fa; }
.hero-note { border-left: 3px solid #77b0cb; }
.hero-note strong { font-weight: 650; color: #2f637e; }
.path-grid { gap: 20px; border-top: 0; margin-bottom: 24px; }
.path-card, .path-card-company { padding: 28px; border: 1px solid #bdd5e6; border-top: 4px solid #5b9ec6; border-radius: 12px; background: #daeaf7; }
.path-card-company { border-color: #bad7da; border-top-color: #5b9ba3; background: #dceff0; }
.path-card:hover { background: #cde3f3; }
.path-card-company:hover { background: #cce6e8; }
.path-card h2 { font-size: clamp(30px, 3vw, 40px); }
.path-card-company .path-label, .path-card-company .path-action { color: #326771; }
.path-action { border-color: rgb(50 103 130 / 23%); }
.hero-proof { color: #476273; }
.hero-proof .line-icon { color: #317d9e; }
.offer-hero, .compact-hero, .article-hero { background: #e5f0f9; }
.page-company .offer-hero { background: #e1eff0; }
.hero-checklist { border-left: 3px solid #86b6cf; }
.page-company .hero-checklist { border-left-color: #83b7bc; }
.thinking-section { background: #d6e7f4; }
.company-thinking { background: #d8eaee; }
.situation-no { color: #276486; }
.situation { border-bottom-color: rgb(45 101 137 / 23%); }
.situation-list { border-top-color: rgb(45 101 137 / 32%); }
.offer-section { background: #edf4f8; }
.offer-section.white { background: #fbfdff; }
.process-band, .page-company .process-band { background: #e4f1f2; }
.service-no { display: inline-grid; place-items: center; min-width: 34px; height: 34px; border-radius: 9px; background: #d6e9f5; color: #2b6688; font-variant-numeric: tabular-nums; }
.process-card .service-no { background: #cce4e6; color: #356b74; }
.scanye-section { background: #f6fafc; }
.scanye-box { background: #dceef1; border-color: #b8d4da; border-top: 4px solid #69a4b0; }
.change-section { background: #c9dfed; }
.change-section .kicker { color: #2c5e79; }
#faq { background: #edf4f9; }
#faq details { border-color: #bccfdd; }
#faq details[open] { background: rgb(255 255 255 / 65%); }
#faq summary:hover { color: #286789; }
#faq summary::after { color: #2d7aa4; }
#faq details[open] summary, #faq details[open] p { padding-left: 18px; }
.contact { background: #d3e6f0; }
.contact-card { background: #fafdff; border-color: #b6d0e0; }
.contact-card input, .contact-card select, .contact-card textarea { border-color: #7890a0; }
.contact-card input::placeholder, .contact-card textarea::placeholder { color: #536b7b; opacity: 1; }
.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus { outline: 2px solid #4b8fac; outline-offset: 2px; }
.site-footer { background: #c5dce8; border-top: 1px solid #a8c6d7; }
.identity-panel { background: #e0edf5; border-color: #bed5e4; }
.article-callout { background: #deedf7; border-left-color: #4386ac; }
.article-card .kicker { color: #287597; }
.price-table thead th { background: #d9eaf6; }
.price-table tbody tr:hover { background: #e9f3f9; }
.button, .nav-links .nav-cta { border-color: #accada; background: #dcebf5; color: #315f78; }
.button:hover, .nav-links .nav-cta:hover { border-color: #76a8c4; background: #c7dfef; color: #264f66; }
.button-primary { background: #326e92; border-color: #326e92; color: #fff; }
.button-primary:hover { background: #285c7c; border-color: #285c7c; color: #fff; }
.button-light { background: transparent; }
.menu-button { border-color: #aec9d8; color: #315f78; background: rgb(255 255 255 / 65%); }
.choice-copy > *, .offer-hero-grid > *, .section-head > *, .scanye-box > *, .pricing-layout > *, .change-callout > *, .contact-grid > *, .location-layout > *, .trust-layout > * { min-width: 0; }
summary { overflow-wrap: normal; word-break: normal; hyphens: none; }
p, li { text-wrap: pretty; }

/* Najpierw dostosowujemy kolumnę i wielkość liter, nigdy nie przecinamy słowa. */
@media (max-width: 980px) {
  .choice-copy, .offer-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-grid { grid-template-columns: 1fr; gap: 26px; }
  .faq-grid h2 { max-width: 24ch; }
}
@media (max-width: 760px) {
  h1, .choice-copy h1, .offer-hero h1, .compact-hero h1, .article-hero h1 { font-size: clamp(32px, 8.8vw, 54px); line-height: 1.12; }
  h2, .section-head h2, .scanye-box h2, .faq-grid h2 { font-size: clamp(28px, 7.5vw, 40px); line-height: 1.17; }
  .brand-logo { width: 207px; }
  .path-card, .path-card-company, .path-card:hover, .path-card-company:hover { padding: 23px; }
  .path-grid { gap: 16px; }
  .path-card-company { border-top: 4px solid #5b9ba3; }
  .path-card h2 { font-size: clamp(27px, 7.3vw, 34px); line-height: 1.17; }
  .scanye-box { padding: 28px 20px; }
  .situation h3 { font-size: clamp(20px, 5.6vw, 24px); line-height: 1.3; }
}
@media (max-width: 380px) {
  .brand-logo { width: 176px; }
  .scanye-box { padding-inline: 18px; }
  .path-card, .path-card-company, .path-card:hover, .path-card-company:hover { padding: 20px; }
  .footer-grid { column-gap: 18px; }
  .footer-grid h2 { font-size: 15px; }
}
