:root {
  --ink: #101414;
  --muted: #5a6560;
  --paper: #fbfbf7;
  --white: #ffffff;
  --line: #dfe5df;
  --green: #0d6b55;
  --green-dark: #093f35;
  --gold: #b88a35;
  --aqua: #dff3ef;
  --signal: #8f2735;
  --shadow: 0 24px 70px rgba(16, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

main {
  padding-top: 110px;
}

::selection {
  background: var(--green);
  color: var(--white);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.top-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  background: var(--green-dark);
  color: #eaf7f3;
  font-size: 14px;
}

.top-strip a {
  text-decoration: none;
}

.top-phone {
  font-weight: 950;
}

.top-email {
  color: rgba(234, 247, 243, 0.86);
}

.top-languages {
  color: rgba(234, 247, 243, 0.78);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button,
.language-switch a {
  min-width: 34px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #eaf7f3;
  font: inherit;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"],
.language-switch a[aria-current="page"] {
  background: #eaf7f3;
  color: var(--green-dark);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(251, 251, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

section,
article {
  scroll-margin-top: 130px;
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 20, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(13, 107, 85, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand-text {
  display: block;
  min-width: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.02;
  white-space: nowrap;
}

.brand small {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  font-weight: 650;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--green);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-call {
  background: var(--ink);
  color: var(--white);
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(13, 107, 85, 0.25);
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost-dark {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 82svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10, 14, 14, 0.92) 0%, rgba(10, 14, 14, 0.75) 42%, rgba(10, 14, 14, 0.2) 72%),
    url("hero-dezynsekcja-olsztyn.jpg") center right / cover no-repeat;
  color: var(--white);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 96px;
  animation: heroRise 900ms ease both;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead,
.page-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(900px, 100%);
  margin: 46px 0 0;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  padding: 18px;
  background: rgba(12, 17, 17, 0.58);
}

.hero-facts dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 800;
}

.intro-band,
.quick-diagnosis,
.language-band,
.quality-section,
.visual-story,
.section,
.split-section,
.assurance-band,
.coverage-section,
.contact-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 42px;
  padding: 70px 0;
}

.intro-copy h2,
.section-heading h2,
.split-section h2,
.quality-copy h2,
.coverage-copy h2,
.contact-band h2,
.content-section h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-copy p:not(.kicker),
.section-heading p,
.split-section p,
.quality-copy p,
.coverage-copy p,
.content-section p,
.article-body p {
  color: var(--muted);
  font-size: 18px;
}

.language-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
  padding: 54px max(20px, calc((100% - 1180px) / 2));
  background: #f4efe4;
  border-top: 1px solid rgba(184, 138, 53, 0.22);
  border-bottom: 1px solid rgba(184, 138, 53, 0.22);
}

.language-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.language-band p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.compact-band {
  margin-top: 10px;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: center;
  padding: 78px 0;
}

.quality-media {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.quality-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.quality-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 20, 20, 0.06);
}

.quality-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.15;
}

.quality-card p {
  margin: 0;
}

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

.trust-card,
.audience-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover,
.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 53, 0.42);
  box-shadow: 0 16px 40px rgba(16, 20, 20, 0.08);
}

.trust-card {
  min-height: 190px;
  padding: 22px;
}

.trust-card h3,
.audience-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.trust-card p,
.audience-card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 107, 85, 0.16);
  border-radius: 8px;
  background: var(--aqua);
  color: var(--green);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: end;
  padding: 18px 0 78px;
}

.visual-story-copy h2,
.assurance-band h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

.visual-story-copy p:not(.kicker),
.assurance-band p {
  color: var(--muted);
  font-size: 18px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.visual-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.visual-card:first-child {
  grid-row: span 2;
}

.visual-card img,
.card-image img,
.page-hero-media img,
.wide-image img,
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 20, 20, 0.74);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid,
.blog-grid,
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.blog-card,
.guarantee-grid article,
.steps article,
.method-panel,
.contact-direct,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 20, 20, 0.06);
}

.service-card,
.blog-card {
  overflow: hidden;
  min-height: 100%;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 107, 85, 0.28);
  box-shadow: 0 24px 70px rgba(16, 20, 20, 0.13);
}

.card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe5df;
}

.card-image img {
  transition: transform 500ms ease;
}

.service-card:hover .card-image img,
.blog-card:hover .card-image img {
  transform: scale(1.045);
}

.card-body {
  padding: 24px;
}

.guarantee-grid article {
  min-height: 250px;
  padding: 24px;
}

.service-card span,
.blog-card span,
.micro-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3,
.blog-card h3,
.blog-card h2,
.guarantee-grid h3,
.steps h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.service-card p,
.blog-card p,
.guarantee-grid p,
.steps p,
.contact-direct p,
.form-note {
  color: var(--muted);
}

.service-card a,
.blog-card a,
.footer-grid a,
.footer-bottom a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.quick-diagnosis {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: stretch;
  margin-top: -42px;
  padding: 0 0 76px;
}

.diagnosis-picker {
  min-height: 430px;
  padding: 46px 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.diagnosis-picker h2,
.diagnosis-result h2 {
  margin: 26px 0 20px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
}

.diagnosis-picker p:not(.kicker) {
  max-width: 800px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}

.diagnosis-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.diagnosis-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 19px;
  font-weight: 950;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.diagnosis-option:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 107, 85, 0.34);
}

.diagnosis-option.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.diagnosis-result-panel {
  min-height: 430px;
}

.diagnosis-result {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  overflow: hidden;
  padding: 58px 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(9, 63, 53, 0.94), rgba(9, 63, 53, 0.82)),
    var(--diagnosis-image) center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.diagnosis-result::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 34%);
}

.diagnosis-result .kicker {
  color: var(--gold);
}

.diagnosis-result h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 68px);
}

.diagnosis-result p:not(.kicker) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.5;
}

.diagnosis-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 950;
  text-decoration: none;
}

.assurance-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  padding: 74px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.assurance-columns p {
  margin: 0;
}

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

.audience-card {
  min-height: 230px;
  padding: 22px;
}

.audience-card .icon {
  background: #f4efe4;
  color: var(--green-dark);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.feature-row article {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 20, 20, 0.06);
}

.feature-row strong,
.feature-row span {
  display: block;
}

.feature-row strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 15px;
  text-transform: uppercase;
}

.feature-row span {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.steps article {
  padding: 24px;
}

.steps span {
  color: var(--gold);
  font-size: 34px;
  font-weight: 950;
}

.guarantee-section {
  width: 100%;
  max-width: none;
  padding: 82px max(20px, calc((100% - 1180px) / 2));
  background: var(--green-dark);
  color: var(--white);
}

.guarantee-section .section-heading p,
.guarantee-grid p {
  color: rgba(255, 255, 255, 0.74);
}

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

.guarantee-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.guarantee-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.guarantee-note strong {
  color: var(--gold);
}

.guarantee-note span {
  color: rgba(255, 255, 255, 0.78);
}

.clients-section {
  padding-bottom: 26px;
}

.coverage-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 54px;
  align-items: center;
  padding: 82px max(20px, calc((100% - 1180px) / 2));
  background: #edf6f3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.area-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(13, 107, 85, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.coverage-map {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 138, 53, 0.28), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(223, 243, 239, 0.12), transparent 30%),
    linear-gradient(135deg, #0d2f29 0%, #111616 100%);
  box-shadow: var(--shadow);
  color: var(--white);
}

.coverage-map::before,
.coverage-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.coverage-map::before {
  width: 420px;
  height: 420px;
  left: -140px;
  top: -110px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.coverage-map::after {
  right: 28px;
  top: 28px;
  bottom: 28px;
  width: min(58%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
}

.map-center,
.map-town-grid,
.map-note {
  position: relative;
  z-index: 1;
}

.map-center {
  grid-row: 1 / span 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  backdrop-filter: blur(12px);
}

.map-center::before {
  content: "";
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 8px, transparent 9px),
    radial-gradient(circle, rgba(184, 138, 53, 0.26) 0 34px, transparent 35px),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(184, 138, 53, 0.42);
}

.map-center span,
.map-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-center strong {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}

.map-center small {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.map-town-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
}

.map-town-grid span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.map-town-grid span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184, 138, 53, 0.16);
}

.map-note {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(184, 138, 53, 0.16);
  border: 1px solid rgba(184, 138, 53, 0.28);
}

.map-note strong {
  font-size: 22px;
  line-height: 1.1;
}

.review-grid,
.landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card,
.landing-link {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 20, 20, 0.06);
}

.review-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.review-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

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

.landing-link {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 0.55fr);
  gap: 0;
  min-height: 220px;
  padding: 0;
  color: var(--ink);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.landing-link:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 107, 85, 0.28);
  box-shadow: 0 20px 52px rgba(16, 20, 20, 0.12);
}

.landing-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--ink);
}

.landing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.landing-link:hover .landing-media img {
  transform: scale(1.05);
}

.landing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(16, 20, 20, 0.58) 100%);
}

.landing-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
}

.landing-icon .icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.62);
}

.landing-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(17, 22, 22, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.landing-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.landing-link strong {
  color: var(--green);
  font-size: 22px;
  line-height: 1.12;
}

.landing-link span {
  color: var(--muted);
}

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

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-band {
  padding: 78px 0 88px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
}

.contact-direct,
.contact-form {
  padding: 28px;
}

.phone-xl {
  display: block;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--aqua);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.contact-form label:nth-of-type(6),
.contact-form .consent,
.contact-form button,
.form-status,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(13, 107, 85, 0.22);
  background: var(--aqua);
  color: var(--green-dark);
}

.form-status.is-error {
  border: 1px solid rgba(143, 39, 53, 0.22);
  background: #f8e8eb;
  color: var(--signal);
}

.page-hero {
  min-height: 56svh;
  display: flex;
  align-items: center;
  padding: 80px max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, #edf6f3 0%, #fbfbf7 48%, #f4efe4 100%);
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero-media {
  aspect-ratio: 16 / 11;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.page-hero.compact {
  min-height: 42svh;
}

.page-hero p {
  color: var(--muted);
}

.content-section {
  max-width: 1180px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.method-panel {
  padding: 28px;
}

.wide-image,
.article-image {
  margin: 0 0 36px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.wide-image {
  aspect-ratio: 16 / 7;
}

.article-image {
  aspect-ratio: 16 / 8;
  margin-top: 30px;
}

.article {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 34px;
}

.article-header h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
}

.article-header p:not(.kicker) {
  color: var(--muted);
  font-size: 21px;
}

.article-body {
  margin-top: 42px;
}

.article-body.standalone {
  width: min(880px, calc(100% - 40px));
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.article-body a {
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  background: #111616;
  color: var(--white);
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.6fr));
  gap: 36px;
  padding: 52px 0;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand small,
.footer-grid p,
.footer-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 9px 0;
}

.footer-grid a[href^="mailto"] {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
}

.mobile-sticky-cta {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 45;
  width: min(940px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 22, 22, 0.94);
  color: var(--white);
  box-shadow: 0 22px 70px rgba(5, 9, 8, 0.34);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-actions a,
.cookie-actions button {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.cookie-actions a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  opacity: 0.82;
}

.cookie-actions button {
  border: 0;
  padding: 0 18px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13, 107, 85, 0.2);
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

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

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .main-nav,
  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

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

  .split-section,
  .language-band,
  .quality-section,
  .visual-story,
  .assurance-band,
  .coverage-section,
  .quick-diagnosis,
  .page-hero-split,
  .intro-band,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    max-width: 720px;
  }

  .quick-diagnosis {
    margin-top: -28px;
    padding-bottom: 58px;
  }

  .diagnosis-picker,
  .diagnosis-result-panel {
    min-height: auto;
  }

  .diagnosis-result {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .top-strip {
    justify-content: center;
    gap: 8px 12px;
    padding: 7px 10px;
    overflow: visible;
    white-space: nowrap;
    font-size: 12px;
  }

  .top-strip .top-email {
    display: none;
  }

  .top-languages {
    display: none;
  }

  .top-phone {
    min-width: max-content;
  }

  .header-inner,
  .intro-band,
  .quick-diagnosis,
  .section,
  .split-section,
  .quality-section,
  .visual-story,
  .assurance-band,
  .coverage-section,
  .contact-band,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    gap: 10px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(10, 14, 14, 0.94) 0%, rgba(10, 14, 14, 0.7) 100%),
      url("hero-dezynsekcja-olsztyn.jpg") center right / cover no-repeat;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 70px 0 48px;
  }

  .hero-facts,
  .steps,
  .quality-grid,
  .service-grid,
  .blog-grid,
  .blog-grid.wide,
  .visual-grid,
  .assurance-columns,
  .trust-grid,
  .audience-grid,
  .feature-row,
  .guarantee-grid,
  .review-grid,
  .landing-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .language-band {
    padding: 44px 14px;
  }

  .quick-diagnosis {
    margin-top: 0;
    padding: 34px 0 50px;
  }

  .diagnosis-picker {
    padding: 28px 22px;
  }

  .diagnosis-picker h2,
  .diagnosis-result h2 {
    font-size: 34px;
  }

  .diagnosis-picker p:not(.kicker),
  .diagnosis-result p:not(.kicker) {
    font-size: 17px;
  }

  .diagnosis-options {
    gap: 10px;
    margin-top: 24px;
  }

  .diagnosis-option {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 0 14px;
    font-size: 16px;
  }

  .diagnosis-result {
    min-height: 340px;
    padding: 34px 24px;
  }

  .diagnosis-call {
    min-height: 54px;
    font-size: 18px;
  }

  .quality-section {
    padding: 54px 0;
  }

  .quality-media {
    aspect-ratio: 16 / 10;
  }

  .quality-card {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    padding: 54px 14px;
  }

  .coverage-map {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .coverage-map::before,
  .coverage-map::after {
    display: none;
  }

  .map-center,
  .map-town-grid,
  .map-note {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .map-center {
    grid-row: auto;
    min-height: 210px;
  }

  .map-town-grid {
    grid-template-columns: 1fr;
  }

  .landing-link {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .landing-media {
    aspect-ratio: 16 / 9;
  }

  .landing-copy {
    padding: 22px;
  }

  .guarantee-note {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-of-type(6),
  .contact-form .consent,
  .contact-form button,
  .form-status,
  .form-note {
    grid-column: auto;
  }

  .page-hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    right: 10px;
    bottom: 78px;
    left: 10px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .cookie-actions {
    justify-content: space-between;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(17, 22, 22, 0.92);
    box-shadow: 0 18px 46px rgba(16, 20, 20, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 950;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--green);
    color: var(--white);
  }

  .mobile-sticky-cta a:last-child {
    background: var(--white);
    color: var(--ink);
  }
}
