/* =========================================================
   ZIADNEPLOSTICE.sk · Laper DDD — 2026
   Bright · clean · high-contrast · navy + orange + green trust
   ========================================================= */

:root {
  --navy: #0e2a47;
  /* primary brand text + dark sections */
  --navy-2: #163a5e;
  --navy-deep: #08203a;
  --ink: #111827;
  --ink-2: #374151;
  --muted: #6b7280;

  --orange: #ff5722;
  /* primary CTA accent */
  --orange-2: #e64a19;
  --orange-soft: #fff3ee;

  --green: #16a34a;
  /* trust chip "doprava zdarma" */
  --green-2: #15803d;
  --green-soft: #e8f6ee;

  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  /* very subtle cool gray-blue */
  --bg-deep: #eef2f7;
  --line: #e2e8f0;
  /* hairlines */
  --line-2: #cbd5e1;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow: 0 4px 12px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .05);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, .18);

  --radius: 10px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --maxw-narrow: 800px;

  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}

img,
svg,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: var(--orange-2);
  text-decoration: none;
  transition: color .15s;
}

a:hover {
  color: var(--orange);
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(2.4rem, 4.6vw + .4rem, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 2.6vw + .5rem, 2.6rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

h4 {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange-2);
}

p {
  margin: 0 0 1em;
  color: var(--ink-2);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--maxw-narrow);
}

/* Visually-hidden skip link — rendered off-screen until focused (a11y standard).
   Bug: with html { overflow-x: hidden } the previous `top: -40px` strategy
   could leak a navy strip at the top of mobile viewports. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: .875rem;
}

/* ================ TOP CALLBAR ================ */
.callbar {
  background: var(--navy);
  color: #fff;
  font-size: .88rem;
}

.callbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 24px;
}

.callbar a {
  color: #fff;
  font-weight: 600;
}

.callbar a:hover {
  color: var(--orange);
}

.callbar-left {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.callbar-right {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.callbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
}

.chip.chip-light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.chip.chip-orange {
  background: var(--orange);
}

/* ================ HEADER ================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: .94rem;
}

.nav-links a:hover {
  color: var(--orange-2);
}

.nav-cta {
  margin-left: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  margin: 4px 0;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .08s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  text-decoration: none !important;
  font-size: .95rem;
  white-space: nowrap;
  font-family: var(--font);
}

.btn-lg {
  padding: 15px 26px;
  font-size: 1rem;
}

.btn-xl {
  padding: 17px 30px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 8px 22px rgba(255, 87, 34, .32);
}

.btn-primary:hover {
  background: var(--orange-2);
  border-color: var(--orange-2);
  color: #fff;
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

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

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-2);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-2);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--bg-alt);
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--orange-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ================ HERO — split, bright ================ */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-2);
  background: var(--green-soft);
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid #c5e9d2;
  line-height: 1.4;
  text-align: left;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw + .4rem, 4rem);
  margin-bottom: 22px;
  color: var(--navy);
}

.hero h1 .hl {
  color: var(--orange);
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-subline {
  font-size: .9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-subline strong {
  color: var(--green-2);
}

.hero-trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero-trust li {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.hero-trust strong {
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-trust span {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.3;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-photo-badge .stars {
  font-size: 1.05rem;
}

.hero-photo-badge .lbl {
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.hero-photo-badge .sub {
  color: var(--muted);
  font-size: .85rem;
}

/* ================ TRUST STRIP ================ */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-strip .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
}

.trust-strip .item svg {
  color: var(--green);
}

.trust-strip .item strong {
  color: #fff;
}

/* ================ SECTIONS ================ */
.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-deep {
  background: var(--bg-deep);
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-navy .section-lead {
  color: rgba(255, 255, 255, .78);
}

.section-navy .eyebrow {
  color: var(--orange);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head.left {
  text-align: left;
}

.section-title {
  margin: 0 0 14px;
}

.section-lead {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 1.06rem;
}

.section-head.left .section-lead {
  margin: 0;
}

/* ================ CTA STRIP ================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 28px 36px;
  border-radius: var(--radius);
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 87, 34, .25), transparent 70%);
  pointer-events: none;
}

.cta-strip>div,
.cta-strip>a {
  position: relative;
  z-index: 1;
}

.cta-strip strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.cta-strip span {
  color: rgba(255, 255, 255, .8);
  font-size: .94rem;
}

/* ================ WHY US ================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .15s, box-shadow .2s, border-color .2s;
  box-shadow: var(--shadow-sm);
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}

.why-item .icon-wrap {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange-2);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.why-item h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.why-item p {
  color: var(--ink-2);
  margin: 0;
}

/* ================ FEATURE SPLIT ================ */
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-split .photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-split .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split .copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.feature-split .copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.feature-split .copy ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}

.feature-split .copy ul li:last-child {
  border-bottom: 0;
}

.feature-split .copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 10px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

/* ================ SERVICES — pest photos ================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .12s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}

.service:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service .photo {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-deep);
  position: relative;
}

.service .photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
}

.service .body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service .num {
  font-size: .74rem;
  font-weight: 700;
  color: var(--orange-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service p {
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 14px;
  font-size: .95rem;
}

.service ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.service ul li {
  font-size: .88rem;
  color: var(--ink-2);
  padding: 4px 0 4px 22px;
  position: relative;
}

.service ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.service .more {
  font-size: .9rem;
  color: var(--orange-2);
  font-weight: 700;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service .more::after {
  content: "→";
  transition: transform .15s;
}

.service:hover .more::after {
  transform: translateX(4px);
}

/* ================ PROCESS — fixed numbers ================ */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}

.p-step {
  position: relative;
  padding: 24px 16px;
  text-align: center;
  list-style: none;
}

.p-step::marker {
  content: "";
}

.p-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(255, 87, 34, .32);
  border: 4px solid var(--bg-deep);
  line-height: 1;
}

.section-deep .p-step .num {
  border-color: var(--bg-deep);
}

.section-alt .p-step .num {
  border-color: var(--bg-alt);
}

.p-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 47px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  opacity: .22;
  z-index: 0;
}

.p-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.p-step p {
  font-size: .87rem;
  color: var(--ink-2);
  margin: 0;
}

.p-step .tag {
  display: inline-block;
  margin-top: 8px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange-2);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.process-photos div {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

/* ================ INLINE CONTACT ================ */
.contact-inline {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: start;
  box-shadow: var(--shadow);
}

.contact-inline .ci-info h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.contact-inline .ci-info p {
  color: var(--ink-2);
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.contact-inline .ci-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ci-block {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color .15s, background .15s;
}

.ci-block:hover:not(.static) {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--ink);
}

.ci-block.static {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
}

.ci-block .ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  color: var(--orange-2);
  border-radius: var(--radius-sm);
}

.ci-block strong {
  display: block;
  font-size: 1.12rem;
  color: var(--navy);
  margin: 1px 0;
  font-weight: 800;
}

.ci-block .ci-label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
}

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

.contact-form h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-form .sub {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: .92rem;
}

.contact-form label {
  display: block;
  margin: 0 0 14px;
}

.contact-form label>span {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, .18);
}

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

/* Reserve space for Cloudflare Turnstile widget (CLS fix) */
.cf-turnstile {
  min-height: 65px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row label {
  margin: 0;
}

.check {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--ink-2);
}

.check input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.form-status {
  margin-top: 12px;
  font-size: .92rem;
  min-height: 1.4em;
}

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

.form-status.err {
  color: var(--orange-2);
}

/* ================ REVIEWS ================ */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.rating-summary .g-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.rating-summary strong {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 800;
}

.rating-summary .stars {
  font-size: 1.05rem;
}

.rating-summary span.muted {
  font-size: .88rem;
}

.stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  /* Reserve space so JS-injected reviews don't shift layout (CLS fix) */
  min-height: 540px;
  contain: layout;
}

@media (max-width: 980px) {
  .reviews {
    min-height: 880px;
  }
}

@media (max-width: 720px) {
  .reviews {
    min-height: 1680px;
  }
}

.reviews-loading {
  position: relative;
}

.reviews-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(15, 23, 42, .04) 12px 14px),
    var(--bg-alt);
  border-radius: var(--radius);
  animation: review-shimmer 1.4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes review-shimmer {
  from {
    opacity: .6;
  }

  to {
    opacity: .9;
  }
}

.reviews-fallback {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.reviews-fallback p {
  color: var(--ink-2);
  margin-bottom: 18px;
}

.review {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, box-shadow .2s;
}

.review:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.review .stars {
  font-size: 1rem;
  margin-bottom: 12px;
}

.review p {
  color: var(--ink);
  font-size: .98rem;
  flex: 1;
}

.review footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.review footer strong {
  color: var(--navy);
  display: block;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 2px;
}

.review footer .meta {
  display: flex;
  flex-direction: column;
}

.review .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.review .avatar.bg-blue {
  background-color: #5a72c5;
}

.review .avatar.bg-purple {
  background-color: #7e57c2;
}

.review .avatar.bg-rose {
  background-color: #c25770;
}

.review .avatar.bg-green {
  background-color: #4a8e6a;
}

.review .avatar.bg-orange {
  background-color: var(--orange);
}

.review .avatar.bg-teal {
  background-color: #2a9d8f;
}

.reviews-cta {
  text-align: center;
  margin-top: 32px;
}

/* ================ REFERENCES ================ */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ref-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .15s, transform .12s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}

.ref-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ref-card .ref-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-deep);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ref-card h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.ref-card p {
  color: var(--ink-2);
  font-size: .9rem;
  margin: 0;
}

.ref-card .ref-meta {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 8px;
}

.ref-card .ref-logo {
  height: 44px;
  max-width: 140px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.ref-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: .92rem;
}

/* ================ PESTS / FAQ ================ */
.pest,
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s;
}

.pest:hover,
.faq:hover {
  border-color: var(--line-2);
}

.pest[open],
.faq[open] {
  border-color: var(--orange);
}

.pest summary,
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  user-select: none;
  font-size: 1.05rem;
  color: var(--navy);
}

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

.pest summary em {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
  font-size: .9em;
}

.pest .chev,
.faq .chev {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--orange-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-2);
  transition: transform .25s, background .15s, color .15s;
  font-size: .8rem;
  font-weight: 700;
}

.pest[open] .chev,
.faq[open] .chev {
  transform: rotate(180deg);
  background: var(--orange);
  color: #fff;
}

.pest-body {
  padding: 0 24px 22px;
  color: var(--ink-2);
}

.pest-body h4 {
  color: var(--navy);
  margin: 14px 0 6px;
}

.pest-body ul {
  padding-left: 20px;
}

.pest-body ul li {
  margin-bottom: 4px;
}

.faq summary {
  padding: 20px 24px;
  font-size: 1rem;
}

.faq>div {
  padding: 0 24px 22px;
  color: var(--ink-2);
}

.faq strong {
  color: var(--navy);
}

/* ================ CITIES ================ */
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cities span {
  display: inline-block;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  color: var(--ink-2);
  transition: background .15s, color .15s, border-color .15s;
}

.cities span:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 360px;
  margin-top: 36px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================ FINAL CTA ================ */
.final-cta {
  position: relative;
  padding: 88px 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('img/foto-detail-1.webp');
  background-size: cover;
  background-position: center;
  opacity: .18;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 42, 71, .85), rgba(8, 32, 58, .65));
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.final-cta p {
  color: rgba(255, 255, 255, .88);
  max-width: 56ch;
  margin: 0 auto 32px;
  font-size: 1.08rem;
}

.final-cta .actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta .doprava-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .78);
}

.final-cta .doprava-note .check {
  color: var(--green);
}

/* ================ FOOTER ================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .7);
  padding: 56px 0 24px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: .8rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .7);
}

.site-footer a:hover {
  color: var(--orange);
}

.site-footer strong {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid p {
  margin: 6px 0;
  font-size: .9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 48px;
}

.footer-cert {
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  padding: 14px 16px;
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius-sm);
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-cert img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.footer-cert strong {
  display: block;
  color: #fff;
  font-size: .85rem;
  margin-bottom: 2px;
}

.footer-cert a {
  color: rgba(255, 255, 255, .85);
  text-decoration: underline;
}

.footer-cert a:hover {
  color: #fff;
}

/* ================ O NAS section ================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-grid .copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.about-grid .photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cred-head {
  text-align: center;
  max-width: 720px;
  margin: 64px auto 0;
}

.cred-head h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 6px 0 10px;
  font-weight: 700;
}

.cred-head p {
  color: var(--ink-2);
  margin: 0;
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}

.cred-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, box-shadow .2s, transform .12s;
  text-decoration: none !important;
  color: var(--ink);
}

a.cred-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.cred-card .cred-img-wrap {
  width: 100%;
  height: 130px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 12px;
  overflow: hidden;
}

.cred-card .cred-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.cred-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cred-card span {
  color: var(--ink-2);
  font-size: .85rem;
  line-height: 1.5;
}

.cred-card .cred-cta {
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange-2);
}

/* ================ PLOSTICE-TEST checklist ================ */
.plt-intro {
  background: var(--orange-soft);
  border: 1.5px solid #ffd1bd;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
}

.plt-intro strong {
  color: var(--orange-2);
}

.plt-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.plt-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.plt-item:hover {
  border-color: var(--orange);
}

.plt-item input {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--orange);
  cursor: pointer;
}

.plt-item h3 {
  font-size: 1rem;
  margin: 0 0 4px;
  color: var(--navy);
}

.plt-item p {
  font-size: .9rem;
  color: var(--ink-2);
  margin: 0;
}

.plt-item input:checked~div h3 {
  color: var(--orange-2);
}

.plt-item:has(input:checked) {
  background: var(--orange-soft);
  border-color: var(--orange);
}

.plt-result {
  margin-top: 32px;
  padding: 32px 32px 36px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  display: none;
  text-align: center;
}

.plt-result.show {
  display: block;
}

.plt-result h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.plt-result .score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  margin: 6px 0 14px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}

.plt-progress {
  width: min(440px, 100%);
  height: 10px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  overflow: hidden;
}

.plt-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange) 0%, #ffb070 100%);
  border-radius: 999px;
  transition: width .45s cubic-bezier(.2, .8, .2, 1);
}

.plt-result p {
  color: rgba(255, 255, 255, .86);
  margin: 12px 0 22px;
}

.plt-result .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.plt-result .actions .btn {
  margin: 0;
}

/* Symptom photo grid (subpages) */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.symptom-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.symptom-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.symptom-grid figcaption {
  padding: 10px 14px;
  font-size: .85rem;
  color: var(--ink-2);
  background: var(--bg-alt);
}

.symptom-grid figcaption strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

/* ================ FLOATING CALL (desktop tablet only) ================ */
.floating-call {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(255, 87, 34, .5);
  font-weight: 700;
  align-items: center;
  gap: 8px;
  z-index: 60;
}

.floating-call:hover {
  background: var(--orange-2);
  color: #fff;
}

/* Mobile sticky bottom call bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1.2;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.mobile-cta-bar:hover {
  background: var(--orange-2);
  color: #fff;
}

.mobile-cta-bar>span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-cta-bar .sub {
  font-size: .72rem;
  font-weight: 500;
  opacity: .92;
  display: block;
  margin-top: 2px;
}

/* ================ LIGHTBOX (click-to-enlarge for galleries) ================ */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
  animation: lb-fade .18s ease-out;
}

.lb-overlay.open {
  display: flex;
}

@keyframes lb-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lb-figure {
  margin: 0;
  max-width: min(1200px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.lb-caption {
  color: #fff;
  margin-top: 14px;
  text-align: center;
  font-size: .95rem;
  max-width: 720px;
  line-height: 1.5;
  background: rgba(255, 255, 255, .06);
  padding: 8px 16px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.lb-counter {
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: .04em;
}

.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  transition: background .15s, transform .08s;
}

.lb-close:hover,
.lb-nav:hover {
  background: rgba(255, 255, 255, .22);
}

.lb-close:active,
.lb-nav:active {
  transform: scale(.95);
}

.lb-close {
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lb-nav:active {
  transform: translateY(-50%) scale(.95);
}

.lb-prev {
  left: 18px;
}

.lb-next {
  right: 18px;
}

@media (max-width: 720px) {
  .lb-overlay {
    padding: 16px;
  }

  .lb-img {
    max-height: calc(100vh - 180px);
  }

  .lb-nav {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .lb-close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .lb-prev {
    left: 10px;
  }

  .lb-next {
    right: 10px;
  }
}

/* hint cursor on clickable items */
.symptom-grid figure {
  cursor: zoom-in;
}

.photo-strip .item {
  cursor: zoom-in;
}

/* ================ DIAGNOSTIC STRIP (homepage — bedbug evidence + CTA to test) ================ */
.diagnostic-strip {
  background: var(--bg-alt);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}

.diagnostic-strip .diagnostic-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.diagnostic-strip .diagnostic-head h2 {
  margin: 6px 0 12px;
}

.diagnostic-strip .diagnostic-head p {
  color: var(--ink-2);
  margin: 0;
}

.diagnostic-strip .photo-strip {
  background: transparent;
  padding: 0;
  border: 0;
}

.diagnostic-strip .photo-strip .container {
  padding: 0;
}

.diagnostic-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ================ PHOTO STRIP (under hero) ================ */
.photo-strip {
  background: var(--bg);
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.photo-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-strip .item {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .2s;
}

.photo-strip .item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.photo-strip .item::after {
  content: attr(data-cap);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

.photo-strip .item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
}

/* ================ CENA / PRICE SECTION ================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .12s, box-shadow .2s;
}

.price-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.price-card .ptag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange-2);
  background: var(--orange-soft);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0;
}

.price-card .price small {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
}

.price-card ul li {
  font-size: .9rem;
  color: var(--ink-2);
  padding: 4px 0 4px 22px;
  position: relative;
}

.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.price-card .btn {
  margin-top: auto;
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: .92rem;
  color: var(--ink-2);
  flex-wrap: wrap;
}

.price-note strong {
  color: var(--green-2);
}

/* ================ PAGE HERO (subpages) ================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 18px;
  max-width: 22ch;
}

.page-hero .lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .88);
  max-width: 64ch;
  margin-bottom: 24px;
}

.page-hero .hero-tag {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: transparent;
}

.page-hero .hero-cta {
  margin: 0;
}

.breadcrumb {
  font-size: .88rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .72);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .sep {
  margin: 0 8px;
  opacity: .6;
}

/* ================ PROSE (subpages long-form) ================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0;
}

.prose h2 {
  font-size: 1.85rem;
  margin: 56px 0 16px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--navy);
}

.prose p,
.prose ul,
.prose ol {
  color: var(--ink-2);
}

.prose ul,
.prose ol {
  padding-left: 24px;
}

.prose li {
  margin-bottom: 8px;
}

.prose .lead-para {
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.6;
}

.prose blockquote {
  border-left: 4px solid var(--orange);
  padding: 4px 22px;
  margin: 24px 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.prose .photo {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.prose .photo img {
  width: 100%;
  height: auto;
  display: block;
}

.prose .photo figcaption {
  font-size: .85rem;
  color: var(--muted);
  padding: 10px 16px;
  background: var(--bg-alt);
}

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }

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

  .p-step:nth-child(3n)::after {
    display: none;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-split .photo {
    aspect-ratio: 16/10;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .hero-photo {
    aspect-ratio: 16/10;
    max-width: 580px;
    margin: 0 auto;
  }

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

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

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

  .contact-inline {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 28px;
  }

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

  .callbar .container {
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px;
  }

  .process-photos {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip .container {
    gap: 18px;
  }

  .photo-strip .container {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid .photo {
    aspect-ratio: 16/10;
    max-width: 580px;
    margin: 0 auto;
  }

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

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

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .section-tight {
    padding: 40px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-nav.open {
    display: flex;
  }

  .why-grid,
  .services,
  .reviews,
  .ref-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .floating-call {
    display: none;
  }

  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 88px;
  }

  .photo-strip .container {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .hero h1 {
    word-break: break-word;
    hyphens: auto;
  }

  .hero-cta .btn,
  .final-cta .actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 14px;
    padding-top: 18px;
  }

  .hero-trust strong {
    font-size: 1.3rem;
  }

  .hero-trust span {
    font-size: .76rem;
  }

  .container {
    padding: 0 18px;
  }

  .nav {
    padding: 12px 18px;
  }

  .callbar .container {
    padding: 8px 18px;
  }

  /* Subpage-hero typography fits narrow viewports */
  .page-hero h1 {
    word-break: break-word;
  }

  .p-step:nth-child(2n)::after {
    display: none;
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .callbar {
    display: none;
  }

  .process-photos {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid rgba(255, 87, 34, .55);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--orange);
  color: #fff;
}