/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  color-scheme: light;
  --primary: #b94724;
  --primary-accent: #d85a30;
  --primary-light: #faece7;
  --primary-dark: #8f3018;
  --text: #25282a;
  --text-secondary: #5f656a;
  --text-light: #687077;
  --bg: #f0f3f6;
  --bg-secondary: #ffffff;
  --surface-subtle: #e7ebef;
  --surface-warm: #f6f2ed;
  --surface-deep: #293035;
  --border: #d8dee4;
  --border-light: #e4e9ee;
  --dark: #24282b;
  --dark-secondary: #2d3236;
  --dark-text: #ffffff;
  --dark-muted: #d0cec8;
  --shadow-sm: 0 8px 22px rgba(31, 42, 51, 0.06);
  --shadow-md: 0 16px 38px rgba(31, 42, 51, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1100px;
  --container-narrow: 760px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.copy-phone {
  display: inline-grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch;
  min-height: 42px; margin: 0; padding: 0; overflow: hidden;
  color: var(--text); background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: 9px;
  font: inherit; line-height: 1.4; cursor: pointer;
  vertical-align: middle; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.copy-phone:hover { border-color: var(--primary); box-shadow: 0 5px 14px rgba(143, 48, 24, 0.1); }
.copy-phone:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.copy-phone__number {
  display: inline-flex; align-items: center; padding: 0.55rem 0.8rem;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.copy-phone__action {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.55rem 0.8rem; border-left: 1px solid var(--border);
  background: #f3f6f8; color: var(--primary); font-size: 0.78rem; font-weight: 700;
}
.copy-phone:hover .copy-phone__action { background: var(--primary-light); }
.copy-phone.is-copied { border-color: #6f927b; }
.copy-phone.is-copied .copy-phone__action { background: #e9f3ec; color: #426a50; }
.copy-phone.is-error { border-color: var(--primary); }
.copy-phone__status {
  display: inline-block; min-width: 1px; min-height: 1.3em;
  color: var(--text-secondary); font-size: 0.8125rem;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: var(--container-narrow); }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-size: 0.9375rem; font-weight: 500; cursor: pointer;
  border: 1px solid transparent; transition: all 0.2s;
  text-decoration: none;
}
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 8px 18px rgba(143, 48, 24, 0.18); }
.btn--primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn--outline { background: rgba(255,255,255,0.6); color: var(--text); border-color: var(--border); }
.btn--outline:hover { background: var(--bg-secondary); border-color: var(--text-secondary); text-decoration: none; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 248, 250, 0.92); border-bottom: 1px solid rgba(207, 215, 221, 0.86);
  box-shadow: 0 8px 30px rgba(31, 42, 51, 0.055);
  backdrop-filter: blur(16px);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 1.25rem;
}
.header__logo {
  display: flex; align-items: center; gap: 0.75rem; flex: 0 0 auto;
  text-decoration: none; color: var(--text);
}
.header__logo-img {
  height: 44px; width: 44px;
}
.header__logo-copy { display: flex; flex-direction: column; line-height: 1; }
.header__logo-copy strong { font-size: 1rem; font-weight: 750; letter-spacing: 0.035em; }
.header__logo-copy small {
  margin-top: 0.35rem; color: var(--text-secondary);
  font-size: 0.61rem; font-weight: 600; letter-spacing: 0.075em; text-transform: uppercase;
}
.header__nav {
  display: flex; gap: 0.15rem; padding: 0.3rem;
  border: 1px solid #d8e0e6; border-radius: 999px;
  background: rgba(229, 234, 238, 0.84);
}
.header__nav-link {
  position: relative; padding: 0.55rem 0.72rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 650; color: #535b61;
  text-decoration: none; transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.header__nav-link:hover { color: var(--text); background: rgba(255,255,255,0.7); text-decoration: none; }
.header__nav-link--active {
  padding-left: 1.35rem; color: var(--text); background: #fff;
  box-shadow: 0 3px 10px rgba(31, 42, 51, 0.1); text-decoration: none;
}
.header__nav-link--active::before {
  content: ""; position: absolute; left: 0.7rem; top: 50%;
  width: 0.38rem; height: 0.38rem; border-radius: 50%;
  background: var(--primary-accent); transform: translateY(-50%);
}
.header__phone {
  display: inline-flex; align-items: center; gap: 0.5rem; flex: 0 0 auto;
  min-height: 42px; padding: 0.5rem 0.8rem; border-radius: 999px;
  background: var(--dark); color: #fff; box-shadow: 0 7px 16px rgba(31, 35, 38, 0.15);
  font-size: 0.79rem; font-weight: 650; text-decoration: none; white-space: nowrap;
}
.header__phone svg { width: 17px; height: 17px; color: #ff7b50; }
.header__phone:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }

/* Burger */
.header__burger { display: none; position: relative; background: none; border: none; cursor: pointer; padding: 4px; }
.header__burger span {
  position: absolute; left: 50%; top: 50%;
  display: block; width: 21px; height: 2px;
  background: var(--text); margin: 0; border-radius: 999px;
  transform-origin: center; transition: transform 0.22s ease, opacity 0.16s ease, background 0.2s ease;
}
.header__burger span:nth-child(1) { transform: translate(-50%, -7px); }
.header__burger span:nth-child(2) { transform: translate(-50%, -1px); }
.header__burger span:nth-child(3) { transform: translate(-50%, 5px); }
.header__burger.active span:nth-child(1) { transform: translate(-50%, -1px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translate(-50%, -1px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: flex; position: absolute; top: calc(100% + 0.5rem); right: 1rem; left: 1rem;
  max-width: 420px; margin-left: auto;
  visibility: hidden; opacity: 0; pointer-events: none;
  transform: translateY(-10px);
  background: #fff; z-index: 101; padding: 0.75rem 1rem 1rem;
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(31, 42, 51, 0.24);
  flex-direction: column; gap: 0.75rem;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.mobile-menu.active { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 600; color: var(--text); padding: 0.8rem 0.65rem;
  border-bottom: 1px solid var(--border-light); text-decoration: none;
}
.mobile-menu__link::after { content: "→"; color: var(--text-muted); font-weight: 500; }
.mobile-menu__link--active { border-radius: 9px; background: var(--primary-light); color: var(--primary-dark); }
.mobile-menu__link--active::after { color: var(--primary); }
.mobile-menu__phone {
  display: flex; align-items: center; justify-content: center;
  min-height: 46px; border-radius: 9px; background: var(--primary); color: #fff;
  font-size: 1rem; font-weight: 650; margin-top: 0.25rem; text-decoration: none;
}

/* ===== HERO ===== */
.hero { padding: 3.25rem 1.25rem 3.5rem; }
.hero__inner {
  position: relative; overflow: hidden; min-height: 560px;
  display: flex; align-items: center;
  padding: 4.5rem; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px; box-shadow: 0 28px 64px rgba(31, 42, 51, 0.18);
  background: var(--dark); color: var(--dark-text);
  isolation: isolate;
}
.hero__content { position: relative; z-index: 2; width: 54%; }
.hero__badge {
  display: inline-block; background: rgba(250, 236, 231, 0.96); color: var(--primary-dark);
  font-size: 0.75rem; padding: 0.3rem 0.9rem; border-radius: 20px;
  margin-bottom: 1.1rem; font-weight: 650; letter-spacing: 0.025em;
}
.hero__title {
  max-width: 540px; font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 720; letter-spacing: -0.04em; line-height: 1.06;
  margin-bottom: 1.25rem;
}
.hero__text {
  font-size: 1.0625rem; color: #d3d3d3;
  max-width: 520px; margin: 0 0 1.75rem; line-height: 1.65;
}
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__meta {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem; padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.76); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.035em;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 1rem; }
.hero__meta span:not(:last-child)::after {
  content: ""; width: 3px; height: 3px; border-radius: 50%; background: #ff8a63;
}
.hero .btn--outline {
  background: rgba(255,255,255,0.06); color: #fff;
  border-color: rgba(255,255,255,0.38); box-shadow: none;
}
.hero .btn--outline:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.72); }
.hero__media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 35, 38, 0.94) 0%,
    rgba(31, 35, 38, 0.82) 36%,
    rgba(31, 35, 38, 0.48) 56%,
    rgba(31, 35, 38, 0.08) 82%
  );
  pointer-events: none;
}
.hero__image {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) brightness(1.04);
  transition: transform 0.5s ease;
}
.hero__media:hover .hero__image { transform: scale(1.02); }

/* ===== STATS ===== */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-secondary); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item {
  padding: 1.25rem 1rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
.stats__number { font-size: 1.5rem; font-weight: 600; color: var(--primary); }
.stats__label { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 0.125rem; }

/* ===== SERVICES HOME ===== */
.services-home {
  padding: 4rem 0 4.25rem;
  border-top: 1px solid rgba(216, 222, 228, 0.7);
  border-bottom: 1px solid rgba(216, 222, 228, 0.8);
  background: var(--bg-secondary);
}
.services-home .container {
  padding-right: 1.25rem; padding-left: 1.25rem;
}
.services-home__header {
  display: flex; align-items: end; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.6rem;
}
.section-eyebrow {
  margin-bottom: 0.35rem; color: var(--primary);
  font-size: 0.72rem; font-weight: 750; letter-spacing: 0.11em; text-transform: uppercase;
}
.services-home__count {
  margin-bottom: 0.25rem; padding: 0.38rem 0.7rem;
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--text-secondary); background: #f7f8f9;
  font-size: 0.75rem; font-weight: 600;
}
.services-home h2,
.blog-home__header h2 {
  font-size: 1.75rem; font-weight: 720; line-height: 1.15; letter-spacing: -0.025em;
}
.services-home h2::before,
.blog-home__header h2::before {
  display: none;
}
.services-home__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.service-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--bg-secondary); border-radius: 15px;
  border: 1px solid #e2e7eb;
  text-decoration: none; color: var(--text);
  box-shadow: 0 1px 0 rgba(31, 42, 51, 0.025);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(31, 42, 51, 0.1);
  border-color: #cfd7dd; text-decoration: none;
}
.service-card__media {
  overflow: hidden; aspect-ratio: 16 / 9;
  background: var(--border-light);
}
.service-card__image {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.service-card:hover .service-card__image { transform: scale(1.035); filter: saturate(0.96) contrast(1.02); }
.service-card__body {
  display: flex; flex: 1; flex-direction: column;
  padding: 1.2rem 1.2rem 1.3rem;
  border-top: 0;
}
.service-card__title {
  font-size: 1.0625rem; font-weight: 650; line-height: 1.35;
  margin-bottom: 0.5rem; color: var(--text);
}
.service-card__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55; }
.service-card__price { font-size: 0.875rem; color: var(--primary); margin-top: 0.5rem; font-weight: 500; }
.service-card__link {
  margin-top: auto; padding-top: 1rem;
  color: var(--primary); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.015em;
}

/* ===== EXPERIENCE HOME ===== */
.experience-home { padding: 0 0 3rem; }
.experience-home .container {
  padding: 2.25rem;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 22px;
  background: linear-gradient(135deg, #252b2f 0%, #32393e 58%, #3a4146 100%);
  box-shadow: 0 24px 54px rgba(31, 42, 51, 0.16); color: #fff;
}
.experience-home__header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.25rem;
}
.experience-home__header h2 { max-width: 720px; font-size: 1.65rem; line-height: 1.25; }
.experience-home__header > p { color: rgba(255,255,255,0.68); line-height: 1.65; }
.experience-home__eyebrow {
  margin-bottom: 0.55rem;
  color: #ff9a78;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.experience-home__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.experience-card {
  min-height: 190px;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.055);
  box-shadow: none;
}
.experience-card span { color: #ff9a78; font-size: 0.78rem; font-weight: 650; }
.experience-card h3 { margin: 0.7rem 0 0.65rem; font-size: 1.05rem; line-height: 1.35; }
.experience-card p { color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.6; }

/* ===== BLOG HOME ===== */
.blog-home { padding: 3.75rem 0 4.25rem; }
.blog-home__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.blog-home__all { font-size: 0.875rem; color: var(--primary); }
.blog-home__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

.blog-card {
  position: relative;
  border: 1px solid #dce3e8; border-radius: 12px;
  padding: 1.35rem 1.4rem; text-decoration: none; color: var(--text);
  background: var(--bg-secondary); box-shadow: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: #cbd5dc; background: #fff;
  box-shadow: 0 16px 34px rgba(31, 42, 51, 0.09);
  transform: translateY(-2px);
  text-decoration: none;
}
.blog-card__price { font-size: 0.8125rem; color: var(--primary); font-weight: 500; margin-bottom: 0.375rem; }
.blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.blog-card:hover .blog-card__title { color: var(--primary-dark); }
.blog-card__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.blog-card__topic {
  display: inline-flex;
  margin-bottom: 0.625rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

.blog-tools {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
}
.blog-search { display: grid; gap: 0.375rem; }
.blog-search__label { font-size: 0.8125rem; font-weight: 600; color: var(--text-secondary); }
.blog-search__input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-secondary);
  color: var(--text);
  font: inherit;
}
.blog-search__input:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-filter {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
  font: inherit;
  font-size: 0.8125rem;
}
.blog-filter span { color: var(--text-light); }
.blog-filter:hover, .blog-filter.is-active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.blog-tools__summary, .blog-tools__fallback, .blog-empty {
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.blog-empty { padding: 2rem; text-align: center; }
/* ===== CTA ===== */
.cta { padding: 3rem 0; }
.cta__inner {
  background: linear-gradient(135deg, var(--dark) 0%, #373d42 100%); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center; color: #fff;
  box-shadow: var(--shadow-md);
}
.cta__title { font-size: 1.375rem; font-weight: 600; margin-bottom: 0.375rem; }
.cta__text { font-size: 0.9375rem; opacity: 0.85; margin-bottom: 1.75rem; }
.cta__actions {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem;
  width: min(100%, 760px); margin: 0 auto;
}
.cta__action-wrap { position: relative; min-width: 0; }
.cta__action {
  display: flex; align-items: center; gap: 0.85rem; width: 100%; min-height: 68px;
  padding: 0.8rem 1rem; border: 1px solid rgba(255,255,255,0.22); border-radius: 12px;
  color: #fff; background: rgba(255,255,255,0.08);
  font: inherit; text-align: left; text-decoration: none; cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.cta__action:hover {
  transform: translateY(-1px); border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.14); text-decoration: none;
}
.cta__action:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.cta__action--phone {
  border-color: var(--primary-accent); background: var(--primary-accent);
  box-shadow: 0 9px 22px rgba(0,0,0,0.2);
}
.cta__action--phone:hover { border-color: #ec6a3e; background: #ec6a3e; }
.cta__action--telegram { border-color: rgba(71,169,235,0.55); background: rgba(34,158,217,0.16); }
.cta__action--max { height: 100%; appearance: none; }
.cta__action-icon {
  display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px;
  border-radius: 11px; background: rgba(255,255,255,0.13);
}
.cta__action--phone .cta__action-icon { background: rgba(255,255,255,0.18); }
.cta__action-icon svg { width: 24px; height: 24px; }
.cta__action-icon--max {
  color: #fff; background: linear-gradient(135deg, #6d65ff, #a747e4);
  font-size: 1.05rem; font-weight: 800;
}
.cta__action-copy { min-width: 0; }
.cta__action-copy strong, .cta__action-copy > span {
  display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cta__action-copy strong { font-size: 0.94rem; line-height: 1.3; }
.cta__action-copy > span { margin-top: 0.15rem; color: rgba(255,255,255,0.72); font-size: 0.78rem; line-height: 1.35; }
.cta .copy-phone__action {
  display: block; padding: 0; border: 0; background: transparent;
  color: rgba(255,255,255,0.72); font-size: 0.78rem; font-weight: 400;
}
.cta__copy-status {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.cta__note { margin-top: 1rem; font-size: 0.8125rem; opacity: 0.82; }
.cta__note a { color: #fff; text-decoration: underline; text-underline-offset: 0.18em; }
.cta__note a:hover { text-decoration-thickness: 2px; }
/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 0.875rem 0 0.5rem; font-size: 0.8125rem; color: var(--text-light); }
.breadcrumbs .container { overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.breadcrumbs .container::-webkit-scrollbar { display: none; }
.breadcrumbs__link { color: var(--text-secondary); text-decoration: none; }
.breadcrumbs__link:hover { color: var(--primary); }
.breadcrumbs__sep { margin: 0 0.375rem; }
.breadcrumbs__current { color: var(--text); }

/* ===== CONTENT (articles, pages) ===== */
.content h2 { font-size: 1.375rem; font-weight: 600; margin: 2rem 0 0.75rem; }
.content h3 { font-size: 1.125rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.content p { margin-bottom: 1rem; }
.content ul, .content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.content li { margin-bottom: 0.375rem; }
.content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.9375rem; }
.content th, .content td { padding: 0.625rem 0.75rem; border: 1px solid var(--border); text-align: left; }
.content th { background: var(--bg-secondary); font-weight: 600; }
.content blockquote {
  border-left: 3px solid var(--primary); padding: 0.75rem 1rem;
  margin: 1.25rem 0; background: var(--primary-light); border-radius: 0 var(--radius) var(--radius) 0;
}
.content a { color: var(--primary); text-decoration: underline; }
.content img { border-radius: var(--radius); margin: 1.25rem 0; }

/* ===== TOC ===== */
.toc {
  background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.25rem; margin: 1.5rem 0;
}
.toc__title { font-weight: 500; cursor: pointer; font-size: 0.9375rem; }
.toc__nav { margin-top: 0.75rem; }
.toc__nav ul { list-style: none; padding-left: 0; }
.toc__nav li { margin-bottom: 0.25rem; }
.toc__nav a { font-size: 0.875rem; color: var(--text-secondary); text-decoration: none; }
.toc__nav a:hover { color: var(--primary); }
.toc__nav ul ul { padding-left: 1rem; }

/* ===== FAQ ===== */
.faq { margin: 2.5rem 0; }
.faq h2 { font-size: 1.375rem; font-weight: 600; margin-bottom: 1rem; }
.faq__item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 0.5rem; overflow: hidden; background: var(--bg-secondary);
}
.faq__question {
  padding: 1rem 1.25rem; cursor: pointer;
  font-weight: 500; font-size: 0.9375rem; list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::before {
  content: "+"; float: right; font-size: 1.25rem;
  color: var(--text-light); font-weight: 400; transition: transform 0.2s;
}
details[open] .faq__question::before { content: "−"; }
.faq__answer { padding: 0 1.25rem 1rem; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== BLOG POST ===== */
.blog-post { padding: 2rem 0; }
.blog-post__meta {
  display: flex; gap: 1rem; align-items: center;
  font-size: 0.8125rem; color: var(--text-light); margin-bottom: 0.75rem;
}
.blog-post h1 { font-size: 1.75rem; font-weight: 600; line-height: 1.3; margin-bottom: 1.5rem; }
.blog-post__service {
  background: var(--primary-light); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-top: 2rem;
}
.blog-post__service h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.blog-post__service p { margin-bottom: 1rem; }

/* ===== SERVICE PAGE ===== */
.service-page { padding: 1rem 0 4rem; }
.service-page__container { max-width: var(--container); }
.service-page__hero {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2.5rem;
  margin-bottom: 1rem; padding: 2.5rem 2.75rem;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 22px;
  background: linear-gradient(135deg, #252b2f 0%, #343b40 100%);
  box-shadow: 0 22px 48px rgba(31, 42, 51, 0.15); color: #fff;
}
.service-page__back {
  display: inline-flex; margin-bottom: 1.5rem; color: rgba(255,255,255,0.66);
  font-size: 0.8rem; font-weight: 600; text-decoration: none;
}
.service-page__back:hover { color: #fff; text-decoration: none; }
.service-page__hero .section-eyebrow { color: #ff9a78; }
.service-page__hero h1 {
  max-width: 760px; font-size: clamp(2rem, 4vw, 3rem); font-weight: 720;
  line-height: 1.08; letter-spacing: -0.035em;
}
.service-page__hero-action {
  min-width: 215px; padding: 1.1rem;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
  background: rgba(255,255,255,0.055);
}
.service-page__hero-action .btn { width: 100%; }
.service-page__price { font-size: 1.25rem; color: #fff; font-weight: 700; margin-bottom: 0.25rem; }
.service-page__timeline { font-size: 0.875rem; color: rgba(255,255,255,0.68); margin-bottom: 0.9rem; }
.service-page__body {
  padding: 2.5rem 2.75rem;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--bg-secondary); box-shadow: var(--shadow-sm);
}
.service-page__content > h1:first-child { display: none; }
.service-page__content > p:first-of-type {
  max-width: 820px; margin-bottom: 2rem;
  color: var(--text-secondary); font-size: 1.05rem; line-height: 1.75;
}
.service-page__content h2 {
  position: relative; margin-top: 2.75rem; padding-left: 1rem;
  font-size: 1.45rem; letter-spacing: -0.015em;
}
.service-page__content h2::before {
  content: ""; position: absolute; left: 0; top: 0.18em;
  width: 3px; height: 1.15em; border-radius: 999px; background: var(--primary-accent);
}
.service-page__content > ul,
.service-page__content > ol {
  margin: 1rem 0 1.5rem; padding: 1.1rem 1.25rem 1.1rem 2.5rem;
  border: 1px solid var(--border-light); border-radius: 12px; background: #f6f8fa;
}
.service-page__body .faq {
  margin: 3rem -0.25rem 0; padding-top: 2.5rem; border-top: 1px solid var(--border);
}

.related { margin-top: 2.5rem; }
.related h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.related__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.related--service {
  margin-top: 1rem; padding: 1.75rem;
  border: 1px solid #e4ddd5; border-radius: 18px; background: var(--surface-warm);
}

/* ===== SECTION LIST ===== */
.section-list { padding: 2rem 0 3rem; }
.section-list h1 { font-size: 1.75rem; font-weight: 600; margin-bottom: 1.5rem; }

/* ===== SERVICES CATALOG ===== */
.section-list--uslugi { padding: 1rem 0 4rem; }
.services-catalog__hero {
  margin-bottom: 1.25rem; padding: 2.75rem;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 22px;
  background: linear-gradient(135deg, #252b2f 0%, #343b40 100%);
  box-shadow: 0 22px 48px rgba(31, 42, 51, 0.15); color: #fff;
}
.services-catalog__hero .section-eyebrow { color: #ff9a78; }
.services-catalog__hero h1 {
  max-width: 820px; margin-bottom: 1rem;
  color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 720;
  line-height: 1.08; letter-spacing: -0.035em;
}
.services-catalog__lead { max-width: 820px; color: rgba(255,255,255,0.72); }
.services-catalog__lead p { margin: 0; color: inherit; font-size: 1rem; line-height: 1.7; }
.services-catalog__meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem;
}
.services-catalog__meta span {
  padding: 0.42rem 0.72rem; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.78); font-size: 0.75rem; font-weight: 600;
}
.services-catalog { display: grid; gap: 1.25rem; }
.service-group {
  padding: 2rem; border: 1px solid var(--border); border-radius: 22px;
  background: var(--bg-secondary); box-shadow: 0 12px 30px rgba(31, 42, 51, 0.045);
}
.service-group:nth-child(even) { background: linear-gradient(135deg, #e7edf1 0%, #f1f4f6 100%); }
.service-group__header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.service-group__index {
  display: grid; place-items: center; width: 2rem; height: 2rem;
  border-radius: 50%; background: var(--dark); color: #fff;
  font-size: 0.7rem; font-weight: 750; letter-spacing: 0.04em;
}
.service-group__header h2 { font-size: 1.45rem; font-weight: 720; letter-spacing: -0.02em; }
.service-group__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.85rem; }
.service-catalog-card {
  display: flex; min-width: 0; overflow: hidden; flex-direction: column;
  border: 1px solid #dfe5e9; border-radius: 14px; background: #fff;
  color: var(--text); text-decoration: none; box-shadow: 0 1px 0 rgba(31,42,51,0.025);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-catalog-card:hover {
  transform: translateY(-2px); border-color: #cbd5dc;
  box-shadow: 0 16px 32px rgba(31,42,51,0.1); text-decoration: none;
}
.service-catalog-card__media { overflow: hidden; aspect-ratio: 16 / 9; background: var(--border-light); }
.service-catalog-card__image {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(0.84) contrast(1.03);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.service-catalog-card:hover .service-catalog-card__image { transform: scale(1.035); filter: saturate(0.98); }
.service-catalog-card__body { display: flex; flex: 1; flex-direction: column; padding: 1rem 1.05rem 1.1rem; }
.service-catalog-card__price { margin-bottom: 0.3rem; color: var(--primary); font-size: 0.75rem; font-weight: 700; }
.service-catalog-card h3 { margin-bottom: 0.45rem; font-size: 1rem; line-height: 1.35; }
.service-catalog-card p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.55; }
.service-catalog-card__body > span {
  margin-top: auto; padding-top: 0.8rem; color: var(--primary); font-size: 0.75rem; font-weight: 700;
}

/* ===== PAGE ===== */
.page { padding: 1rem 0 3rem; }
.page .container--narrow { max-width: 880px; }
.page__header {
  position: relative; overflow: hidden;
  margin-bottom: 1rem; padding: 2rem 2.25rem;
  border: 1px solid var(--border); border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #f6f8fa 100%);
  box-shadow: var(--shadow-sm);
}
.page__header::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--primary-accent);
}
.page__title { max-width: 720px; font-size: clamp(1.75rem, 4vw, 2.35rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
.page__lead { max-width: 680px; margin-top: 0.65rem; color: var(--text-secondary); font-size: 1rem; line-height: 1.6; }
.page__body {
  padding: 2rem 2.25rem;
  border: 1px solid var(--border); border-radius: 16px;
  background: var(--bg-secondary); box-shadow: var(--shadow-sm);
}
.page__body > :first-child { margin-top: 0; }
.page__body > :last-child { margin-bottom: 0; }

/* Prices */
.page--ceny .container--narrow { max-width: 920px; }
.page--ceny .content ul {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem;
  padding: 0; margin: 1.25rem 0; list-style: none;
}
.page--ceny .content li {
  position: relative; margin: 0; padding: 1rem 1rem 1rem 2.6rem;
  border: 1px solid var(--border-light); border-radius: 10px;
  background: #f6f8fa;
}
.page--ceny .content li::before {
  content: ""; position: absolute; left: 1rem; top: 1.35rem;
  width: 0.65rem; height: 0.65rem; border-radius: 50%;
  background: var(--primary-accent); box-shadow: 0 0 0 4px var(--primary-light);
}
.page--ceny .content > p:last-child {
  margin-top: 1.5rem; padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--primary-accent); border-radius: 0 10px 10px 0;
  background: var(--primary-light);
}

/* About */
.page--o-kompanii .container--narrow { max-width: 980px; }
.page--o-kompanii .content > p:first-child {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75;
}
.page--o-kompanii .content h2 { margin-top: 2.4rem; padding-top: 0.25rem; }
.page--o-kompanii .content h2 + p + ul {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem;
  padding: 0; list-style: none;
}
.page--o-kompanii .content h2 + p + ul li {
  margin: 0; padding: 0.9rem 1rem 0.9rem 1.2rem;
  border: 1px solid var(--border-light); border-left: 3px solid var(--primary-accent);
  border-radius: 8px; background: #f6f8fa;
}
.page--o-kompanii .content ol {
  counter-reset: work-step; display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem;
  padding: 0; list-style: none;
}
.page--o-kompanii .content ol li {
  counter-increment: work-step; position: relative;
  min-height: 78px; margin: 0; padding: 1rem 1rem 1rem 3.5rem;
  border: 1px solid var(--border-light); border-radius: 10px; background: #f6f8fa;
}
.page--o-kompanii .content ol li::before {
  content: counter(work-step); position: absolute; left: 1rem; top: 1rem;
  display: grid; place-items: center; width: 1.8rem; height: 1.8rem;
  border-radius: 50%; background: var(--primary); color: #fff; font-size: 0.8rem; font-weight: 700;
}
.page--o-kompanii .content > p:has(> strong) {
  padding: 1rem 1.1rem; border: 1px solid var(--border-light);
  border-radius: 10px; background: #f8fafb;
}

/* Contacts */
.page--kontakty .container--narrow { max-width: 820px; }
.page--kontakty .content > h2:first-child { margin-top: 0; }
.page--kontakty .content > p:not(:last-child):not(.contact-note) {
  display: grid; grid-template-columns: 145px minmax(0, 1fr); align-items: center; gap: 1rem;
  margin: 0; padding: 1rem 0; border-bottom: 1px solid var(--border-light);
}
.page--kontakty .contact-messenger {
  display: grid; grid-template-columns: 145px minmax(0, 1fr); align-items: start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border-light);
}
.page--kontakty .contact-messenger__label { padding-top: 0.45rem; }
.page--kontakty .contact-messenger__body > p { margin: 0 0 0.7rem; }
.page--kontakty .contact-messenger__copy { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.page--kontakty .content > p a { font-weight: 600; }
.page--kontakty .content hr { height: 1px; margin: 1.5rem 0; border: 0; background: var(--border); }
.page--kontakty .contact-note {
  display: block; margin: 0; padding: 1.15rem 1.25rem;
  border: 1px solid #f0cec2; border-radius: 10px; background: var(--primary-light);
}
.page--kontakty .contact-map {
  overflow: hidden; margin-top: 1rem;
  border: 1px solid var(--border-light); border-radius: 12px; background: #f8fafb;
}
.page--kontakty .contact-map__frame {
  display: block; width: 100%; height: 420px; border: 0;
}
.page--kontakty .contact-map__link {
  display: block; margin: 0; padding: 0.85rem 1rem; border-top: 1px solid var(--border-light);
}
.page--kontakty .contact-map__link a { font-weight: 600; }


/* ===== FOOTER ===== */
.footer {
  background: var(--dark); border-top: 1px solid #3b4145;
  padding: 3rem 0 1.5rem; margin-top: 0; color: var(--dark-text);
}
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer__logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.75rem; font-weight: 600; }
.footer__logo-img { height: 32px; width: auto; padding: 1px; border-radius: 6px; background: #fff; }
.footer__desc { font-size: 0.875rem; color: var(--dark-muted); line-height: 1.5; }
.footer__heading { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.03em; }
.footer__link { display: block; font-size: 0.875rem; color: var(--dark-muted); margin-bottom: 0.375rem; text-decoration: none; }
.footer__link:hover { color: #ff9a78; }
.footer__text { font-size: 0.875rem; color: var(--dark-muted); margin-bottom: 0.375rem; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid #3b4145;
  font-size: 0.8125rem; color: #aaa8a2;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1021px) {
  .services-home__grid > .service-card:nth-last-child(2):nth-child(4n + 1) {
    grid-column: 2;
  }
}

@media (max-width: 1020px) {
  .header__inner { gap: 0.8rem; }
  .header__logo-copy small { display: none; }
  .header__nav-link { padding-right: 0.56rem; padding-left: 0.56rem; }
  .header__nav-link--active { padding-left: 1.15rem; }
  .header__nav-link--active::before { left: 0.58rem; }
  .hero__inner { min-height: 520px; padding: 3.5rem; }
  .hero__content { width: 62%; }
  .services-home__grid { grid-template-columns: repeat(2, 1fr); }
  .experience-home__header { grid-template-columns: 1fr; gap: 0.75rem; }
}

@media (max-width: 768px) {
  .header__nav, .header__phone { display: none; }
  .header__inner { height: 64px; }
  .header__logo-img { width: 38px; height: 38px; }
  .header__logo-copy strong { font-size: 0.92rem; }
  .header__burger {
    display: flex; width: 42px; height: 42px; padding: 0;
    flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 10px;
    background: #fff; box-shadow: var(--shadow-sm);
  }
  .header__burger.active { background: var(--dark); border-color: var(--dark); }
  .header__burger.active span { background: #fff; }
  body.no-scroll::before {
    content: ""; position: fixed; inset: 64px 0 0; z-index: 98;
    background: rgba(31, 35, 38, 0.34); backdrop-filter: blur(2px);
  }

  .content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero { padding: 1.5rem 1rem 1.75rem; }
  .hero__inner { min-height: 590px; padding: 2.5rem; align-items: flex-start; }
  .hero__content { width: 78%; text-align: left; }
  .hero__title { max-width: 520px; font-size: 2.25rem; }
  .hero__text { font-size: 0.9375rem; }
  .hero__actions { justify-content: flex-start; }
  .hero__meta { gap: 0.75rem; font-size: 0.7rem; }
  .hero__meta span { gap: 0.75rem; }
  .hero__media::after {
    background: linear-gradient(
      90deg,
      rgba(31, 35, 38, 0.94) 0%,
      rgba(31, 35, 38, 0.82) 55%,
      rgba(31, 35, 38, 0.22) 100%
    );
  }
  .hero__image { object-position: 66% center; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-bottom: 1px solid var(--border); }
  .stats__item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stats__item:nth-child(even) { border-right: none; }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }

  .services-home__grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .services-home { padding: 2.75rem 0 3rem; }
  .services-home .container { padding-right: 1.25rem; padding-left: 1.25rem; }
  .experience-home .container { padding: 1.35rem; border-radius: 15px; }
  .service-card {
    display: grid; grid-template-columns: minmax(150px, 40%) minmax(0, 1fr);
    min-height: 142px; border-radius: 11px;
  }
  .service-card__media { height: 100%; min-height: 142px; aspect-ratio: auto; }
  .service-card__body {
    min-width: 0; padding: 0.9rem;
    border-top: 0; border-left: 0;
  }
  .service-card__title { margin-bottom: 0.35rem; font-size: 0.95rem; }
  .service-card__desc {
    display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
    font-size: 0.78rem; line-height: 1.45;
  }
  .service-card__link { padding-top: 0.55rem; font-size: 0.75rem; }
  .experience-home__grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .experience-card { min-height: 0; padding: 1.1rem; }
  .experience-card h3 { margin: 0.45rem 0 0.4rem; }
  .experience-card p { font-size: 0.85rem; line-height: 1.5; }
  .blog-home__grid, .card-grid, .related__grid { grid-template-columns: 1fr; }

  .services-catalog__hero { padding: 1.75rem; border-radius: 16px; }
  .services-catalog__hero h1 { font-size: 2rem; }
  .service-group { padding: 1.35rem; border-radius: 16px; }
  .service-group__grid { grid-template-columns: 1fr; }
  .service-catalog-card {
    display: grid; grid-template-columns: minmax(145px, 38%) minmax(0, 1fr);
    min-height: 145px;
  }
  .service-catalog-card__media { height: 100%; min-height: 145px; aspect-ratio: auto; }
  .service-catalog-card__body { min-width: 0; padding: 0.9rem; }
  .service-catalog-card p {
    display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  }

  .service-page__hero { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; padding: 1.75rem; border-radius: 16px; }
  .service-page__hero h1 { font-size: 2rem; }
  .service-page__hero-action { min-width: 0; }
  .service-page__body { padding: 1.75rem 1.5rem; border-radius: 16px; }
  .service-page__content h2 { margin-top: 2.25rem; font-size: 1.3rem; }
  .related--service { padding: 1.35rem; border-radius: 15px; }
  .cta__inner { padding: 2rem 1.25rem; }
  .cta__actions { grid-template-columns: 1fr; max-width: 480px; }
  .cta__action { min-height: 64px; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .blog-post h1, .section-list:not(.section-list--uslugi) h1 { font-size: 1.375rem; }
  .page__header, .page__body { padding: 1.5rem 1.25rem; border-radius: 12px; }
  .page--ceny .content ul,
  .page--o-kompanii .content h2 + p + ul,
  .page--o-kompanii .content ol { grid-template-columns: 1fr; }
  .page--kontakty .content > p:not(:last-child):not(.contact-note) { grid-template-columns: 1fr; gap: 0.35rem; }
  .page--kontakty .contact-messenger { grid-template-columns: 1fr; gap: 0.35rem; }
  .page--kontakty .contact-messenger__label { padding-top: 0; }
  .page--kontakty .contact-map__frame { height: 340px; }
}

@media (max-width: 480px) {
  .hero { padding: 1rem 0.75rem 1.5rem; }
  .hero__inner { min-height: 575px; padding: 1.5rem 1.25rem; border-radius: 16px; }
  .hero__content { width: 100%; }
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__meta { justify-content: space-between; gap: 0.35rem; font-size: 0.65rem; letter-spacing: 0.015em; }
  .hero__meta span { gap: 0.35rem; }
  .hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(31, 35, 38, 0.95) 0%,
      rgba(31, 35, 38, 0.86) 52%,
      rgba(31, 35, 38, 0.38) 78%,
      rgba(31, 35, 38, 0.12) 100%
    );
  }
  .hero__image { object-position: 69% center; }
  .stats__number { font-size: 1.25rem; }
  .services-home .container { padding-right: 1rem; padding-left: 1rem; }
  .experience-home .container { padding: 1rem; border-radius: 13px; }
  .services-home__header { align-items: end; }
  .services-home__count { padding: 0.3rem 0.55rem; font-size: 0.68rem; }
  .services-home__grid { grid-template-columns: 1fr; }
  .services-home h2,
  .blog-home__header h2 { font-size: 1.3rem; }
  .service-card { grid-template-columns: 42% minmax(0, 1fr); min-height: 118px; }
  .service-card__media { min-height: 118px; }
  .service-card__body { padding: 0.75rem; }
  .service-card__title { font-size: 0.875rem; }
  .service-card__desc { display: none; }
  .service-card__link { padding-top: 0.45rem; }
  .experience-home__header h2 { font-size: 1.35rem; }
  .experience-home__header > p { font-size: 0.875rem; line-height: 1.5; }
  .blog-card { padding: 1rem 1.1rem; }
  .services-catalog__hero { padding: 1.4rem; }
  .services-catalog__hero h1 { font-size: 1.75rem; }
  .services-catalog__meta { display: grid; grid-template-columns: 1fr; }
  .services-catalog__meta span { width: fit-content; }
  .service-group { padding: 1rem; }
  .service-group__header { align-items: flex-start; }
  .service-group__header h2 { font-size: 1.2rem; }
  .service-catalog-card { grid-template-columns: 40% minmax(0, 1fr); min-height: 128px; }
  .service-catalog-card__media { min-height: 128px; }
  .service-catalog-card__body { padding: 0.75rem; }
  .service-catalog-card h3 { font-size: 0.9rem; }
  .service-catalog-card p { display: none; }
  .service-catalog-card__body > span { padding-top: 0.45rem; }
  .service-page__hero { padding: 1.4rem; }
  .service-page__hero h1 { font-size: 1.75rem; }
  .service-page__back { margin-bottom: 1rem; }
  .service-page__body { padding: 1.4rem 1.15rem; }
  .service-page__content > p:first-of-type { font-size: 0.95rem; }
  .service-page__content > ul,
  .service-page__content > ol { padding: 1rem 1rem 1rem 2.1rem; }
  .page--kontakty .contact-messenger__copy { display: block; }
  .page--kontakty .copy-phone { width: 100%; }
  .page--kontakty .copy-phone__status { display: block; margin-top: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cta__action,
  .hero__image,
  .service-card,
  .service-card__image,
  .service-catalog-card,
  .service-catalog-card__image { transition: none; }
  .hero__media:hover .hero__image,
  .service-card:hover,
  .service-card:hover .service-card__image,
  .service-catalog-card:hover,
  .service-catalog-card:hover .service-catalog-card__image { transform: none; }
}
.analytics-pixel {
  position: absolute;
  left: -9999px;
}
