/* Meetrix — mobile-first, premium B2B */
:root {
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-text: #1d1d1f;
  --color-text-muted: #6e6e73;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-accent: #0071e3;
  --color-accent-hover: #0077ed;
  --color-cta-text: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.04);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --text-hero: clamp(2rem, 5vw + 1rem, 3.25rem);
  --text-h2: clamp(1.5rem, 2.5vw + 0.75rem, 2rem);
  --text-body: 1.0625rem;
  --line-tight: 1.1;
  --line-body: 1.5;
  --header-height: 56px;
  --max-width: 1120px;
  --transition: 0.22s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.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;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
}

.section--tight-top {
  padding-top: var(--space-lg);
}

.section--tight-bottom {
  padding-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--space-2xl);
  }
}

.section__head {
  max-width: 40rem;
  margin-bottom: var(--space-lg);
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
}

.section__title {
  font-size: var(--text-h2);
  line-height: var(--line-tight);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
}

.section__lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
  gap: var(--space-md);
}

.logo {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-expanded="true"] {
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

/* Styl wyróżnionego "Kontakt" w menu wyłączony — jedynym CTA w headerze jest "Umów konsultację".
   Aby przywrócić: odkomentuj poniższe reguły i dodaj klasę nav-link--cta do linku Kontakt. */
/*
.nav-link--cta {
  background: var(--color-accent) !important;
  color: var(--color-cta-text) !important;
  font-weight: 500;
  margin-left: 0.25rem;
}

.nav-link--cta:hover,
.nav-link--cta:focus-visible {
  background: var(--color-accent-hover) !important;
  color: var(--color-cta-text) !important;
  text-decoration: none;
}
*/

.nav-chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  min-width: 220px;
  padding: var(--space-sm);
  margin-top: 0.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition),
    visibility var(--transition);
}

.dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.dropdown a:hover {
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--color-text);
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background var(--transition);
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition);
}

.menu-toggle__bar::before {
  top: -6px;
}

.menu-toggle__bar::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--color-bg);
  z-index: 99;
  padding: var(--space-md);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) {
  .mobile-drawer {
    display: none;
  }
}

.mobile-nav__section {
  margin-bottom: var(--space-lg);
}

.mobile-nav__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__list a {
  display: block;
  padding: 0.75rem 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.mobile-nav__list a:hover {
  color: var(--color-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background var(--transition), transform 0.15s ease,
    box-shadow var(--transition);
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-cta-text);
  box-shadow: 0 1px 4px rgba(0, 113, 227, 0.35);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-cta-text);
}

.btn--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(0, 113, 227, 0.35);
}

.btn--secondary:hover {
  background: rgba(0, 113, 227, 0.06);
  color: var(--color-accent);
}

.btn--header {
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.btn-row--hero {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 480px) {
  .btn-row--hero {
    flex-wrap: nowrap;
  }

  .btn-row--hero .btn {
    flex: 0 1 auto;
    white-space: nowrap;
  }
}

/* ——— Hero ——— */
.hero {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.hero__content {
  max-width: 36rem;
}

.hero__title {
  font-size: var(--text-hero);
  line-height: var(--line-tight);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-md);
}

.hero__text {
  margin: 0;
  font-size: 1.1875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.hero__media {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8e8ed;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  display: block;
}

@media (min-width: 768px) {
  .hero {
    padding-top: var(--space-xl);
  }
}

/* ——— Trust bar ——— */
.trust {
  padding-block: var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.trust__title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0 0 var(--space-md);
}

.trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg) var(--space-xl);
}

.trust__logo {
  font-size: 1rem;
  font-weight: 600;
  color: #86868b;
  letter-spacing: -0.02em;
  user-select: none;
}

/* ——— Slider / horizontal scroll ——— */
.slider {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-md);
  padding-bottom: var(--space-sm);
  margin-inline: calc(-1 * var(--space-md));
  padding-inline: var(--space-md);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.slider::-webkit-scrollbar {
  height: 6px;
}

.slider::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

@media (min-width: 900px) {
  .slider--desktop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    gap: var(--space-md);
  }

  .slider--desktop-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

@media (min-width: 900px) {
  .slider--industries {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

@media (min-width: 1100px) {
  .slider--industries {
    grid-template-columns: repeat(6, 1fr);
  }
}

.card-room,
.card-industry {
  flex: 0 0 min(85vw, 320px);
  scroll-snap-align: start;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

@media (min-width: 900px) {
  .slider--desktop-grid .card-room,
  .slider--desktop-grid .card-industry {
    flex: none;
    width: auto;
  }
}

.card-room:hover,
.card-industry:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

/* Cała karta sali klikalna (zdjęcie, tytuł, opis i link) */
.card-room {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Informacyjne kafelki branż (nieklikalne) */
.card-industry--info,
.card-industry--info:hover {
  box-shadow: var(--shadow-card);
  transform: none;
  cursor: default;
}

.card-room__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex: 0 0 auto;
}

.card-room__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-room__body,
.card-industry__body {
  padding: var(--space-md);
}

.card-room__body {
  flex: 1 1 auto;
}

.card-room__title,
.card-industry__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  letter-spacing: -0.02em;
}

.card-industry__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.card-room__desc {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.card-room__link {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Rozciągnięcie obszaru klikania linku na całą kartę */
.card-room__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.card-room:hover .card-room__link {
  text-decoration: underline;
}

.section__footer-cta {
  margin-top: var(--space-lg);
}

/* Compare / problem-solution */
.compare {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .compare {
    gap: var(--space-lg);
  }
}

.compare__row {
  display: grid;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .compare__row {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-md);
  }
}

.compare__problem {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.compare__problem strong {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.compare__arrow {
  display: none;
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  .compare__arrow {
    display: block;
    justify-self: center;
  }
}

.compare__solution {
  margin: 0;
  font-size: 0.9375rem;
}

.compare__solution strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Features grid */
.features {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.feature h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Knowledge cards */
.knowledge-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .knowledge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.article-card:hover {
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.article-card__thumb {
  aspect-ratio: 16 / 9;
  background: #e8e8ed;
  overflow: hidden;
}

.article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.article-card__more {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
}

.section__title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.section__title-link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.kw-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

@media (min-width: 480px) {
  .kw-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .kw-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
  }
}

.kw-category-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  min-height: 118px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition),
    border-color var(--transition);
}

.kw-category-tile:hover {
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
  border-color: rgba(0, 113, 227, 0.22);
  color: var(--color-text);
}

.kw-category-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0, 113, 227, 0.08);
  color: var(--color-accent);
}

.kw-category-tile__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kw-category-tile__label {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.kw-category-tile__desc {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.kw-soft-cta {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.kw-soft-cta__list {
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
}

.kw-soft-cta__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
}

.kw-soft-cta__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-accent);
}

.kw-soft-cta__list li:last-child {
  margin-bottom: 0;
}

.kw-soft-cta__list a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
}

.kw-soft-cta__list a:hover {
  text-decoration: underline;
}

.kw-soft-cta .kw-cta-row {
  justify-content: center;
  margin-top: var(--space-lg);
}

.kw-topics-list {
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
}

.kw-topics-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.kw-topics-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-text-muted);
}

.kw-topics-list li:last-child {
  margin-bottom: 0;
}

.kw-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.cta-band .kw-cta-row {
  justify-content: center;
  margin-top: 0;
}

.kw-latest-heading {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.kw-breadcrumb {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
}

.kw-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.kw-breadcrumb a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.kw-breadcrumb [aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

.kw-hub-hero .page-hero h1 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.35rem);
}

.kw-hub-hero .page-hero p {
  font-size: 1.125rem;
  max-width: 40rem;
}

.kw-stack-section {
  padding-block: var(--space-xl);
}

.kw-stack-section:first-of-type {
  padding-top: var(--space-lg);
}

.kw-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kw-article-list li {
  border-bottom: 1px solid var(--color-border);
}

.kw-article-list a {
  display: block;
  padding: var(--space-md) 0;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.kw-article-list a:has(.kw-article-list__thumb) {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kw-article-list a:hover {
  color: var(--color-accent);
}

.kw-article-list__thumb {
  flex-shrink: 0;
  width: 5.5rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #e8e8ed;
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .kw-article-list__thumb {
    width: 7rem;
  }
}

.kw-article-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kw-article-list__content {
  flex: 1;
  min-width: 0;
}

.kw-article-list__meta {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.kw-list-soon {
  display: block;
  padding: var(--space-md) 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.kw-prose {
  max-width: 42rem;
}

.kw-prose p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.kw-prose p:last-child {
  margin-bottom: 0;
}

.kw-related {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.kw-related h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.02em;
}

.kw-related p {
  margin: 0 0 var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.kw-related p:last-child {
  margin-bottom: 0;
}

/* —— Artykuł wiedzy (editorial layout) —— */
.kw-article-page {
  background: var(--color-bg);
}

.kw-article-header {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.kw-article-header__inner {
  max-width: 42rem;
  margin-inline: auto;
}

.kw-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 0 0 var(--space-md);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.kw-article-meta__category {
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.kw-article-meta__category:hover {
  color: var(--color-accent);
}

.kw-article-header h1 {
  font-size: clamp(1.625rem, 4vw + 0.5rem, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  color: var(--color-text);
}

.kw-article-hero {
  padding: 0 0 var(--space-lg);
  background: var(--color-surface);
}

.kw-article-hero__figure {
  max-width: 52rem;
  margin-inline: auto;
}

.kw-article-hero__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #ececf0 0%, #e2e2e8 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.kw-article-hero__caption {
  margin: 0.75rem 0 0;
  padding: 0 0.15rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: center;
}

@media (min-width: 768px) {
  .kw-article-hero__caption {
    margin-top: 0.85rem;
    font-size: 0.875rem;
  }
}

.kw-article-hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
}

.kw-article-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kw-article-layout {
  padding-block: var(--space-xl);
}

@media (min-width: 768px) {
  .kw-article-layout {
    padding-block: var(--space-2xl);
  }
}

.kw-article-body {
  max-width: 42rem;
  margin-inline: auto;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .kw-article-body {
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

.kw-article-body > p {
  margin: 0 0 1.5em;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .kw-article-body > p {
    margin-bottom: 1.55em;
  }
}

.kw-article-body > p:last-child {
  margin-bottom: 0;
}

.kw-article-lead {
  margin-bottom: 0.35em;
}

.kw-article-lead > p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text);
}

.kw-article-lead > p:last-child {
  margin-bottom: 1.65em;
}

@media (min-width: 768px) {
  .kw-article-lead > p {
    font-size: 1.1875rem;
    line-height: 1.72;
  }
}

.kw-article-body h2 {
  font-size: clamp(1.375rem, 2vw + 0.75rem, 1.625rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 3.25em 0 1em;
  padding-top: 2.75em;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
}

.kw-article-body h2:first-of-type {
  margin-top: 2.25em;
  padding-top: 0;
  border-top: none;
}

@media (min-width: 768px) {
  .kw-article-body h2 {
    margin-top: 3.75em;
    padding-top: 3em;
  }

  .kw-article-body h2:first-of-type {
    margin-top: 2.5em;
  }
}

.kw-article-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 2em 0 0.65em;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .kw-article-body h3 {
    font-size: 1.125rem;
  }
}

.kw-article-body h2 + h3 {
  margin-top: 1.25em;
}

.kw-article-ul {
  list-style: none;
  margin: 0 0 1.65em;
  padding: 0.15em 0 0.35em;
}

.kw-article-ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.7em;
  color: var(--color-text);
  line-height: 1.68;
}

.kw-article-ul li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.82em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.28);
}

.kw-article-ul li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .kw-article-ul {
    margin-bottom: 1.85em;
    padding-bottom: 0.5em;
  }

  .kw-article-ul li {
    margin-bottom: 0.8em;
    padding-left: 1.45rem;
  }
}

/* Akapit po liście — oddech przed kolejnym blokiem */
.kw-article-ul + p {
  margin-top: 0.15em;
}

.kw-article-pullquote {
  margin: 2em 0;
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-card);
}

.kw-article-pullquote p {
  margin: 0 0 0.5em;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.kw-article-pullquote p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .kw-article-pullquote p {
    font-size: 1.125rem;
  }
}

/* Insight — wyróżnione tezy editorial (boxed, premium, mobile-first) */
.kw-article-insight,
.kw-article-pullquote {
  font-style: normal;
}

.kw-article-insight {
  margin: 2.5em 0;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  background: linear-gradient(168deg, #f7f8fa 0%, #f1f2f5 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .kw-article-insight {
    margin: 3em 0;
    padding: 2rem 1.75rem;
  }
}

.kw-article-insight p {
  margin: 0;
  font-size: clamp(1.125rem, 1.5vw + 0.85rem, 1.3125rem);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--color-text);
}

.kw-article-insight p + p {
  margin-top: 0.85em;
}

.kw-article-insight--prominent {
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(168deg, #f2f6fc 0%, #eef1f6 100%);
  box-shadow: 0 4px 28px rgba(0, 113, 227, 0.07);
}

.kw-article-insight--prominent p {
  font-weight: 600;
}

/* Insight — lżejszy wizualnie (mniej ozdobników, mobile-first) */
.kw-article-insight--subtle {
  margin: 1.65em 0;
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid var(--color-border);
  border-left: 2px solid rgba(0, 113, 227, 0.35);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--color-surface);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.025);
}

@media (min-width: 768px) {
  .kw-article-insight--subtle {
    margin: 2em 0;
    padding: 1.1rem 1.2rem 1.15rem;
  }
}

.kw-article-insight--subtle p {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .kw-article-insight--subtle p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* Lista — ciaśniejszy rytm przy dłuższych zestawieniach */
.kw-article-ul--dense li {
  margin-bottom: 0.55em;
}

@media (min-width: 768px) {
  .kw-article-ul--dense li {
    margin-bottom: 0.62em;
  }
}

/* Notatka „W praktyce” — editorial insert */
.kw-article-note {
  margin: 2.25em 0 2.75em;
  padding: 1.15rem 1.1rem 1.2rem 1.15rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 2px solid rgba(0, 113, 227, 0.35);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.025);
}

@media (min-width: 768px) {
  .kw-article-note {
    margin: 2.5em 0 3em;
    padding: 1.25rem 1.35rem 1.35rem 1.4rem;
  }
}

.kw-article-note__label {
  margin: 0 0 0.55em;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1.3;
}

.kw-article-note p:not(.kw-article-note__label) {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .kw-article-note p:not(.kw-article-note__label) {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* Oddech wokół bloków editorial — rytm scrollowania */
.kw-article-body > p + .kw-article-insight,
.kw-article-body > .kw-article-ul + .kw-article-insight {
  margin-top: 2.75em;
}

.kw-article-insight + p,
.kw-article-insight + ul,
.kw-article-note + h2 {
  margin-top: 0;
}

.kw-article-insight + .kw-article-soft-cta {
  margin-top: 3em;
}

.kw-article-soft-cta + h2 {
  margin-top: 3.5em;
}

@media (min-width: 768px) {
  .kw-article-soft-cta + h2 {
    margin-top: 4em;
  }
}

/* Soft CTA w treści artykułu — konsultacyjny, nie reklamowy */
.kw-article-soft-cta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3em 0;
  padding: 1.5rem 1.25rem 1.35rem;
  background: linear-gradient(175deg, #ffffff 0%, #f8f9fb 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .kw-article-soft-cta {
    margin: 3.25em 0 3.5em;
    padding: 2rem 1.75rem 1.65rem;
  }
}

.kw-article-soft-cta__body p {
  margin: 0 0 0.9em;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .kw-article-soft-cta__body p {
    font-size: 1.0625rem;
    line-height: 1.7;
  }
}

.kw-article-soft-cta__body p:last-child {
  margin-bottom: 0;
}

.kw-article-soft-cta__action {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .kw-article-soft-cta__action {
    margin-top: 1.5rem;
    padding-top: 1.35rem;
  }
}

.kw-article-soft-cta__btn {
  width: 100%;
  margin: 0;
  padding: 0.8rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 480px) {
  .kw-article-soft-cta__btn {
    width: auto;
    max-width: 100%;
  }
}

.kw-article-soft-cta__btn:hover {
  background: rgba(0, 113, 227, 0.06);
  border-color: rgba(0, 113, 227, 0.45);
  color: var(--color-accent);
  text-decoration: none;
}

/* Legacy: soft CTA bez wrapperów (starsze artykuły) */
.kw-article-soft-cta:not(:has(.kw-article-soft-cta__body)) p {
  margin: 0 0 1em;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .kw-article-soft-cta:not(:has(.kw-article-soft-cta__body)) p {
    font-size: 1.0625rem;
    line-height: 1.68;
  }
}

.kw-article-soft-cta:not(:has(.kw-article-soft-cta__body)) p:last-of-type {
  margin-bottom: var(--space-md);
}

.kw-article-soft-cta:not(:has(.kw-article-soft-cta__action)) .kw-article-soft-cta__btn {
  width: 100%;
  margin-top: var(--space-sm);
  padding: 0.75rem 1.35rem;
  font-size: 0.9375rem;
  text-align: center;
}

.kw-article-body a:not(.btn) {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 113, 227, 0.25);
}

.kw-article-body a:not(.btn):hover {
  border-bottom-color: var(--color-accent);
}

.kw-article-aside-link {
  margin: 1.5em 0 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.kw-article-aside-link a {
  font-weight: 500;
}

/* Figury w treści artykułu — ta sama ramka co hero */
.kw-article-figure {
  margin: 2.5em 0;
}

@media (min-width: 768px) {
  .kw-article-figure {
    margin: 3em 0;
  }
}

.kw-article-figure__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #ececf0 0%, #e2e2e8 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.kw-article-figure__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.kw-article-figure--portrait .kw-article-figure__frame {
  max-width: 24rem;
  margin-inline: auto;
}

.kw-article-figure__caption,
.kw-article-gallery__caption {
  margin: 0.75rem 0 0;
  padding: 0 0.15rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: center;
}

@media (min-width: 768px) {
  .kw-article-figure__caption,
  .kw-article-gallery__caption {
    margin-top: 0.85rem;
    font-size: 0.875rem;
  }
}

/* Galeria — kilka zdjęć obok siebie */
.kw-article-gallery {
  margin: 2.5em 0;
}

@media (min-width: 768px) {
  .kw-article-gallery {
    margin: 3em 0;
  }
}

.kw-article-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .kw-article-gallery__grid {
    gap: 0.75rem;
  }
}

.kw-article-gallery__grid .kw-article-figure__frame {
  aspect-ratio: 3 / 4;
}

.kw-article-gallery__grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kw-article-footer {
  max-width: 42rem;
  margin-inline: auto;
  padding-top: var(--space-lg);
}

.kw-article-related {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.kw-article-related h2 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.kw-article-related__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kw-article-related__links li {
  border-bottom: 1px solid var(--color-border);
}

.kw-article-related__links li:last-child {
  border-bottom: none;
}

.kw-article-related__links a {
  display: block;
  padding: var(--space-sm) 0;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border: none;
  transition: color var(--transition);
}

.kw-article-related__links a:hover {
  color: var(--color-accent);
}

.kw-article-materials {
  margin-bottom: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.kw-article-materials h2 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.kw-article-materials .kw-article-list li {
  border-bottom-color: color-mix(in srgb, var(--color-border) 72%, transparent);
}

.kw-article-materials .kw-article-list li:last-child {
  border-bottom: none;
}

.kw-article-materials .kw-article-list a {
  padding: var(--space-sm) var(--space-xs);
  margin-inline: calc(var(--space-xs) * -1);
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background-color var(--transition);
}

.kw-article-materials .kw-article-list a:hover {
  color: var(--color-text);
  background-color: var(--color-surface);
}

.kw-article-materials .kw-article-list__thumb {
  width: 4.25rem;
}

@media (min-width: 768px) {
  .kw-article-materials .kw-article-list__thumb {
    width: 5.25rem;
  }
}

.kw-article-materials .kw-article-list__content {
  font-size: 0.9375rem;
  line-height: 1.45;
}

.kw-article-page .cta-band {
  text-align: left;
}

@media (min-width: 640px) {
  .kw-article-page .cta-band {
    text-align: center;
  }

  .kw-article-page .cta-band p {
    margin-inline: auto;
  }

  .kw-article-page .cta-band .kw-cta-row {
    justify-content: center;
  }
}

.kw-article-page .cta-band .kw-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* Case spotlight */
.spotlight {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .spotlight {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-xl);
  }
}

.spotlight__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8e8ed;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}

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

.spotlight__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
}

.stat {
  flex: 1 1 200px;
  min-width: 0;
}

.stat__value {
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-accent);
  overflow-wrap: break-word;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.cta-band h2 {
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
}

.cta-band p {
  margin: 0 auto var(--space-md);
  max-width: 28rem;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  margin-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  }
}

.footer-brand p {
  margin: var(--space-sm) 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  max-width: 16rem;
}

.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col span {
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.social-link {
  color: var(--color-text);
  font-weight: 500;
}

.social-link--placeholder {
  color: var(--color-text-muted);
  cursor: default;
  user-select: none;
}

/* Placeholder page */
.page-hero {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.page-hero h1 {
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
}

.page-hero p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 36rem;
}

.placeholder-block {
  padding: var(--space-xl) 0;
  min-height: 40vh;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ——— Solution pages (sala konferencyjna, etc.) ——— */
.sol-breadcrumb {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
}

.sol-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.sol-breadcrumb a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.sol-breadcrumb [aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

.sol-hero {
  padding-top: var(--space-md);
  padding-bottom: var(--space-xl);
}

.sol-hero__inner {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .sol-hero__inner {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: var(--space-xl);
  }
}

.sol-hero__title {
  font-size: var(--text-hero);
  line-height: var(--line-tight);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-md);
}

.sol-hero__lead {
  margin: 0 0 var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.sol-hero__note {
  margin: 0 0 var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-left: var(--space-md);
  border-left: 3px solid rgba(0, 113, 227, 0.35);
}

.sol-hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8e8ed;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.sol-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-split {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

.sol-split__media,
.sol-split__figure {
  order: 2;
}

@media (min-width: 900px) {
  .sol-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }

  .sol-split__media,
  .sol-split__figure {
    order: -1;
  }

  .sol-split--reverse .sol-split__figure,
  .sol-split--reverse .sol-split__media {
    order: 2;
  }
}

.sol-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8e8ed;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}

.sol-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-split__figure {
  margin: 0;
}

.sol-split__caption {
  margin: 0.75rem 0 0;
  padding: 0 0.15rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: center;
}

@media (min-width: 768px) {
  .sol-split__caption {
    margin-top: 0.85rem;
    font-size: 0.875rem;
  }
}

.sol-prose p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.sol-prose p:last-child {
  margin-bottom: 0;
}

.sol-prose ul {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
}

.sol-prose ul li {
  position: relative;
  padding-left: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.sol-prose ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(0, 0, 0, 0.22);
}

.sol-prose ul li:last-child {
  margin-bottom: 0;
}

.sol-components {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .sol-components {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sol-components {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Strona O nas — hero bez grafiki: jedna kolumna treści */
.about-page .sol-hero__inner {
  grid-template-columns: 1fr;
  max-width: 44rem;
}

@media (min-width: 900px) {
  .about-page .sol-hero__inner {
    grid-template-columns: 1fr;
  }
}

/* Strona O nas — 4 wartości: 1 → 2 (tablet) → 4 kolumny (desktop) */
@media (min-width: 640px) {
  .sol-components.sol-components--about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sol-components.sol-components--about-values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.sol-component {
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.sol-component:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 113, 227, 0.18);
}

.sol-component__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0, 113, 227, 0.08);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.sol-component__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sol-component h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  letter-spacing: -0.02em;
}

.sol-component h3 a {
  color: inherit;
  text-decoration: none;
}

.sol-component h3 a:hover {
  color: var(--color-accent);
}

.sol-component p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.sol-soft-cta {
  padding: var(--space-lg);
  background: linear-gradient(
    135deg,
    rgba(0, 113, 227, 0.06) 0%,
    rgba(0, 113, 227, 0.02) 100%
  );
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: var(--radius-lg);
  text-align: center;
}

.sol-soft-cta p {
  margin: 0 auto var(--space-md);
  max-width: 36rem;
  font-size: 1.0625rem;
  color: var(--color-text);
  line-height: 1.55;
}

.sol-hero__cta {
  margin: var(--space-lg) 0 0;
}

.sol-section-cta {
  margin-top: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(0, 113, 227, 0.04) 0%,
    rgba(0, 113, 227, 0.01) 100%
  );
  border: 1px solid rgba(0, 113, 227, 0.1);
  border-radius: var(--radius-lg);
}

.sol-section-cta__text {
  margin: 0 auto var(--space-md);
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-text);
}

.sol-section-cta__btn {
  margin-top: 0.25rem;
}

.sol-types {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .sol-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sol-type {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sol-type__current-label {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  cursor: default;
}

.sol-type:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.sol-type h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  letter-spacing: -0.02em;
}

.sol-type p {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.sol-type__link {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.sol-problems {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .sol-problems {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }
}

.sol-problems-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sol-problems-list li {
  display: block;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-wrap: pretty;
}

.sol-problems-list li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  margin-right: 0.625rem;
  border-radius: 50%;
  background: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}

/* Desktop: przywrócenie oryginalnego układu flex (bez zmian wizualnych) */
@media (min-width: 900px) {
  .sol-problems-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }

  .sol-problems-list li::before {
    flex: 0 0 auto;
    margin-right: 0;
    vertical-align: baseline;
  }
}

.sol-problems-list li:nth-child(even)::before {
  background: #e85d04;
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.16);
}

.sol-problems-list li:nth-child(3n)::before {
  background: #d62828;
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.14);
}

.sol-problems-list__link {
  display: inline;
  font-weight: inherit;
  color: rgba(0, 113, 227, 0.72);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.sol-problems-list__link:hover {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0, 113, 227, 0.38);
}

.sol-prose .sol-problems-list__link {
  white-space: normal;
}

.sol-problems__outcome {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.sol-problems__outcome--solution {
  border-color: rgba(0, 113, 227, 0.28);
  box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.06);
}

.sol-problems__idea-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
  background: rgba(0, 113, 227, 0.08);
  color: var(--color-accent);
}

.sol-problems__idea-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sol-problems__outcome p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-text);
}

.sol-problems__outcome p strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

/* Process flow — compact vertical / horizontal diagram */
.sol-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.sol-process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm) var(--space-md);
  padding: var(--space-md) 0;
  position: relative;
}

.sol-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(0, 113, 227, 0.45),
    rgba(0, 113, 227, 0.12)
  );
}

.sol-process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-cta-text);
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 1;
  flex-shrink: 0;
}

.sol-process__body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.sol-process__body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

@media (min-width: 900px) {
  .sol-process {
    flex-direction: row;
    gap: 0;
    padding-top: var(--space-sm);
  }

  .sol-process__step {
    flex: 1;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 var(--space-xs);
    gap: var(--space-sm);
  }

  .sol-process__step:not(:last-child)::after {
    left: auto;
    right: -50%;
    top: 16px;
    bottom: auto;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(0, 113, 227, 0.45),
      rgba(0, 113, 227, 0.12)
    );
    transform: translateX(50%);
    z-index: 0;
  }

  .sol-process__num {
    margin-inline: auto;
  }
}

.sol-industries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
}

.sol-industries a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 980px;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.sol-industries a:hover {
  border-color: rgba(0, 113, 227, 0.35);
  box-shadow: var(--shadow-card);
  color: var(--color-accent);
  text-decoration: none;
}

.sol-industries + .sol-prose {
  margin-top: calc(var(--space-md) + var(--space-xs));
}

/* Huddle room — dynamic, fast-paced solution page */
.sol-page--huddle .sol-hero__media {
  aspect-ratio: 16 / 10;
}

.sol-page--huddle .sol-hero__note {
  border-left-color: rgba(0, 113, 227, 0.5);
}

.sol-page--huddle .sol-soft-cta {
  margin-top: var(--space-xl);
}

.sol-page--huddle .sol-soft-cta p {
  margin-bottom: 0;
}

.sol-prose--pace {
  margin-top: var(--space-md);
  padding: var(--space-md);
  padding-left: var(--space-md);
  border-left: 3px solid rgba(0, 113, 227, 0.35);
  background: rgba(0, 113, 227, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.sol-prose--pace p {
  margin: 0;
  color: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  .sol-page--huddle .sol-components--dynamic .sol-component {
    opacity: 0;
    transform: translateY(12px);
  }

  .sol-page--huddle .sol-components--dynamic.is-visible .sol-component {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.45s ease,
      transform 0.45s ease,
      box-shadow var(--transition),
      border-color var(--transition);
  }

  .sol-page--huddle .sol-components--dynamic.is-visible .sol-component:nth-child(1) {
    transition-delay: 0.05s;
  }

  .sol-page--huddle .sol-components--dynamic.is-visible .sol-component:nth-child(2) {
    transition-delay: 0.1s;
  }

  .sol-page--huddle .sol-components--dynamic.is-visible .sol-component:nth-child(3) {
    transition-delay: 0.15s;
  }

  .sol-page--huddle .sol-components--dynamic.is-visible .sol-component:nth-child(4) {
    transition-delay: 0.2s;
  }

  .sol-page--huddle .sol-components--dynamic.is-visible .sol-component:nth-child(5) {
    transition-delay: 0.25s;
  }

  .sol-page--huddle .sol-components--dynamic.is-visible .sol-component:nth-child(6) {
    transition-delay: 0.3s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sol-page--huddle .sol-components--dynamic .sol-component {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1024px) {
  .sol-page--huddle .sol-components--dynamic {
    grid-template-columns: repeat(6, 1fr);
  }

  .sol-page--huddle .sol-components--dynamic .sol-component:nth-child(1),
  .sol-page--huddle .sol-components--dynamic .sol-component:nth-child(2) {
    grid-column: span 3;
  }

  .sol-page--huddle .sol-components--dynamic .sol-component:nth-child(3),
  .sol-page--huddle .sol-components--dynamic .sol-component:nth-child(4),
  .sol-page--huddle .sol-components--dynamic .sol-component:nth-child(5) {
    grid-column: span 2;
  }

  .sol-page--huddle .sol-components--dynamic .sol-component:nth-child(6) {
    grid-column: span 6;
  }
}

/* FAQ accordion */
.sol-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 42rem;
}

.sol-faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.sol-faq details[open] {
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 113, 227, 0.2);
}

.sol-faq summary {
  padding: var(--space-md);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.sol-faq summary::-webkit-details-marker {
  display: none;
}

.sol-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.08);
  color: var(--color-accent);
  font-size: 1.125rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.sol-faq details[open] summary::after {
  content: "−";
}

.sol-faq__answer {
  padding: 0 var(--space-md) var(--space-md);
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ——— Kontakt (/kontakt) ——— mobile first */
.contact-page .contact-section {
  padding-block: var(--space-lg);
}

@media (min-width: 768px) {
  .contact-page .contact-section {
    padding-block: var(--space-xl);
  }
}

.contact-section--hero {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.contact-page .contact-section--hero .hero__title {
  margin-bottom: var(--space-md);
}

.contact-form-split {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-lg);
}

.contact-form-sidebar .section__eyebrow {
  margin-bottom: var(--space-xs);
}

.contact-form-sidebar__title {
  font-size: clamp(1.35rem, 3vw + 0.35rem, 2rem);
  line-height: var(--line-tight);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-xs);
}

.contact-form-sidebar__hint {
  margin: 0 0 var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 22rem;
}

.contact-dl.contact-dl--sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-dl__item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}

.contact-dl__label {
  margin: 0 0 var(--space-xs);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-dl__value {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.45;
}

.contact-dl__link {
  color: var(--color-accent);
  text-decoration: none;
  word-break: break-word;
}

.contact-dl__link:hover {
  text-decoration: underline;
}

.contact-dl__addr br {
  line-height: 1.55;
}

.contact-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: var(--space-lg);
  }

  .contact-form-split {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    align-items: start;
    gap: var(--space-xl);
  }

  .contact-form-sidebar {
    padding-top: 0.125rem;
    position: sticky;
    top: calc(var(--header-height) + var(--space-md));
    align-self: start;
  }

  .contact-form-sidebar__hint {
    margin-bottom: var(--space-md);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-field__label {
  font-size: 0.875rem;
}

.contact-field__hint {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: -0.1rem;
  line-height: 1.45;
}

.contact-form input[type="text"],
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-weight: 400;
  padding: 0.7rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  min-height: 3rem;
}

.contact-form textarea {
  min-height: 8rem;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(0, 0, 0, 0.14);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: rgba(0, 113, 227, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.contact-form__submit {
  align-self: flex-start;
}

.contact-form__note {
  margin: 0;
  padding-top: var(--space-xs);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  max-width: 36rem;
  line-height: 1.5;
}

.contact-form__note a {
  font-weight: 500;
}

.contact-section--muted {
  border-block: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.55);
}

.section__head--wide {
  max-width: none;
}

.contact-solutions__label {
  margin: var(--space-lg) 0 var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.contact-solutions__list {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 1.375rem;
  display: grid;
  gap: 0.35rem;
}

.contact-solutions__list li {
  margin: 0;
  padding: 0.2rem 0 0.2rem 0.35rem;
  line-height: 1.45;
}

.contact-solutions__list li::marker {
  color: rgba(0, 113, 227, 0.5);
}

.contact-solutions__list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: inline;
  transition: color var(--transition);
}

.contact-solutions__list a:hover {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0, 113, 227, 0.35);
}

.contact-solutions__list a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.contact-solutions__footnote {
  margin: var(--space-lg) 0 0;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--color-text-muted);
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  .contact-solutions__list a {
    transition: none;
  }
}

/* ——— Rozwiązania hub (/rozwiazania/) ——— */
.sol-hub-page .sol-hero__inner {
  grid-template-columns: 1fr;
  max-width: 44rem;
}

@media (min-width: 900px) {
  .sol-hub-page .sol-hero__inner {
    grid-template-columns: 1fr;
  }
}

.sol-hub-prose {
  max-width: 42rem;
}

.sol-hub-prose .section__title {
  max-width: none;
}

@media (min-width: 1024px) {
  .sol-types--hub {
    grid-template-columns: repeat(3, 1fr);
  }
}

a.sol-type {
  text-decoration: none;
  color: inherit;
}

a.sol-type:hover h3 {
  color: var(--color-accent);
}

a.sol-type:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.kw-article-cards {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .kw-article-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.kw-article-card {
  display: block;
  min-width: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.kw-article-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 113, 227, 0.18);
}

.kw-article-card__surface {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-md);
  color: inherit;
  text-decoration: none;
}

.kw-article-card__surface:hover {
  text-decoration: none;
}

.kw-article-card__surface:focus-visible {
  outline: none;
}

.kw-article-card:has(.kw-article-card__surface:focus-visible) {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.kw-article-card--soon {
  opacity: 0.88;
}

.kw-article-card__tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.kw-article-card__title {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-xs);
  line-height: 1.35;
  color: var(--color-text);
}

.kw-article-card__surface p {
  display: block;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  flex: 1;
  line-height: 1.55;
}

.kw-article-card__link {
  display: block;
  margin-top: var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
}
