:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef3fa;
  --text: #0c121b;
  --muted: #5a6676;
  --border: rgba(12, 18, 27, 0.12);
  --shadow: 0 12px 30px rgba(12, 18, 27, 0.1);
  --shadow-2: 0 8px 18px rgba(12, 18, 27, 0.08);
  --accent: #ffb000;
  --accent-2: #ff8a00;
  --ok: #1f9d55;
  --danger: #d64545;
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
  --focus: 0 0 0 4px rgba(255, 176, 0, 0.28);
}

[data-theme="dark"] {
  --bg: #0b0f14;
  --surface: #0f141b;
  --surface-2: #111a25;
  --text: #f2f5fa;
  --muted: #a7b3c2;
  --border: rgba(242, 245, 250, 0.14);
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  --shadow-2: 0 9px 20px rgba(0, 0, 0, 0.35);
  --focus: 0 0 0 4px rgba(255, 196, 77, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(120% 80% at 10% -10%, rgba(255, 176, 0, 0.12), transparent 55%), var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

.container,
.header-inner,
.header-row,
.main-nav,
.footer-grid,
.footer-bottom,
.footer-legal {
  min-width: 0;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip,
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus,
.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 85%, var(--surface) 15%);
  backdrop-filter: blur(10px);
}

.header-inner,
.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand,
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: inherit;
  font-weight: 700;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

[data-theme="dark"] .logo img {
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.25), rgba(255, 138, 0, 0.15)), var(--surface-2);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 72px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px;
  gap: 6px;
  flex-direction: column;
}

.main-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--muted);
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--muted);
  white-space: nowrap;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle:hover {
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 70%, var(--accent) 30%);
}

.nav-dropdown-toggle.is-current {
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 70%, var(--accent) 30%);
}

.nav-dropdown-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 6px;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 1010;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 70%, var(--accent) 30%);
  text-decoration: none;
}

.nav-dropdown[data-open="true"] .nav-dropdown-menu {
  display: block;
}

@media (max-width: 979px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--border);
    border-radius: 0;
    margin-left: 12px;
    padding: 4px 0;
    min-width: 0;
  }
}

.site-header[data-open="true"] .main-nav {
  display: flex;
}

.main-nav a:hover {
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 70%, var(--accent) 30%);
  text-decoration: none;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-contact {
  display: none !important;
  white-space: nowrap;
}

.theme-toggle {
  min-width: 44px;
  padding-inline: 10px;
}

.theme-toggle-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.menu-toggle,
.nav-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 16px;
  cursor: pointer;
}

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

  .header-contact {
    display: inline-flex !important;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
}

main {
  padding: 20px 0 40px;
}

h1 {
  font-size: clamp(1.8rem, 3.9vw, 2.7rem);
  line-height: 1.16;
  margin: 8px 0 16px;
}

h2 {
  font-size: clamp(1.28rem, 2.8vw, 1.8rem);
  margin: 0 0 10px;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.lead {
  font-size: 1.07rem;
  color: var(--muted);
}

.kicker,
.eyebrow {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-right: 8px;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
}

.hero,
.panel,
.card,
.price-card,
.case,
.step,
.tile,
.cta-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, color-mix(in oklab, var(--surface) 85%, transparent) 0%, var(--surface) 100%);
  box-shadow: var(--shadow-2);
  padding: clamp(14px, 4vw, 28px);
  margin-bottom: 16px;
}

.hero-home .hero-grid,
.hero-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 980px) {
  .hero-home .hero-grid,
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.feature-list p {
  margin: 0 0 6px;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.profile-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.profile-photo-card {
  position: sticky;
  top: 96px;
  text-align: center;
}

.profile-photo {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: calc(var(--radius) - 6px);
  display: block;
  margin: 0 auto;
  background: var(--surface-2);
}

.profile-photo-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.profile-inline {
  display: grid;
  gap: 18px;
  align-items: center;
}

.profile-inline-media {
  max-width: 200px;
  width: 100%;
}

.profile-inline-media .profile-photo {
  max-width: 180px;
}

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

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

  .profile-inline {
    grid-template-columns: 200px minmax(0, 1fr);
  }
}

@media (min-width: 980px) {
  .profile-layout {
    grid-template-columns: minmax(0, 1.2fr) 320px;
  }
}

@media (max-width: 979px) {
  .profile-photo-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .profile-inline-media {
    max-width: 180px;
  }
}

.tiles,
.price-grid,
.steps,
.case-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 860px) {
  .tiles,
  .price-grid,
  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-bottom: 8px;
}

.price {
  font-weight: 800;
  font-size: 1.25rem;
  color: color-mix(in oklab, var(--accent-2) 45%, var(--text) 55%);
}

.note,
.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-desc {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 0.15rem;
  min-width: 130px;
}

.price-main {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-2);
  white-space: nowrap;
}

.price-sub {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

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

.services-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.service-urgent {
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 12%, var(--surface) 88%), var(--surface));
  border: 1.5px solid color-mix(in oklab, var(--accent) 40%, var(--border) 60%);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
}

.service-urgent-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.service-urgent-text {
  flex: 1;
}

.service-urgent-text h2 {
  margin: 0.25rem 0 0.4rem;
  font-size: 1.5rem;
}

.service-urgent-text p {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-price {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.9rem !important;
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-2);
}

.service-urgent-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.service-urgent-cta .btn {
  font-size: 0.85rem;
  padding: 8px 16px;
}

@media (max-width: 640px) {
  .service-urgent-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-urgent-cta {
    flex-direction: row;
    width: 100%;
  }
  .service-urgent-cta .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .price-row {
    flex-wrap: wrap;
  }
  .price-amount {
    align-items: flex-start;
    min-width: 0;
    padding-left: calc(1.4rem + 1rem);
  }
  .price-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

.warning {
  background: color-mix(in oklab, #ffedc2 42%, var(--surface) 58%);
  border-color: color-mix(in oklab, #f0bc5f 48%, var(--border) 52%);
}

.faq details {
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

.faq details:first-child {
  border-top: 0;
}

.equipment-photo {
  margin: 0;
  display: grid;
  gap: 8px;
}

.equipment-photo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
}

.equipment-photo figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.city-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.city-list a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
}

.city-list a:hover {
  background: color-mix(in oklab, var(--surface) 74%, var(--accent) 26%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 650;
  font-size: 0.92rem;
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none !important;
}

.btn:hover {
  background: color-mix(in oklab, var(--surface) 78%, var(--accent) 22%);
}

.btn-primary {
  border-color: color-mix(in oklab, var(--accent) 70%, var(--border) 30%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171717;
}


.btn-ghost {
  background: transparent;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: grid;
  gap: 12px;
  max-height: min(80vh, 680px);
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, color-mix(in oklab, var(--surface) 96%, white 4%) 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
}

.cookie-banner-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner-title-row strong {
  font-size: 1.05rem;
}

.cookie-banner-close {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
}

.cookie-consent-groups {
  display: grid;
  gap: 12px;
}

.cookie-consent-group {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in oklab, var(--surface) 92%, white 8%);
}

.cookie-consent-group p {
  margin: 0;
}

.cookie-consent-group-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-consent-badge {
  color: #1e7f46;
  background: rgba(30, 127, 70, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-toggle-row {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.cookie-toggle-copy {
  display: grid;
  gap: 6px;
}

.cookie-toggle-copy strong {
  color: var(--text);
}

.cookie-toggle-copy span:last-child {
  color: var(--muted);
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
}

.cookie-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-toggle-ui {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--muted) 25%, white 75%);
  transition: background .2s ease;
}

.cookie-toggle-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform .2s ease;
}

.cookie-toggle input:checked + .cookie-toggle-ui {
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-ui::after {
  transform: translateX(22px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-ui {
  outline: 2px solid color-mix(in oklab, var(--accent) 60%, white 40%);
  outline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 760px) {
  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: min(720px, calc(100vw - 32px));
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .cookie-toggle-row {
    grid-template-columns: 1fr;
  }

  .cookie-consent-group-head {
    align-items: start;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 400px) {
  .cta-row {
    flex-direction: column;
  }
}

.legal-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form > label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.94rem;
}

.field-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.94rem;
}

.field input,
.field select,
.field textarea,
label input,
label select,
label textarea,
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in oklab, var(--surface) 82%, var(--surface-2) 18%);
  color: var(--text);
  font: inherit;
  font-size: max(16px, 1em);
  padding: 10px 12px;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.consent {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.consent input {
  width: auto;
  margin-top: 3px;
}

.consent-content {
  display: grid;
  gap: 8px;
}

.consent-copy {
  display: block;
}

.consent-links {
  display: grid;
  gap: 6px;
}

.consent-links a {
  color: var(--muted);
  font: inherit;
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.form-status.success {
  color: var(--ok);
}

.form-status.error {
  color: var(--danger);
}

.toc ol {
  margin: 0;
  padding-left: 18px;
}

.table-wrap {
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.table-wrap th,
.table-wrap td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  background: color-mix(in oklab, var(--surface-2) 78%, var(--surface) 22%);
  font-weight: 700;
}

.table-wrap tbody tr:nth-child(even) {
  background: color-mix(in oklab, var(--surface) 86%, var(--surface-2) 14%);
}

.stat-card h3,
.stat-card p:last-child {
  margin-bottom: 0;
}

.checklist {
  margin: 0;
  padding-left: 18px;
}

.checklist li + li {
  margin-top: 8px;
}

.toc a.active {
  font-weight: 700;
}

.search-results article {
  margin-bottom: 12px;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding: 48px 0 24px;
  background: var(--surface-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  width: min(var(--container), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.footer-about {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.footer-h {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--text); text-decoration: none; }

.footer-contact-row {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 8px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.footer-contact-row a { color: var(--muted); text-decoration: none; }
.footer-contact-row a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--muted);
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: .8rem;
}
.footer-legal a:hover { color: var(--text); }

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .container,
  .footer-grid,
  .footer-bottom,
  .legal,
  .legal-links {
    width: calc(100% - 24px);
  }

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

.legal {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 12px auto 0;
  width: min(var(--container), calc(100% - 32px));
}

.legal-links {
  width: min(var(--container), calc(100% - 32px));
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 6px;
  justify-items: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-links a {
  color: inherit;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: color-mix(in oklab, var(--surface) 94%, transparent);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(12, 18, 27, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-sticky .btn {
  flex: 1;
  min-height: 48px;
  min-width: 0;
}

.mobile-sticky .btn:not(.btn-primary) {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.mobile-sticky .btn:not(.btn-primary):hover {
  background: #1fbe5a;
  border-color: #1fbe5a;
  color: #fff;
}

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

@media (max-width: 979px) {
  .has-mobile-sticky {
    padding-bottom: 96px;
  }
}

.footer-map {
  margin-top: 14px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 16px 0 0;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.reviews-grid {
  display: grid;
  gap: 14px;
}

.realizacje-group + .realizacje-group {
  margin-top: 22px;
}

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

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

@media (min-width: 980px) {
  .realizacje-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.realizacje-shot {
  width: 100%;
  margin: 0;
  border: 1px solid var(--border);
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-2);
  cursor: zoom-in;
  display: grid;
  grid-template-rows: auto minmax(84px, auto);
}

.realizacje-shot-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.realizacje-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  transition: transform 0.2s ease;
}

.realizacje-shot picture {
  display: block;
  overflow: hidden;
}

.realizacje-shot:hover img {
  transform: scale(1.03);
}

.realizacje-shot-link:hover {
  text-decoration: none;
}

.realizacje-shot:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.realizacje-shot figcaption {
  margin: 0;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 82%, var(--surface-2) 18%);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
  min-height: 84px;
  line-height: 1.45;
}

.realizacje-shot figcaption::before {
  content: "Opis sytuacji:";
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 650;
}

.realizacje-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  background: rgba(12, 18, 27, 0.82);
}

.realizacje-lightbox[data-open="true"] {
  display: block;
}

.realizacje-lightbox-frame {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 64px 14px 16px;
  display: grid;
  gap: 10px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
}

.realizacje-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.realizacje-lightbox-caption {
  margin: 0;
  max-width: min(980px, 96vw);
  color: #f3f6fa;
  text-align: center;
  font-size: 0.95rem;
}

.realizacje-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

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

@media (min-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 0 0 8px;
}

.review-text {
  margin: 0 0 10px;
}

.review-author {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }
}

.toast {
  position: fixed;
  right: 14px;
  bottom: 88px;
  z-index: 1200;
  max-width: min(460px, calc(100% - 28px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  display: grid;
  gap: 6px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-close {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 8px;
  width: 26px;
  height: 26px;
  justify-self: end;
  cursor: pointer;
}

/* Service pages styles merged from styles-uslugi.css */

/* ============================================================
   styles-uslugi.css - strony uslug (nowy layout)
   Uzywa zmiennych z styles.css (jasny motyw)
   ============================================================ */

/* Aliasy zmiennych dopasowane do styles.css */
:root {
  --amber:      var(--accent);        /* #ffb000 */
  --amber-dark: var(--accent-2);      /* #ff8a00 */
  --red:        var(--danger);        /* #d64545 */
  --red-dark:   #b53030;
  --green:      var(--ok);            /* #1f9d55 */
  --card:       var(--surface);       /* #ffffff */
  --card2:      var(--surface-2);     /* #eef3fa */
  --border2:    var(--border);
  --shadow-lg:  var(--shadow);
  --shadow-md:  var(--shadow-2);
  --radius-lg:  var(--radius-sm);     /* 14px */
  --radius-md:  10px;
  --radius-sm:  7px;
  --font-b:     ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --wrap:       1160px;
}

/* Page body */
.page-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
}

/* Wrap */
.wrap {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* ============================================================
   TOPBAR - dopasowany do site-header ze styles.css
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in oklab, var(--bg) 85%, var(--surface) 15%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  min-width: 0;
}

.topbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}
.topbar-logo img {
  height: 48px;
  width: auto;
  display: block;
}
[data-theme="dark"] .topbar-logo img {
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
/* fallback text logo */
.topbar-logo span { color: var(--muted); font-weight: 400; }

.topbar-inner > nav {
  flex: 1;
  min-width: 0;
}
.topbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
  min-width: 0;
}
.topbar-nav a {
  display: block;
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--muted);
  border-radius: 10px;
  transition: color .15s, background .15s;
  text-decoration: none;
}
.topbar-nav a:hover,
.topbar-nav a[aria-current="page"] {
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 70%, var(--accent) 30%);
  text-decoration: none;
}

.topbar-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 14px 0;
  font-size: .8rem;
  color: var(--muted);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
/* kasujemy separator z styles.css i uzywamy wlasnego (/) */
.breadcrumbs li:not(:last-child)::after { content: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 4px; opacity: .4; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--amber); text-decoration: none; }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  font-size: .9rem;
  font-weight: 650;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
  font-family: var(--font-b);
}
.btn:hover { text-decoration: none !important; }
.btn:active { transform: scale(.97); }

.btn-amber {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171717;
  border-color: color-mix(in oklab, var(--accent) 70%, var(--border) 30%);
}
.btn-amber:hover {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-wa {
  background: #25d366 !important;
  color: #fff !important;
  border-color: #25d366 !important;
}
.btn-wa:hover { background: #20bd5c !important; border-color: #20bd5c !important; }

.btn-outline {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { background: color-mix(in oklab, var(--surface) 78%, var(--accent) 22%); }

.btn-lg {
  padding: 13px 24px;
  font-size: .95rem;
}

/* ============================================================
   HERO
   ============================================================ */
.service-hero {
  padding: 56px 0 48px;
  background: radial-gradient(120% 80% at 10% -10%, rgba(255,176,0,.1), transparent 55%), var(--bg);
  border-bottom: 1px solid var(--border);
}

.service-hero .wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: rgba(255,176,0,.12);
  color: #c98900;
  border: 1px solid rgba(255,176,0,.25);
  margin-bottom: 16px;
}
.hero-badge.red {
  background: rgba(214,69,69,.1);
  color: var(--red);
  border-color: rgba(214,69,69,.2);
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -.02em;
  color: var(--text);
}
.hero-h1 em { font-style: normal; }
.hero-h1 em.red { color: var(--red); }

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 560px;
}

.hero-price-hint {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: .9rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero-price-hint strong { color: var(--text); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Hero card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-2);
}

.hero-card-media {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--surface) 78%, var(--accent) 22%);
  border: 1px solid color-mix(in oklab, var(--border) 70%, var(--accent) 30%);
}

.hero-card-photo {
  width: 88px;
  height: 112px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-1);
}

.hero-card-note {
  font-size: .82rem;
  color: var(--muted);
  margin: 4px 0 0;
}

.hero-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.hero-card-sub {
  font-size: .85rem;
  color: var(--muted);
}

.hero-card-tel {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
}
.hero-card-tel:hover { text-decoration: none; color: var(--amber); }

.hero-trust {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.hero-trust-item {
  font-size: .82rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.hero-trust-item::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .83rem;
  color: var(--muted);
}
.trust-item strong {
  display: block;
  color: var(--text);
  font-size: .88rem;
}
.trust-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-contact-trust {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}

.service-contact-trust-header {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
}

.service-contact-trust-photo {
  width: 84px;
  height: 108px;
  object-fit: cover;
  border-radius: 14px;
}

.service-contact-trust-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.service-contact-trust-copy {
  margin: 6px 0 0;
  font-size: .84rem;
  color: var(--muted);
}

.service-contact-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-contact-trust-list li {
  position: relative;
  padding-left: 18px;
  font-size: .83rem;
  color: var(--muted);
}

.service-contact-trust-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.contact-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.section-sm {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #c98900;
  margin: 0 0 8px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  color: var(--text);
}

.section-sub {
  color: var(--muted);
  font-size: .95rem;
  margin: 0 0 32px;
  max-width: 560px;
}

/* ============================================================
   SYMPTOMS GRID
   ============================================================ */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.symptom-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-2);
}
.symptom-card:hover {
  border-color: rgba(255,176,0,.4);
  box-shadow: var(--shadow);
}

.symptom-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.symptom-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}
.symptom-text strong {
  display: block;
  color: var(--text);
  font-size: .9rem;
  margin-bottom: 4px;
}

/* ============================================================
   CALLOUT
   ============================================================ */
.callout {
  background: rgba(255,176,0,.07);
  border: 1px solid rgba(255,176,0,.22);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}
.callout strong {
  display: block;
  color: #c98900;
  margin-bottom: 5px;
  font-size: .9rem;
}
.callout.danger {
  background: rgba(214,69,69,.06);
  border-color: rgba(214,69,69,.2);
}
.callout.danger strong { color: var(--red); }

/* ============================================================
   STEPS
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  position: relative;
}
.steps-row.five { grid-template-columns: repeat(5, 1fr); }

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  box-shadow: var(--shadow-2);
  margin-bottom: 0;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: #000;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.step p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   TWO COLUMNS
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.two-col-wide {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   SCOPE TABLE
   ============================================================ */
.scope-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.scope-table thead tr {
  background: var(--surface-2);
}

.scope-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.scope-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.scope-table td:first-child { font-weight: 600; }
.scope-table td:nth-child(2) { color: var(--muted); }

.scope-table tbody tr:hover { background: var(--surface-2); }
.scope-table tbody tr:last-child td { border-bottom: none; }

/* Tags */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}
.tag-green { background: rgba(31,157,85,.12); color: #147a3e; }
.tag-amber { background: rgba(255,176,0,.15); color: #a07000; }
.tag-red   { background: rgba(214,69,69,.12); color: #b53030; }

/* ============================================================
   PRICE CARDS
   ============================================================ */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-2);
  margin-bottom: 0;
}

.price-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), var(--shadow);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--amber);
  color: #000;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
}

.price-label {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1;
}
.price-value small {
  font-size: .55em;
  font-weight: 400;
  color: var(--muted);
}

.price-items {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .86rem;
  color: var(--muted);
}
.price-items li {
  padding-left: 20px;
  position: relative;
}
.price-items li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-2);
}

.review-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }

.review-body {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  margin-top: auto;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: #000;
  font-weight: 700;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name { font-weight: 700; color: var(--text); }
.review-city { color: var(--muted); font-size: .78rem; }
.review-src { margin-left: auto; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  border: none;
  padding: 16px 20px;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-b);
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: var(--surface-2); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--amber);
  transition: transform .2s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-item.open .faq-a { display: block; }

/* ============================================================
   CITIES
   ============================================================ */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: .85rem;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  box-shadow: var(--shadow-2);
}
.city-chip:hover {
  border-color: var(--amber);
  color: #a07000;
  background: rgba(255,176,0,.06);
  text-decoration: none;
}

/* ============================================================
   OTHER SERVICES
   ============================================================ */
.other-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.other-svc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
  display: block;
  box-shadow: var(--shadow-2);
}
.other-svc:hover {
  border-color: rgba(255,176,0,.4);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.other-svc-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.other-svc-name { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.other-svc-desc { font-size: .8rem; color: var(--muted); line-height: 1.45; }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-emergency,
.cta-standard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow);
}

.cta-emergency { border-color: rgba(214,69,69,.25); background: rgba(214,69,69,.03); }

/* City cards */
.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.city-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  box-shadow: var(--shadow-1);
}
.city-card:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 14px rgba(201,137,0,.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.city-card--home {
  border-color: var(--amber);
  background: color-mix(in oklab, var(--bg) 92%, var(--amber) 8%);
}
.city-card-pin { font-size: 1.1rem; }
.city-card-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
}
.city-card-note {
  font-size: .78rem;
  color: var(--muted);
}

/* Blog preview list */
.blog-preview-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
}
.blog-preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.blog-preview-item:last-child { border-bottom: none; }
.blog-preview-item:hover { background: var(--surface); text-decoration: none; }
.blog-preview-cat {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #a07000;
  background: color-mix(in oklab, var(--bg) 80%, var(--amber) 20%);
  border: 1px solid color-mix(in oklab, var(--border) 60%, var(--amber) 40%);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.blog-preview-title {
  flex: 1;
  font-size: .9rem;
  line-height: 1.4;
}
.blog-preview-arrow {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Variant labels */
.variant-label {
  text-align: center;
  padding: 10px 20px;
  background: #1a1a2e;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Wariant B */
.vb-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .vb-two-col { grid-template-columns: 1fr; gap: 32px; }
}
.vb-city-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}
.vb-city-tile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  color: var(--text);
  background: var(--bg);
  font-weight: 600;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  box-shadow: var(--shadow-1);
}
.vb-city-tile:hover { border-color: var(--amber); color: #a07000; text-decoration: none; }
.vb-city-tile span {
  font-size: .65rem;
  font-weight: 700;
  color: #a07000;
  background: color-mix(in oklab, var(--bg) 80%, var(--amber) 20%);
  padding: 1px 6px;
  border-radius: 100px;
}
.vb-city-tile--lg,
.vb-city-tile--md,
.vb-city-tile--sm,
.vb-city-tile--xs { padding: 9px 16px; }

.vb-blog-grid {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
  background: var(--surface);
}
.vb-blog-main {
  grid-row: auto;
}
.vb-blog-side {
  display: block;
  height: auto;
}
.vb-blog-main, .vb-blog-small {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition: background .12s;
}
.vb-blog-main:hover, .vb-blog-small:hover {
  background: var(--surface);
  text-decoration: none;
}
.vb-blog-side .vb-blog-small:last-child {
  border-bottom: none;
}
.vb-blog-cat {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #a07000;
  background: color-mix(in oklab, var(--bg) 80%, var(--amber) 20%);
  border: 1px solid color-mix(in oklab, var(--border) 60%, var(--amber) 40%);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.vb-blog-title {
  flex: 1;
  font-size: .9rem;
  line-height: 1.4;
  font-weight: 400;
}
.vb-blog-arrow {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1rem;
  align-self: auto;
}
@media (max-width: 640px) {
  .vb-blog-main, .vb-blog-small {
    align-items: flex-start;
  }
}

.home-real-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
  align-items: stretch;
  height: clamp(360px, 42vw, 560px);
}

.home-real-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 0;
  height: 100%;
}

.home-real-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 0;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(12, 18, 27, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}

.home-real-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--border) 55%, var(--amber) 45%);
  box-shadow: 0 16px 32px rgba(12, 18, 27, 0.12);
}

.home-real-card picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.home-real-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}

.home-real-card:hover img {
  transform: scale(1.04);
}

.home-real-caption {
  display: block;
  padding: 11px 14px 12px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 86%, var(--surface-2) 14%);
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.01em;
}

@media (max-width: 900px) {
  .home-real-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .home-real-stack {
    grid-template-rows: auto auto;
    height: auto;
  }

  .home-real-card {
    height: auto;
  }

  .home-real-card picture {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* Wariant C */
.vc-realizacje-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 420px;
}
.vc-real-a { grid-row: 1 / 3; }
.vc-real-b { grid-row: 1; }
.vc-real-c { grid-row: 2; }
.vc-realizacje-grid .realizacje-shot--overlay,
.vc-realizacje-grid .realizacje-shot--overlay .realizacje-shot-link,
.vc-realizacje-grid .realizacje-shot--overlay picture,
.vc-realizacje-grid .realizacje-shot--overlay img {
  height: 100%;
}
@media (max-width: 640px) {
  .vc-realizacje-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .vc-real-a, .vc-real-b, .vc-real-c { grid-row: auto; }
}
.vc-bottom-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: .88rem;
}
.vc-cities-inline, .vc-blog-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.vc-strip-label {
  font-weight: 700;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-right: 4px;
}
.vc-cities-inline a, .vc-blog-inline a {
  color: var(--text);
  text-decoration: none;
}
.vc-cities-inline a:hover, .vc-blog-inline a:hover { color: #a07000; text-decoration: underline; }
.vc-cities-inline span, .vc-blog-inline span { color: var(--muted); }

/* Realizacje overlay */
.realizacje-shot--overlay {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: block;
  grid-template-rows: unset;
}
.realizacje-shot--overlay .realizacje-shot-link {
  position: relative;
  display: block;
}
.realizacje-shot--overlay picture { display: block; }
.realizacje-shot--overlay img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .3s ease;
}
.realizacje-shot--overlay:hover img { transform: scale(1.04); }
.realizacje-shot--overlay figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  border-top: none;
  color: #fff;
}
.realizacje-shot--overlay figcaption::before { display: none; }
.cta-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 10px;
  line-height: 1.25;
  color: var(--text);
}
.cta-title em { font-style: normal; color: #c98900; }

.cta-desc {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  font-size: .88rem;
  color: var(--muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.checklist li.warn { color: var(--text); }
.checklist li.warn::before { content: "\2192"; color: #c98900; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.contact-form label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: .78rem;
  cursor: pointer;
}

.contact-form input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  padding: 0;
  margin-top: 3px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: .9rem;
  font-family: var(--font-b);
  transition: border-color .15s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: var(--focus);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.form-status {
  display: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .87rem;
  background: rgba(31,157,85,.1);
  border: 1px solid rgba(31,157,85,.25);
  color: #147a3e;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.error {
  background: rgba(214,69,69,.08);
  border-color: rgba(214,69,69,.24);
  color: #8f2d20;
}

.contact-form-note {
  margin: 0;
  font-size: .8rem;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.footer-about {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.footer-h {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--text); }

.footer-contact-row {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.footer-contact-row a {
  color: var(--muted);
  text-decoration: none;
}
.footer-contact-row a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: .8rem;
}
.footer-legal a:hover { color: var(--text); }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .service-hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
  }

  .hero-card-media,
  .service-contact-trust-header {
    grid-template-columns: 72px 1fr;
  }

  .hero-card-photo,
  .service-contact-trust-photo {
    width: 72px;
    height: 92px;
  }

  .trust-strip .wrap {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-row,
  .steps-row.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .two-col-wide {
    grid-template-columns: 1fr;
  }

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

  .other-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-emergency,
  .cta-standard {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .topbar-inner > nav { display: none; }

  .mobile-sticky {
    display: flex;
  }

  .wrap {
    width: calc(100% - 32px);
  }
}

@media (max-width: 600px) {
  .wrap,
  .topbar-inner {
    width: calc(100% - 24px);
  }

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

  .steps-row,
  .steps-row.five {
    grid-template-columns: 1fr;
  }

  .other-services {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-strip .wrap {
    grid-template-columns: 1fr 1fr;
  }

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

  .scope-table { font-size: .78rem; }
  .scope-table th,
  .scope-table td { padding: 10px 10px; }

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

  .topbar-cta .btn-wa span { display: none; }

  .service-hero { padding: 32px 0 28px; }
  .section { padding: 40px 0; }
}

@media (max-width: 440px) {
  .other-services {
    grid-template-columns: 1fr;
  }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* Mobile footer and cookie/banner overlap fixes */
@media (max-width: 979px) {
  .has-mobile-sticky .cookie-banner {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 600px) {
  .city-landing .mobile-cta-hide {
    display: none !important;
  }

  .city-landing .hero-card {
    gap: 10px;
    padding: 22px;
  }

  .city-landing .hero-card .hero-trust {
    margin-top: 0;
    padding-top: 12px;
  }

  .city-landing .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .city-landing .footer-grid > :first-child,
  .city-landing .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 440px) {
  .city-landing .mobile-sticky .btn {
    font-size: 0.88rem;
    padding: 12px 14px;
  }

  .city-landing .footer-grid {
    grid-template-columns: 1fr;
  }

  .city-landing .footer-grid > :first-child,
  .city-landing .footer-grid > :last-child {
    grid-column: auto;
  }
}
