:root {
  --ink: #101412;
  --ink-soft: #414a45;
  --muted: #5d665f;
  --paper: #f6f3ea;
  --paper-strong: #ebe5d7;
  --surface: #fcfaf4;
  --line: #d8d0c1;
  --line-strong: #c9bfad;
  --black: #0b0f0d;
  --carbon: #0b0f0d;
  --steel: #141a17;
  --steel-soft: #202823;
  --safety: #ff6a00;
  --safety-dark: #c84f00;
  --eyebrow-light: #a84300;
  --green: #2d5f52;
  --brick: #a44732;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 15, 13, 0.28);
  --shadow-soft: 0 14px 36px rgba(11, 15, 13, 0.12);
  --shadow-card: 0 22px 52px rgba(11, 15, 13, 0.16);
  --ring: 0 0 0 3px rgba(255, 106, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 20, 18, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(16, 20, 18, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

a,
button,
input,
select,
textarea,
summary {
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 178, 60, 0.55);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Author styles on .btn use display:inline-flex, which otherwise overrides
   the browser's default [hidden] rule on step-form controls. */
[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: clamp(10px, 2vw, 22px);
  bottom: clamp(10px, 2vw, 22px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: min(560px, calc(100% - 20px));
  padding: 12px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  border-radius: 8px;
  color: var(--white);
  background: rgba(11, 15, 13, 0.96);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.cookie-copy {
  min-width: 0;
}

.cookie-banner p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.38;
}

.cookie-banner a {
  color: var(--safety);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.cookie-actions .btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-actions .btn-dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-close {
  position: absolute;
  top: 6px;
  right: 6px;
  display: none;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.footer-privacy-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  background: rgba(11, 15, 13, 0.94);
  border-bottom: 1px solid rgba(255, 106, 0, 0.26);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  min-height: 44px;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.3), 0 14px 32px rgba(255, 106, 0, 0.2);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.brand-mark::before {
  inset: -18px 20px -18px auto;
  width: 18px;
  background: rgba(11, 15, 13, 0.94);
  transform: rotate(22deg);
}

.brand-mark::after {
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 2px;
  background: rgba(11, 15, 13, 0.72);
}

.brand strong,
.brand small {
  display: block;
  overflow-wrap: anywhere;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

/* 9 položek navigace: mezi hamburgerem a plnou šířkou je potřeba úspornější verze */
@media (max-width: 1360px) {
  .site-nav a {
    padding: 10px 7px;
    font-size: 0.88rem;
  }
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(244, 178, 60, 0.18);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(38px, 1fr));
  align-items: center;
  min-height: 44px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.language-switcher a,
.language-switcher span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 6px;
  color: currentColor;
  font-size: 0.8rem;
  font-weight: 950;
  line-height: 1;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.language-switcher .is-disabled {
  opacity: 0.46;
  cursor: default;
}

.language-switcher .is-active {
  color: var(--carbon);
  background: var(--safety);
}

.header-call,
.header-quote,
.btn,
.quick-contact a,
.contact-cards a,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-call {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--safety);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-quote {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-quote:hover,
.header-quote:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 0, 0.72);
  background: rgba(255, 106, 0, 0.16);
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.header-call svg,
.header-call i {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(720px, 82vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.98), rgba(11, 15, 13, 0.86) 42%, rgba(11, 15, 13, 0.2)),
    url("assets/hero-truck.webp") 68% center / cover;
  filter: saturate(0.82) contrast(1.12);
}

.hero-overlay {
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 92px),
    linear-gradient(0deg, rgba(11, 15, 13, 0.92), rgba(11, 15, 13, 0) 42%),
    radial-gradient(circle at 80% 22%, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0) 32%),
    linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0) 34%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: clamp(110px, 18vh, 180px);
  left: clamp(18px, 4vw, 52px);
  width: 3px;
  height: 128px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--safety), transparent);
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, transparent, var(--safety), transparent);
  opacity: 0.8;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--eyebrow-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-section .eyebrow,
.area-panel .eyebrow,
.site-footer .eyebrow {
  color: var(--safety);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.55vw, 1.26rem);
  font-weight: 650;
}

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

.hero-command {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(560px, 100%);
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--safety);
  border-radius: 8px;
  background: rgba(11, 15, 13, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-command i {
  width: 34px;
  height: 34px;
  color: var(--safety);
}

.hero-command strong,
.hero-command span {
  display: block;
}

.hero-command strong {
  line-height: 1.15;
}

.hero-command span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn i,
.section-link i,
.text-link i {
  transition: transform 160ms ease;
}

.btn:hover i,
.btn:focus-visible i,
.section-link:hover i,
.section-link:focus-visible i,
.text-link:hover i,
.text-link:focus-visible i {
  transform: translateX(2px);
}

.btn-primary {
  color: var(--carbon);
  background: var(--safety);
  box-shadow: 0 20px 42px rgba(255, 106, 0, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff7a1f;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.18);
}

.btn-copy {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.btn-copy:hover,
.btn-copy:focus-visible {
  border-color: rgba(33, 100, 82, 0.26);
  background: #fff8e8;
}

.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible,
.section-link:hover,
.section-link:focus-visible {
  color: var(--safety-dark);
  text-decoration-color: currentColor;
}

.text-link.light {
  color: var(--safety);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-facts div {
  min-height: 96px;
  padding: 16px;
  background: rgba(11, 15, 13, 0.76);
  backdrop-filter: blur(14px);
  transition: background 180ms ease;
}

.hero-facts dt {
  margin-bottom: 8px;
  color: var(--safety);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.quick-contact {
  background: var(--carbon);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 106, 0, 0.32);
}

.quick-contact-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 10px 24px;
  text-align: center;
  font-weight: 850;
}

.quick-contact-inner > * {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.25;
}

.quick-contact-inner i {
  flex: 0 0 auto;
}

.quick-contact-inner span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.quick-contact a {
  transition: color 160ms ease, opacity 160ms ease;
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  color: var(--safety);
}

.section.proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.proof-strip article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  justify-items: start;
  min-height: 98px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.proof-strip article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--safety), rgba(255, 106, 0, 0.08));
}

.proof-strip i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--safety);
}

.proof-strip strong {
  justify-self: start;
  text-align: left;
  line-height: 1.18;
}

.proof-strip span {
  grid-column: 2;
  text-align: left;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 0;
}

.visual-proof-copy,
.visual-proof-card,
.photo-brief-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visual-proof-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 106, 0, 0.18), transparent 34%),
    linear-gradient(135deg, var(--steel), var(--carbon));
  box-shadow: var(--shadow);
}

.visual-proof-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.visual-proof-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.visual-proof-copy .section-link {
  color: var(--safety);
}

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

.visual-proof-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.visual-proof-card.image-card {
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
}

.visual-proof-card picture,
.visual-proof-card img {
  width: 100%;
  height: 100%;
}

.visual-proof-card img {
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
}

.visual-proof-card div {
  padding: 18px;
}

.visual-proof-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--safety-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-proof-card strong {
  display: block;
  line-height: 1.2;
}

.proof-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 8px;
  color: var(--white);
  background-color: var(--black);
  background:
    linear-gradient(135deg, rgba(11, 15, 13, 0.94), rgba(29, 36, 32, 0.9)),
    var(--black);
  box-shadow: var(--shadow-card);
}

.proof-summary h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  line-height: 1.02;
}

.proof-summary p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.proof-summary-grid article {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-summary-grid i {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--black);
  background: var(--safety);
}

.proof-summary-grid strong,
.proof-summary-grid span {
  display: block;
}

.proof-summary-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.subpage-showcase {
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(46px, 6vw, 76px);
}

.subpage-showcase + .section {
  padding-top: clamp(42px, 6vw, 72px);
}

.subpage-showcase .visual-proof-card img {
  min-height: 240px;
}

.proof-card-dark {
  grid-column: 1 / -1;
  display: grid;
  min-height: 190px;
  align-content: center;
  padding: 24px;
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 26px),
    linear-gradient(135deg, var(--carbon), var(--steel-soft));
  border-color: rgba(255, 106, 0, 0.28);
}

.proof-card-dark .proof-number {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
}

.proof-card-dark h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.proof-card-dark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.contact-section {
  scroll-margin-top: 96px;
}

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 620px;
}

.section-head h2,
.split-content h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.split-content p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.operation-flow,
.container-visual {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 106, 0, 0.18), transparent 32%),
    linear-gradient(135deg, var(--steel), var(--carbon));
  box-shadow: var(--shadow);
}

.operation-flow .section-head h2,
.operation-flow .section-head p:not(.eyebrow),
.container-visual .section-head h2,
.container-visual .section-head p:not(.eyebrow) {
  color: var(--white);
}

.operation-flow .section-head p:not(.eyebrow),
.container-visual .section-head p:not(.eyebrow) {
  opacity: 0.78;
}

.steps-industrial article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.steps-industrial h3,
.steps-industrial p {
  color: var(--white);
}

.steps-industrial p {
  opacity: 0.76;
}

.container-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.container-size-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.container-size-grid article.featured {
  border-color: rgba(255, 106, 0, 0.5);
  background: rgba(255, 106, 0, 0.11);
}

.container-size-grid strong {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.15;
}

.container-size-grid em {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  font-style: normal;
  font-weight: 900;
}

.container-size-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.container-illustration {
  display: flex;
  align-items: end;
  min-height: 130px;
  padding-top: 20px;
}

.container-illustration span {
  display: block;
  position: relative;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-top-width: 5px;
  border-radius: 6px 6px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.38), rgba(255, 106, 0, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 22px);
  box-shadow: inset 0 -16px 0 rgba(0, 0, 0, 0.18), 0 16px 34px rgba(0, 0, 0, 0.24);
}

.container-illustration span::before,
.container-illustration span::after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #050706;
  border: 3px solid rgba(255, 255, 255, 0.28);
}

.container-illustration span::before {
  left: 14%;
}

.container-illustration span::after {
  right: 14%;
}

.container-illustration.small span {
  width: 58%;
}

.container-illustration.medium span {
  width: 78%;
  height: 70px;
}

.container-illustration.large span {
  width: 100%;
  height: 86px;
}

.size-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 106, 0, 0.34);
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.1);
}

.size-help h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.12;
}

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

.waste-grid article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--safety);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.waste-grid i {
  width: 34px;
  height: 34px;
  color: var(--safety);
}

.waste-grid strong,
.waste-grid span {
  display: block;
}

.waste-grid strong {
  font-size: 1.16rem;
  line-height: 1.18;
}

.waste-grid span {
  color: var(--ink-soft);
}

.price-calculator-section {
  scroll-margin-top: 92px;
}

.price-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.calculator-panel,
.calculator-result,
.calculator-noscript {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.calculator-panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 106, 0, 0) 42%),
    var(--ink);
}

.calculator-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.calculator-header span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--carbon);
  background: var(--safety);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.calculator-header strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.calculator-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.calculator-step legend {
  margin-bottom: 10px;
  color: var(--safety);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.calculator-options.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.calculator-options.stack {
  grid-template-columns: 1fr;
}

.calculator-options label {
  position: relative;
  display: block;
  min-width: 0;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 900;
}

.calculator-options input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.calculator-options span {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  line-height: 1.18;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.calculator-options input:hover + span,
.calculator-options input:focus-visible + span {
  border-color: rgba(244, 178, 60, 0.75);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 3px rgba(244, 178, 60, 0.16);
}

.calculator-options input:checked + span {
  transform: translateY(-1px);
  border-color: var(--safety);
  color: var(--carbon);
  background: var(--safety);
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.24);
}

.calculator-result {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(40, 106, 80, 0.28), rgba(40, 106, 80, 0) 48%),
    #111713;
}

.calculator-result .eyebrow {
  color: var(--safety);
}

.calculator-result h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.calculator-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.calculator-factors {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calculator-factors li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.calculator-factors li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--safety);
  content: "";
}

.calculator-summary {
  padding: 14px;
  border: 1px solid rgba(244, 178, 60, 0.32);
  border-radius: 8px;
  color: #fff7e3;
  background: rgba(244, 178, 60, 0.08);
  font-size: 0.94rem;
  line-height: 1.45;
}

.calculator-actions {
  display: grid;
  gap: 10px;
}

.calculator-actions .btn {
  width: 100%;
  min-height: 50px;
}

.calculator-help-link {
  color: var(--safety);
  font-weight: 900;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.calculator-noscript {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(244, 178, 60, 0.38);
  color: var(--ink);
  background: #fff8e8;
  font-weight: 800;
}

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

.service-card,
.audience-grid article,
.steps article,
.area-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card,
.audience-grid article,
.steps article,
.info-grid article,
.local-grid article,
.trust-grid article,
.why-grid article,
.guide-grid a,
.rules-grid article,
.size-table article,
.detail-grid article,
.price-grid article,
.material-table > div,
.article-list article,
.scenario-list article,
.content-blocks article,
.container-size-grid article,
.waste-grid article,
.service-note,
.seo-panel,
.mobile-action-box,
.proof-strip article,
.visual-proof-card,
.photo-brief-grid article,
.prep-list li,
.location-sections article,
.link-cloud a {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card {
  min-height: 280px;
  padding: 24px;
}

.service-card.has-photo {
  overflow: hidden;
  padding: 0;
}

.service-card.has-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card.has-photo .service-card-body {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 22px;
}

.service-card.has-photo .service-card-body .text-link {
  align-self: end;
  margin-top: 18px;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  transition: transform 180ms ease;
}

.service-card:nth-child(2) .icon-box {
  background: var(--brick);
}

.service-card:nth-child(3) .icon-box {
  background: #5a7a2d;
}

.service-card:nth-child(4) .icon-box {
  background: var(--safety-dark);
}

.service-card h3,
.audience-grid h3,
.steps h3,
.area-panel h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.audience-grid p,
.steps p,
.area-panel p,
.info-grid p,
.local-grid p,
.trust-grid p,
.guide-grid p,
.faq-list p {
  margin: 0;
  color: var(--ink-soft);
}

.info-grid,
.rules-grid,
.local-grid,
.trust-grid,
.guide-grid,
.size-table,
.why-grid {
  display: grid;
  gap: 16px;
}

.info-grid,
.trust-grid,
.guide-grid,
.size-table {
  grid-template-columns: repeat(3, 1fr);
}

.info-grid article,
.local-grid article,
.trust-grid article,
.why-grid article,
.guide-grid a,
.rules-grid article,
.size-table article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.info-grid i,
.trust-grid i,
.why-grid i {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--green);
}

.info-grid h3,
.local-grid h3,
.trust-grid h3,
.why-grid h3,
.guide-grid h3,
.rules-grid h3,
.size-table strong {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.pricing-preview,
.container-sizes,
.price-examples,
.rules,
.local-proof,
.trust,
.guide-preview {
  padding-top: 0;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid article {
  min-height: 250px;
}

.why-grid p {
  margin: 0;
  color: var(--ink-soft);
}

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

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

.photo-brief-grid article {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 22px;
  background: var(--white);
}

.photo-brief-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  font-weight: 900;
}

.photo-brief-grid h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.photo-brief-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.rule-ok {
  border-color: rgba(33, 100, 82, 0.28);
}

.rule-warn {
  border-color: rgba(164, 71, 50, 0.28);
}

.warn-list i {
  color: var(--brick);
}

.local-grid {
  grid-template-columns: repeat(4, 1fr);
}

.guide-grid a:hover,
.guide-grid a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24, 33, 29, 0.12);
}

.size-table strong,
.size-table span {
  display: block;
}

.size-table span {
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.split-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-image img,
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image img {
  aspect-ratio: 4 / 5;
}

.lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.lists h3 {
  margin: 0 0 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
}

.check-list i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--green);
}

.areas {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  background: var(--paper-strong);
}

.area-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: stretch;
}

.area-panel {
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.area-panel i {
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  color: var(--safety);
}

.area-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.area-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-tags li {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.area-tags a {
  display: grid;
  width: 100%;
  min-height: 44px;
  place-items: center;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.steps article {
  position: relative;
  min-height: 235px;
  padding: 28px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--safety);
  font-weight: 900;
}

.steps-industrial article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.steps-industrial h3,
.steps-industrial p {
  color: var(--white);
}

.steps-industrial p {
  opacity: 0.76;
}

.audience {
  padding-top: 0;
}

.prep {
  padding-top: 0;
}

.prep-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: prep;
}

.prep-list li {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 188px;
  padding: 56px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.prep-list li::before {
  counter-increment: prep;
  content: counter(prep);
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--safety);
  font-weight: 900;
}

.prep-list strong {
  margin-bottom: 8px;
  line-height: 1.18;
}

.prep-list span {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.owner-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 20px;
  align-items: stretch;
  padding-top: 0;
}

.owner-preview h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.owner-preview p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.owner-card {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.owner-card strong {
  color: var(--safety);
  font-size: 1.3rem;
}

.owner-card span {
  color: rgba(255, 255, 255, 0.82);
}

.owner-card a {
  width: max-content;
  color: var(--safety);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.proof-strip a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 28px;
}

.trust-proof-panel > div:first-child,
.trust-proof-facts {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 232, 0.56)),
    var(--white);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.trust-proof-panel > div:first-child {
  padding: clamp(26px, 4vw, 42px);
}

.trust-proof-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.trust-proof-panel p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-proof-panel .btn-secondary {
  color: var(--ink);
  border-color: rgba(24, 33, 29, 0.18);
  background: rgba(24, 33, 29, 0.06);
  backdrop-filter: none;
}

.trust-proof-panel .btn-secondary:hover,
.trust-proof-panel .btn-secondary:focus-visible {
  border-color: rgba(255, 106, 0, 0.42);
  background: rgba(255, 106, 0, 0.12);
}

.trust-proof-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.trust-proof-facts article {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 128px;
  padding: 22px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.trust-proof-facts article:nth-child(odd) {
  border-left: 0;
}

.trust-proof-facts article:nth-child(-n + 2) {
  border-top: 0;
}

.trust-proof-facts span {
  color: var(--safety-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-proof-facts strong {
  line-height: 1.2;
}

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

.audience-grid article {
  min-height: 220px;
  padding: 26px;
}

.audience-grid i {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--green);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: clamp(64px, 9vw, 110px);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.contact-media {
  display: block;
  min-height: 650px;
  background: #0f1412;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(22px, 2.5vw, 34px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
}

.contact-copy {
  align-self: center;
  max-width: 420px;
}

.contact-copy h2,
.contact-copy p:not(.eyebrow) {
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  opacity: 0.82;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-cards a {
  justify-content: flex-start;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 178, 60, 0.34);
  background: rgba(255, 255, 255, 0.13);
}

.contact-cards strong {
  display: block;
  color: var(--safety);
  font-size: 0.78rem;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: none;
  }
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(222, 216, 202, 0.72);
  border-top: 0;
  border-radius: 22px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  box-shadow: 0 24px 60px rgba(18, 22, 28, 0.1);
}

.form-intro {
  display: grid;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.form-intro strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.form-intro span {
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.45;
}

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

.form-step {
  display: grid;
  gap: 13px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 950;
}

.field-note,
.legend-note {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-example {
  margin: 0;
  padding: 12px 14px;
  border-left: 0;
  border-radius: 16px;
  color: var(--ink-soft);
  background: #f5f2ea;
  font-size: 0.9rem;
  line-height: 1.5;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.89rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d3cbbd;
  border-radius: 14px;
  background: #fffefa;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(92, 84, 68, 0.72);
  font-weight: 520;
}

input,
select {
  height: 52px;
  padding: 0 16px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--safety-dark);
  background: var(--white);
  box-shadow: var(--ring);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #b42318;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.16);
}

.file-input input {
  padding-top: 10px;
}

.file-input span {
  display: block;
  min-height: 44px;
  padding: 12px;
  border: 1px dashed #c9bfae;
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fff8e8;
  font-weight: 800;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

.consent a {
  color: var(--safety-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form-optional {
  border: 1px solid rgba(211, 203, 189, 0.9);
  border-radius: 18px;
  background: #fbf8f2;
}

.form-optional[open] {
  background: #faf7f1;
}

.form-optional summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.form-optional summary::-webkit-details-marker {
  display: none;
}

.form-optional summary span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 750;
}

.form-optional summary::after {
  content: "+";
  color: var(--safety-dark);
  font-size: 1.1rem;
  font-weight: 700;
}

.form-optional[open] summary::after {
  content: "−";
}

.form-optional-body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.form-actions .btn,
.inquiry-form .btn {
  width: 100%;
}

.inquiry-form .btn-secondary {
  color: var(--ink);
  border: 1px solid #d3cbbd;
  background: var(--paper-strong);
  backdrop-filter: none;
}

.inquiry-form .btn-secondary:hover,
.inquiry-form .btn-secondary:focus-visible {
  border-color: rgba(255, 106, 0, 0.42);
  background: #fff8e8;
}

.form-button {
  width: 100%;
  color: var(--ink);
  border: 1px solid #d3cbbd;
  background: #f7f4ed;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.file-upload {
  display: grid;
  position: relative;
  gap: 10px;
  padding: 18px;
  border: 1px dashed rgba(178, 165, 139, 0.9);
  border-radius: 18px;
  background: #faf7f1;
  cursor: pointer;
}

.file-upload.is-promoted {
  margin-top: 2px;
}

.file-upload span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.file-upload small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.file-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  pointer-events: none;
}

.form-privacy {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.mini-inquiry {
  scroll-margin-top: 92px;
}

.mini-inquiry .inquiry-form {
  max-width: 660px;
  margin: 0 auto;
}

.mini-inquiry .form-privacy a {
  color: var(--safety-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(33, 100, 82, 0.28);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease;
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--green);
  background: rgba(33, 100, 82, 0.06);
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list p {
  padding: 0 20px 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: start;
  padding: 34px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.78);
  background: #111713;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin: 4px 0;
}

.site-footer div:last-child {
  display: grid;
  gap: 8px;
  justify-items: end;
  font-weight: 850;
}

.mobile-cta {
  display: none;
}

.page-main {
  padding-top: 74px;
  min-height: 70vh;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 106, 0, 0.09), transparent 25rem),
    radial-gradient(circle at 92% 18%, rgba(45, 95, 82, 0.09), transparent 28rem),
    linear-gradient(90deg, rgba(16, 20, 18, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(16, 20, 18, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  overflow: clip;
}

.subpage-hero {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 122px) 0 clamp(58px, 7vw, 88px);
  color: var(--white);
  overflow: hidden;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 84px),
    radial-gradient(circle at 8% 0%, rgba(255, 106, 0, 0.19), transparent 28rem),
    radial-gradient(circle at 94% 22%, rgba(255, 106, 0, 0.24), transparent 26rem),
    linear-gradient(135deg, var(--carbon) 0%, var(--steel) 62%, #1f160e 100%);
  border-bottom: 1px solid rgba(255, 106, 0, 0.34);
  box-shadow: 0 0 0 100vmax var(--carbon), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  clip-path: inset(0 -100vmax);
}

.subpage-hero > * {
  position: relative;
  z-index: 2;
}

.subpage-hero::before {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 112px;
  height: 6px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--safety), rgba(255, 106, 0, 0.16));
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.38);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: min(-18px, -1.6vw);
  bottom: 0;
  width: min(58vw, 690px);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.38) 44%, rgba(13, 18, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.92), rgba(13, 18, 15, 0.2) 48%, rgba(13, 18, 15, 0.78)),
    url("assets/hero-truck.webp") center 64% / cover no-repeat;
  opacity: 0.64;
  mix-blend-mode: screen;
  transform: skewX(-7deg) translateX(8%);
  transform-origin: right center;
  filter: saturate(0.95) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

body[data-page-identity="pricing"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.38) 44%, rgba(13, 18, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.12) 48%, rgba(13, 18, 15, 0.78)),
    url("assets/material-load.webp") center / cover no-repeat;
}

body[data-page-identity="references"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.34) 44%, rgba(13, 18, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.12) 48%, rgba(13, 18, 15, 0.8)),
    url("assets/hero-reference.webp") center 56% / cover no-repeat;
}

body[data-page-identity="about"] .subpage-hero::after,
body[data-page-identity="contact"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.34) 44%, rgba(13, 18, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.12) 48%, rgba(13, 18, 15, 0.8)),
    url("assets/hero-truck-profile-landscape-fixed.webp?v=20260728d") center 58% / cover no-repeat;
}

body[data-page-identity="equipment"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.32) 44%, rgba(13, 18, 15, 0.06) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.88), rgba(13, 18, 15, 0.08) 48%, rgba(13, 18, 15, 0.8)),
    url("assets/hero-crane.webp") center / cover no-repeat;
}

body[data-page-identity="delivery"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.34) 44%, rgba(13, 18, 15, 0.06) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.1) 48%, rgba(13, 18, 15, 0.78)),
    url("assets/material-load.webp") center / cover no-repeat;
}

body[data-page-identity="earthworks"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.34) 44%, rgba(13, 18, 15, 0.06) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.88), rgba(13, 18, 15, 0.1) 48%, rgba(13, 18, 15, 0.78)),
    url("assets/jcb-minibagr-8026.webp") center / cover no-repeat;
}

body[data-page-identity="waste"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.34) 44%, rgba(13, 18, 15, 0.06) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.1) 48%, rgba(13, 18, 15, 0.78)),
    url("assets/hero-container-tilt-fixed.webp?v=20260728c") center / cover no-repeat;
}

.subpage-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 106, 0, 0.34);
  border-radius: 8px;
  color: var(--safety);
  background: rgba(255, 106, 0, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.subpage-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--white);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  font-weight: 620;
}

.subpage-hero .hero-actions {
  margin-top: 30px;
}

.subpage-hero .btn {
  min-height: 54px;
}

.subpage-trustbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 36px));
  margin: -24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 8px;
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, rgba(32, 40, 35, 0.98), rgba(11, 15, 13, 0.98));
  box-shadow: var(--shadow-card);
}

.subpage-trustbar div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.subpage-trustbar div:first-child {
  border-left: 0;
}

.subpage-trustbar i,
.subpage-trustbar svg {
  display: block;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  stroke-width: 2.2;
}

.subpage-trustbar strong,
.subpage-trustbar span {
  display: block;
}

.subpage-trustbar strong {
  line-height: 1.16;
}

.subpage-trustbar span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.32;
}

.btn-dark {
  color: var(--white);
  background: var(--green);
}

.subpage-hero .btn-dark,
.hero .btn-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.detail-grid,
.price-grid {
  display: grid;
  gap: 16px;
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
  counter-reset: subpage-card;
}

.detail-grid article,
.price-grid article,
.material-table > div,
.article-list article,
.price-note {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 232, 0.56)),
    var(--white);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.detail-grid article {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding-top: 72px;
}

.detail-grid article::before,
.price-grid article::before,
.article-list article::before,
.content-blocks article::before,
.scenario-list article::before,
.location-sections article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--safety), rgba(255, 106, 0, 0.08));
}

.detail-grid article::after {
  counter-increment: subpage-card;
  content: counter(subpage-card, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.2);
}

.detail-grid h2,
.detail-grid h3,
.price-grid h2,
.material-table strong,
.article-list h2,
.price-note h2 {
  margin: 0 0 10px;
  line-height: 1.18;
}

.detail-grid h2,
.detail-grid h3,
.content-blocks h2,
.content-blocks h3,
.scenario-list h2,
.article-list h2,
.service-note h2,
.seo-panel h2,
.mobile-action-box h2 {
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.detail-grid p,
.price-grid p,
.material-table span,
.article-list p {
  margin: 0;
  color: var(--ink-soft);
}

.material-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.material-table > div {
  display: grid;
  align-content: start;
  min-height: 154px;
  border-top: 4px solid var(--safety);
}

.material-table strong,
.material-table span {
  display: block;
}

.material-table strong {
  padding-right: 32px;
  font-size: 1.08rem;
}

.material-table span {
  line-height: 1.42;
}

.material-table > div::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 43%, var(--safety) 44% 56%, transparent 57%),
    rgba(255, 106, 0, 0.12);
}

.price-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: subpage-card;
}

.price-models {
  padding-bottom: 28px;
}

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

.price-model-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 232, 0.58)),
    var(--white);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.price-model-grid i,
.price-model-grid svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  color: var(--safety);
  background: rgba(255, 106, 0, 0.1);
}

.price-model-grid h3 {
  margin: 0;
  line-height: 1.16;
}

.price-model-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.price-model-grid a {
  align-self: end;
  width: fit-content;
  color: var(--green);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price-fast-table {
  display: grid;
  gap: 10px;
}

.price-fast-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

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

.price-fast-row strong {
  color: var(--ink);
  font-size: 1rem;
}

.price-fast-row span {
  color: var(--muted);
  line-height: 1.5;
}

.price-fast-row .price-fast-action {
  color: var(--safety-dark);
  font-weight: 900;
}

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

.evidence-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.evidence-card picture,
.evidence-card img {
  display: block;
  width: 100%;
}

.evidence-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.evidence-card div {
  padding: 18px;
}

.evidence-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--safety-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.evidence-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.evidence-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 8px;
  background: var(--safety);
  font-weight: 900;
}

.price-note {
  max-width: 820px;
}

.location-sections,
.article-list,
.scenario-list,
.content-blocks {
  display: grid;
  gap: 16px;
}

.location-sections article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 245, 240, 0.72)),
    var(--white);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.location-sections h2,
.location-sections h3 {
  margin: 0 0 10px;
}

.location-sections p {
  margin: 0;
  color: var(--ink-soft);
}

.article-list {
  max-width: 900px;
}

.scenario-list,
.content-blocks {
  grid-template-columns: repeat(2, 1fr);
  counter-reset: subpage-card;
}

.scenario-list article,
.content-blocks article,
.service-note,
.seo-panel,
.mobile-action-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 232, 0.48)),
    var(--white);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.scenario-list h2,
.content-blocks h2,
.content-blocks h3,
.service-note h2,
.seo-panel h2,
.mobile-action-box h2 {
  margin: 0 0 10px;
  line-height: 1.18;
}

.scenario-list p,
.content-blocks p,
.service-note p,
.seo-panel p,
.mobile-action-box p {
  margin: 0;
  color: var(--ink-soft);
}

.service-note {
  max-width: 920px;
  border-color: rgba(45, 95, 82, 0.28);
  border-left: 5px solid var(--green);
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 95, 82, 0.12), transparent 17rem),
    linear-gradient(135deg, var(--white), #f8f3e8);
}

.page-main .geo-summary {
  max-width: min(1180px, calc(100% - 36px));
  padding: clamp(26px, 4vw, 40px);
  color: var(--white);
  border-color: rgba(255, 106, 0, 0.28);
  border-left-color: var(--safety);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 32px),
    radial-gradient(circle at 92% 12%, rgba(255, 106, 0, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--steel), var(--carbon));
  box-shadow: var(--shadow-card);
}

.page-main .geo-summary h2,
.page-main .geo-summary p,
.page-main .geo-summary li {
  color: var(--white);
}

.page-main .geo-summary p,
.page-main .geo-summary li {
  opacity: 0.82;
}

.page-main .geo-summary .check-list i {
  color: var(--safety);
}

.trust-checklist {
  margin-top: 18px;
}

.seo-panel {
  display: grid;
  gap: 18px;
  border-color: rgba(255, 106, 0, 0.24);
  border-top: 4px solid var(--safety);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.1), transparent 18rem),
    linear-gradient(180deg, var(--white), #fff8e8);
}

.seo-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seo-panel li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.seo-panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--safety);
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.link-cloud a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(45, 95, 82, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--white), rgba(235, 245, 240, 0.72));
  color: var(--green);
  font-weight: 850;
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.link-cloud li::before {
  content: none;
}

@media (hover: hover) {
  .hero-facts div:hover {
    background: rgba(24, 33, 29, 0.82);
  }

  .service-card:hover,
  .audience-grid article:hover,
  .steps article:hover,
  .info-grid article:hover,
  .local-grid article:hover,
  .trust-grid article:hover,
  .why-grid article:hover,
  .rules-grid article:hover,
  .size-table article:hover,
  .detail-grid article:hover,
  .price-grid article:hover,
  .material-table > div:hover,
  .article-list article:hover,
  .scenario-list article:hover,
  .content-blocks article:hover,
  .container-size-grid article:hover,
  .waste-grid article:hover,
  .service-note:hover,
  .seo-panel:hover,
  .mobile-action-box:hover,
  .proof-strip article:hover,
  .visual-proof-card:hover,
  .photo-brief-grid article:hover,
  .prep-list li:hover,
  .location-sections article:hover,
  .link-cloud a:hover,
  .link-cloud a:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 106, 0, 0.28);
    box-shadow: var(--shadow-card);
  }

  .service-card:hover .icon-box,
  .service-card:focus-within .icon-box {
    transform: scale(1.05);
  }

  .area-tags li:hover {
    transform: translateY(-2px);
    border-color: rgba(33, 100, 82, 0.24);
    box-shadow: var(--shadow-soft);
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.mobile-action-box {
  display: grid;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  border-color: rgba(255, 106, 0, 0.3);
  border-left: 5px solid var(--safety);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.14), transparent 16rem),
    #fff8e8;
}

.mobile-action-box .hero-actions {
  margin-top: 0;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(64px, 9vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 106, 0, 0.28);
  background:
    linear-gradient(90deg, rgba(11, 15, 13, 0.96), rgba(11, 15, 13, 0.74)),
    linear-gradient(135deg, rgba(255, 106, 0, 0.18), rgba(255, 106, 0, 0) 40%),
    url("assets/material-load.webp") center / cover no-repeat,
    var(--ink);
  box-shadow: var(--shadow);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.cta-band::before {
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 58px),
    radial-gradient(circle at 88% 18%, rgba(255, 106, 0, 0.26), transparent 20rem);
}

.cta-band::after {
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--safety), transparent);
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
}

.mini-inquiry {
  position: relative;
}

.mini-inquiry .section-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mini-inquiry .inquiry-form {
  border-color: rgba(255, 106, 0, 0.32);
  box-shadow: var(--shadow-card);
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

i[data-lucide] {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.9rem;
  }

  .header-actions {
    gap: 8px;
  }

  .header-quote {
    display: none;
  }

  .language-switcher {
    grid-template-columns: repeat(2, minmax(34px, 1fr));
  }

  .language-switcher a,
  .language-switcher span {
    padding: 0 8px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    justify-self: center;
  }

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

  .contact-section,
  .contact-content,
  .split,
  .detail-grid,
  .price-grid,
  .price-model-grid,
  .subpage-trustbar,
  .material-table,
  .section.proof-strip,
  .trust-proof-panel,
  .trust-proof-facts,
  .visual-proof,
  .visual-proof-grid,
  .photo-brief-grid,
  .container-size-grid,
  .price-calculator,
  .why-grid,
  .prep-list,
  .owner-preview,
  .scenario-list,
  .content-blocks,
  .seo-panel ul,
  .area-layout {
    grid-template-columns: 1fr;
  }

  .contact-media {
    min-height: 320px;
  }

  .contact-content {
    padding: 32px;
  }

  .calculator-result {
    position: static;
  }
}

@media (max-width: 1180px) {
  /* 9 položek navigace se mezi 900 a 1180 px nevejde — hamburger nastupuje dřív */
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: var(--white);
    background: rgba(11, 15, 13, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    justify-content: flex-start;
    padding: 12px 14px;
    overflow-wrap: anywhere;
  }

  .header-call {
    width: 46px;
    min-width: 46px;
    padding: 0;
    gap: 0;
    font-size: 0;
  }

  .header-actions {
    grid-column: 2;
    min-width: 0;
  }

  .language-switcher {
    grid-template-columns: repeat(2, 40px);
    min-height: 46px;
  }

  .language-switcher a,
  .language-switcher span {
    min-height: 40px;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  body.has-cookie-banner {
    padding-bottom: calc(176px + env(safe-area-inset-bottom));
  }

  .brand small {
    display: none;
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

  .brand strong {
    line-height: 1.05;
    max-width: 150px;
  }

  .site-header .header-call {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(0deg, rgba(24, 33, 29, 0.94), rgba(24, 33, 29, 0.58) 58%, rgba(24, 33, 29, 0.34)),
      url("assets/hero-truck.webp") center / cover;
    transform: none;
    filter: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(11, 15, 13, 0.88), rgba(11, 15, 13, 0) 46%),
      linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(255, 106, 0, 0) 36%);
  }

  .hero-inner {
    width: min(calc(100% - 32px), 620px);
    padding-top: 82px;
    padding-bottom: 24px;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.4vw, 2.05rem);
    line-height: 1.04;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 14px;
    font-size: 0.98rem;
    font-weight: 620;
    line-height: 1.38;
  }

  .hero-actions {
    display: grid;
    margin-top: 20px;
  }

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

  .hero-command {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 12px;
  }

  .hero-command i {
    width: 28px;
    height: 28px;
  }

  .hero-command strong {
    font-size: 0.94rem;
  }

  .hero-command span {
    font-size: 0.82rem;
  }

  .hero-facts,
  .service-grid,
  .info-grid,
  .calculator-options,
  .calculator-options.compact,
  .calculator-row,
  .rules-grid,
  .local-grid,
  .trust-grid,
  .why-grid,
  .guide-grid,
  .size-table,
  .waste-grid,
  .steps,
  .audience-grid,
  .lists,
  .form-row,
  .area-tags,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .hero-facts div {
    min-height: 86px;
    padding: 12px 10px;
  }

  .hero-facts dt {
    font-size: 0.78rem;
  }

  .hero-facts dd {
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .service-card,
  .steps article,
  .audience-grid article {
    min-height: auto;
  }

  .quick-contact-inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    justify-content: flex-start;
    padding: 12px 0;
    text-align: left;
  }

  .quick-contact-inner > * {
    justify-content: flex-start;
    min-height: 44px;
  }

  .section {
    padding: 52px 0;
  }

  .operation-flow,
  .container-visual,
  .visual-proof-copy,
  .calculator-panel,
  .calculator-result {
    padding: 28px 18px;
  }

  .visual-proof-card.image-card {
    grid-template-rows: auto auto;
  }

  .visual-proof-card img {
    aspect-ratio: 1.2 / 1;
  }

  .subpage-showcase {
    padding-top: 16px;
    padding-bottom: 42px;
  }

  .subpage-showcase + .section {
    padding-top: 42px;
  }

  .subpage-showcase .visual-proof-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.25rem);
  }

  .subpage-showcase .visual-proof-card.image-card:nth-of-type(2) {
    display: none;
  }

  .subpage-showcase .visual-proof-card img {
    min-height: 0;
  }

  .container-size-grid article {
    min-height: auto;
  }

  .size-help {
    display: grid;
  }

  .section-head h2,
  .split-content h2,
  .contact-copy h2,
  .subpage-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.3rem);
    line-height: 1.05;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .subpage-hero {
    width: min(calc(100% - 32px), 620px);
    padding-top: 42px;
    padding-bottom: 54px;
    min-width: 0;
  }

  .subpage-hero::after {
    right: -120px;
    width: min(96vw, 520px);
    opacity: 0.26;
    transform: skewX(-5deg) translateX(18%);
    background-position: 58% 64%;
  }

  .subpage-hero .eyebrow {
    min-height: 36px;
    padding: 6px 9px;
    font-size: 0.82rem;
  }

  .subpage-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1.02rem;
    line-height: 1.44;
  }

  .subpage-trustbar {
    width: min(calc(100% - 32px), 620px);
    margin-top: -22px;
  }

  .subpage-trustbar div {
    min-height: 74px;
    padding: 14px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .subpage-trustbar div:first-child {
    border-top: 0;
  }

  .subpage-trustbar i,
  .subpage-trustbar svg {
    width: 30px;
    height: 30px;
    padding: 6px;
  }

  .detail-grid article {
    min-height: auto;
    padding-top: 66px;
  }

  .split-image img {
    aspect-ratio: 1.12 / 1;
  }

  .contact-section {
    width: 100%;
    margin-bottom: 58px;
    border-radius: 0;
  }

  .contact-content {
    padding: 26px 18px;
  }

  .contact-media {
    display: none;
  }

  .contact-copy {
    display: grid;
    gap: 10px;
  }

  .contact-copy p:not(.eyebrow) {
    margin-bottom: 0;
  }

  .contact-cards {
    display: none;
  }

  .inquiry-form {
    padding: 18px;
    scroll-margin-top: 86px;
  }

  .form-intro {
    padding: 0;
  }

  .form-intro span {
    font-size: 0.85rem;
  }

  .form-optional summary {
    padding: 15px 16px;
  }

  .form-optional-body {
    padding: 0 16px 16px;
  }

  .trust-proof-panel {
    padding-top: 44px;
  }

  .trust-proof-panel h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .trust-proof-facts article {
    min-height: 104px;
    padding: 18px;
    border-left: 0;
  }

  .trust-proof-facts article:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

  .trust-proof-facts article:first-child {
    border-top: 0;
  }

  .proof-actions {
    display: grid;
  }

  .price-model-grid article {
    min-height: auto;
    padding: 20px;
  }

  .site-footer div:last-child {
    justify-items: start;
  }

  .cta-band {
    display: grid;
    margin-bottom: 58px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    background: rgba(11, 15, 13, 0.96);
    border-top: 1px solid rgba(255, 106, 0, 0.26);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
  }

  body.is-in-form-zone .mobile-cta {
    pointer-events: none;
    transform: translateY(110%);
    opacity: 0;
  }

  .mobile-cta a {
    min-width: 0;
    min-height: 50px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--safety);
    font-weight: 900;
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .mobile-cta a:last-child {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-cta a:active {
    transform: translateY(1px);
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: calc(62px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    width: auto;
    gap: 6px;
    max-height: none;
    overflow: visible;
    padding: 10px 40px 10px 10px;
  }

  .cookie-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px 8px;
  }

  .cookie-banner strong {
    display: inline;
    margin: 0;
    font-size: 0.76rem;
  }

  .cookie-banner p {
    display: none;
  }

  .cookie-banner a {
    display: inline-flex;
    min-height: 16px;
    align-items: center;
    margin-top: 0;
    font-size: 0.76rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .cookie-actions .btn {
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.78rem;
  }

  .cookie-close {
    display: grid;
    place-items: center;
  }

  .proof-summary,
  .proof-summary-grid,
  .price-fast-row,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .proof-summary-grid article {
    min-height: auto;
  }

  .site-footer a,
  .footer-privacy-button {
    display: inline-flex;
    width: fit-content;
    min-height: 40px;
    align-items: center;
  }

  body[data-page-identity="pricing"] .subpage-hero::after,
  body[data-page-identity="delivery"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.48) 58%, rgba(13, 18, 15, 0.14) 100%),
      linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.16) 50%, rgba(13, 18, 15, 0.78)),
      url("assets/material-load.webp") center / cover no-repeat;
  }

  body[data-page-identity="references"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.45) 58%, rgba(13, 18, 15, 0.12) 100%),
      linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.16) 50%, rgba(13, 18, 15, 0.78)),
      url("assets/hero-reference.webp") 64% center / cover no-repeat;
  }

  body[data-page-identity="about"] .subpage-hero::after,
  body[data-page-identity="contact"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.45) 58%, rgba(13, 18, 15, 0.12) 100%),
      linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.16) 50%, rgba(13, 18, 15, 0.78)),
      url("assets/hero-truck-profile-landscape-fixed.webp?v=20260728d") center / cover no-repeat;
  }

  body[data-page-identity="equipment"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.4) 58%, rgba(13, 18, 15, 0.1) 100%),
      linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.16) 50%, rgba(13, 18, 15, 0.78)),
      url("assets/hero-crane.webp") center / cover no-repeat;
  }

  body[data-page-identity="earthworks"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.42) 58%, rgba(13, 18, 15, 0.1) 100%),
      linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.16) 50%, rgba(13, 18, 15, 0.78)),
      url("assets/jcb-minibagr-8026.webp") center / cover no-repeat;
  }

  body[data-page-identity="waste"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.42) 58%, rgba(13, 18, 15, 0.1) 100%),
      linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.16) 50%, rgba(13, 18, 15, 0.78)),
      url("assets/hero-container-tilt-fixed.webp?v=20260728c") center / cover no-repeat;
  }
}

/* Sitewide v3 — calm task-first system, 2026-07-20 */
.skip-link {
  position: fixed;
  z-index: 120;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-v3 .page-main {
  background:
    linear-gradient(90deg, rgba(16, 20, 18, 0.022) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(16, 20, 18, 0.018) 1px, transparent 1px) 0 0 / 72px 72px,
    #f7f4ec;
}

.site-v3 .subpage-hero {
  display: grid;
  align-content: center;
  width: 100%;
  min-height: 500px;
  margin: 0;
  padding: 76px max(18px, calc((100vw - 1180px) / 2)) 86px;
  border-bottom: 0;
  background: var(--carbon);
  box-shadow: none;
  clip-path: none;
}

.site-v3 .subpage-hero::before {
  display: none;
}

body.site-v3 .subpage-hero::after {
  inset: 0;
  width: 100%;
  opacity: 1;
  mix-blend-mode: normal;
  transform: none;
  filter: saturate(0.76) contrast(1.06);
  -webkit-mask-image: none;
  mask-image: none;
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.98) 0%, rgba(7, 10, 8, 0.9) 43%, rgba(7, 10, 8, 0.42) 70%, rgba(7, 10, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.72), transparent 54%),
    url("assets/hero-real-desktop.webp") 70% 55% / cover no-repeat;
}

body.site-v3[data-page-identity="pricing"] .subpage-hero::after,
body.site-v3[data-page-identity="delivery"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.98) 0%, rgba(7, 10, 8, 0.9) 43%, rgba(7, 10, 8, 0.38) 72%, rgba(7, 10, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.72), transparent 54%),
    url("assets/material-load.webp") center / cover no-repeat;
}

body.site-v3[data-page-identity="references"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.98) 0%, rgba(7, 10, 8, 0.88) 43%, rgba(7, 10, 8, 0.34) 72%, rgba(7, 10, 8, 0.14) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.7), transparent 54%),
    url("assets/hero-reference.webp") center 56% / cover no-repeat;
}

body.site-v3[data-page-identity="about"] .subpage-hero::after,
body.site-v3[data-page-identity="contact"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.98) 0%, rgba(7, 10, 8, 0.9) 43%, rgba(7, 10, 8, 0.36) 72%, rgba(7, 10, 8, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.72), transparent 54%),
    url("assets/hero-truck-profile-landscape-fixed.webp?v=20260728d") center 58% / cover no-repeat;
}

body.site-v3[data-page-identity="equipment"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.98) 0%, rgba(7, 10, 8, 0.88) 43%, rgba(7, 10, 8, 0.32) 72%, rgba(7, 10, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.7), transparent 54%),
    url("assets/hero-crane.webp") center / cover no-repeat;
}

body.site-v3[data-page-identity="earthworks"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.98) 0%, rgba(7, 10, 8, 0.88) 43%, rgba(7, 10, 8, 0.32) 72%, rgba(7, 10, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.7), transparent 54%),
    url("assets/jcb-minibagr-8026.webp") center / cover no-repeat;
}

body.site-v3[data-page-identity="waste"] .subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.98) 0%, rgba(7, 10, 8, 0.88) 43%, rgba(7, 10, 8, 0.32) 72%, rgba(7, 10, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.72), transparent 54%),
    url("assets/hero-container-tilt-fixed.webp?v=20260728c") center / cover no-repeat;
}

.site-v3 .subpage-hero .eyebrow {
  min-height: 0;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

.site-v3 .subpage-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.042em;
}

.site-v3 .subpage-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.65vw, 1.24rem);
  font-weight: 560;
  line-height: 1.5;
}

.site-v3 .subpage-hero .hero-actions {
  max-width: 650px;
  margin-top: 28px;
}

.site-v3 .subpage-trustbar {
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(252, 250, 244, 0.98);
  box-shadow: 0 22px 52px rgba(11, 15, 13, 0.14);
}

.site-v3 .subpage-trustbar div {
  min-height: 96px;
  padding: 18px 22px;
  border-left-color: var(--line);
}

.site-v3 .subpage-trustbar i,
.site-v3 .subpage-trustbar svg {
  color: var(--ink);
  background: var(--paper-strong);
}

.site-v3 .subpage-trustbar span {
  color: var(--muted);
}

.site-v3 .subpage-trustbar strong {
  color: var(--ink);
}

.site-v3 .section-head h2,
.site-v3 .split-content h2,
.site-v3 .contact-copy h2 {
  letter-spacing: -0.025em;
}

.site-v3 .service-card,
.site-v3 .content-blocks article,
.site-v3 .detail-grid article,
.site-v3 .price-grid article,
.site-v3 .info-grid article,
.site-v3 .price-note,
.site-v3 .service-note,
.site-v3 .seo-panel,
.site-v3 .faq-list details {
  border-radius: 12px;
}

.site-v3 .container-illustration {
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(0deg, rgba(11, 15, 13, 0.48), rgba(11, 15, 13, 0.08)),
    url("assets/hero-container-tilt-fixed.webp?v=20260728c") center / cover no-repeat;
}

.site-v3 .container-illustration span {
  display: none;
}

.home-v2 .quick-contact {
  display: none;
}

@media (max-width: 780px) {
  .home-v2 .language-switcher {
    display: inline-grid;
    grid-template-columns: 38px;
    min-height: 44px;
    padding: 2px;
  }

  .home-v2 .language-switcher .is-active {
    display: none;
  }

  .home-v2 .language-switcher a {
    min-height: 38px;
    padding: 0 7px;
  }

  .site-v3 .page-main {
    padding-top: 68px;
  }

  .site-v3 .subpage-hero {
    width: 100%;
    min-height: 390px;
    padding: 42px 18px 38px;
  }

  body.site-v3 .subpage-hero::after {
    right: 0;
    width: 100%;
    opacity: 1;
    transform: none;
    background:
      linear-gradient(90deg, rgba(7, 10, 8, 0.96) 0%, rgba(7, 10, 8, 0.78) 58%, rgba(7, 10, 8, 0.32) 100%),
      linear-gradient(0deg, rgba(7, 10, 8, 0.88) 0%, transparent 62%),
      url("assets/hero-real-mobile.webp") 58% center / cover no-repeat;
    filter: saturate(0.74) contrast(1.06);
  }

  body.site-v3[data-page-identity="pricing"] .subpage-hero::after,
  body.site-v3[data-page-identity="delivery"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(7, 10, 8, 0.96) 0%, rgba(7, 10, 8, 0.78) 58%, rgba(7, 10, 8, 0.28) 100%),
      linear-gradient(0deg, rgba(7, 10, 8, 0.88) 0%, transparent 62%),
      url("assets/material-load.webp") 58% center / cover no-repeat;
  }

  body.site-v3[data-page-identity="references"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(7, 10, 8, 0.96) 0%, rgba(7, 10, 8, 0.76) 58%, rgba(7, 10, 8, 0.26) 100%),
      linear-gradient(0deg, rgba(7, 10, 8, 0.86) 0%, transparent 62%),
      url("assets/hero-reference.webp") 58% center / cover no-repeat;
  }

  body.site-v3[data-page-identity="about"] .subpage-hero::after,
  body.site-v3[data-page-identity="contact"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(7, 10, 8, 0.96) 0%, rgba(7, 10, 8, 0.78) 58%, rgba(7, 10, 8, 0.28) 100%),
      linear-gradient(0deg, rgba(7, 10, 8, 0.88) 0%, transparent 62%),
      url("assets/hero-truck-profile-landscape-fixed.webp?v=20260728d") 58% center / cover no-repeat;
  }

  body.site-v3[data-page-identity="equipment"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(7, 10, 8, 0.96) 0%, rgba(7, 10, 8, 0.76) 58%, rgba(7, 10, 8, 0.26) 100%),
      linear-gradient(0deg, rgba(7, 10, 8, 0.86) 0%, transparent 62%),
      url("assets/hero-crane.webp") 58% center / cover no-repeat;
  }

  body.site-v3[data-page-identity="earthworks"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(7, 10, 8, 0.96) 0%, rgba(7, 10, 8, 0.76) 58%, rgba(7, 10, 8, 0.26) 100%),
      linear-gradient(0deg, rgba(7, 10, 8, 0.86) 0%, transparent 62%),
      url("assets/jcb-minibagr-8026.webp") 58% center / cover no-repeat;
  }

  body.site-v3[data-page-identity="waste"] .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(7, 10, 8, 0.96) 0%, rgba(7, 10, 8, 0.76) 58%, rgba(7, 10, 8, 0.26) 100%),
      linear-gradient(0deg, rgba(7, 10, 8, 0.88) 0%, transparent 62%),
      url("assets/hero-container-tilt-fixed.webp?v=20260728c") 58% center / cover no-repeat;
  }

  .site-v3 .subpage-hero .eyebrow {
    min-height: 0;
    margin-bottom: 10px;
    padding: 0;
    font-size: 0.68rem;
  }

  .site-v3 .subpage-hero h1 {
    max-width: 350px;
    font-size: clamp(2rem, 9vw, 2.45rem);
    line-height: 0.98;
    letter-spacing: -0.042em;
  }

  .site-v3 .subpage-hero p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .site-v3 .subpage-hero .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .site-v3 .subpage-hero .btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .site-v3 .subpage-trustbar {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .site-v3 .subpage-trustbar div {
    min-height: 68px;
    padding: 12px 18px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-v3 .subpage-trustbar div:first-child {
    border-top: 0;
  }

  .site-v3 .subpage-trustbar i,
  .site-v3 .subpage-trustbar svg {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .site-v3 .subpage-trustbar span {
    margin-top: 2px;
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .site-v3 .subpage-trustbar strong {
    font-size: 0.96rem;
  }

  .site-v3 .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .site-v3 .cta-band {
    margin-bottom: 54px;
  }
}

@media (max-width: 390px) {
  .home-v2 .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .home-v2 .brand strong {
    max-width: 136px;
  }
}

/* Homepage v2 — task-first direction selected on 2026-07-19 */
.home-v2 {
  background:
    linear-gradient(90deg, rgba(16, 20, 18, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(16, 20, 18, 0.02) 1px, transparent 1px) 0 0 / 72px 72px,
    #f7f4ec;
}

.home-v2 .site-header {
  color: var(--white);
  background: rgba(11, 15, 13, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.home-v2 .hero {
  min-height: 650px;
  align-items: center;
  padding-top: 74px;
}

.home-v2 .hero-bg {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.98) 0%, rgba(7, 10, 8, 0.9) 42%, rgba(7, 10, 8, 0.35) 70%, rgba(7, 10, 8, 0.14) 100%),
    url("assets/hero-real-desktop.webp") 72% 54% / cover no-repeat;
  filter: saturate(0.78) contrast(1.06);
}

.home-v2 .hero-overlay {
  background:
    linear-gradient(0deg, rgba(11, 15, 13, 0.78), transparent 42%),
    radial-gradient(circle at 82% 28%, rgba(255, 106, 0, 0.13), transparent 34%);
}

.home-v2 .hero::before,
.home-v2 .hero::after {
  display: none;
}

.home-v2 .hero-inner {
  width: min(1180px, calc(100% - 40px));
  padding: 78px 0 120px;
}

.home-v2 .hero .eyebrow {
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.home-v2 .hero h1 {
  max-width: 730px;
  font-size: clamp(3.6rem, 6.4vw, 6.1rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.home-v2 .hero-lead {
  max-width: 570px;
  margin-top: 26px;
  padding-left: 20px;
  border-left: 4px solid var(--safety);
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  font-weight: 560;
  line-height: 1.5;
}

.home-chooser {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 40px));
  margin: -76px auto 0;
}

.home-chooser-inner {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(201, 191, 173, 0.78);
  border-radius: 24px;
  background: rgba(252, 250, 244, 0.98);
  box-shadow: 0 28px 70px rgba(11, 15, 13, 0.18);
}

.home-chooser h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.task-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.task-list a {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, background 160ms ease;
}

.task-list a:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.task-list a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.task-list a:hover,
.task-list a:focus-visible {
  color: var(--safety-dark);
  background: rgba(255, 106, 0, 0.055);
}

.task-list a:focus-visible {
  position: relative;
  z-index: 1;
}

.task-list a > span:nth-child(2),
.task-list strong,
.task-list small {
  display: block;
}

.task-list strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.task-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.task-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper-strong);
}

.task-icon svg,
.task-icon i {
  width: 28px;
  height: 28px;
}

.task-list a > svg:last-child,
.task-list a > i:last-child {
  width: 22px;
  height: 22px;
  transition: transform 160ms ease;
}

.task-list a:hover > svg:last-child,
.task-list a:focus-visible > svg:last-child {
  transform: translateX(4px);
}

.chooser-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 12px;
  margin-top: 22px;
}

.chooser-actions .btn {
  width: 100%;
}

.chooser-call {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11, 15, 13, 0.08);
}

.chooser-call:hover,
.chooser-call:focus-visible {
  border-color: var(--green);
  background: #fffdf8;
}

.equipment-proof {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin: 14px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(45, 95, 82, 0.22);
  border-radius: 10px;
  color: var(--green);
  background: rgba(45, 95, 82, 0.055);
  font-size: 0.9rem;
  font-weight: 690;
  line-height: 1.3;
  text-align: center;
}

.equipment-proof strong {
  font-weight: 850;
}

.equipment-proof svg,
.equipment-proof i {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.operator-proof {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0;
  color: var(--green);
  font-weight: 760;
  text-align: center;
}

.operator-proof svg,
.operator-proof i {
  width: 22px;
  height: 22px;
}

.home-v2 .home-process {
  padding-top: 72px;
  padding-bottom: 34px;
}

.home-v2 .home-process .section-head {
  margin-bottom: 24px;
}

.home-v2 .home-process .steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.home-v2 .home-process .steps article {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  gap: 16px;
  align-items: center;
  min-height: 140px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2 .home-process .steps article:last-child {
  border-right: 0;
}

.home-v2 .home-process .steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: 0;
  color: var(--white);
  background: var(--carbon);
}

.home-v2 .home-process .steps h3,
.home-v2 .home-process .steps p {
  grid-column: auto;
  margin: 0;
}

.home-v2 .home-process .steps p {
  margin-top: 4px;
  font-size: 0.94rem;
}

.home-v2 .home-process .steps article > svg,
.home-v2 .home-process .steps article > i {
  width: 28px;
  height: 28px;
  color: var(--ink-soft);
}

.home-v2 .section.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 34px;
  padding-bottom: 64px;
}

.home-v2 .proof-strip article {
  min-height: 112px;
  border-radius: 0;
  border-right: 0;
  box-shadow: none;
}

.home-v2 .proof-strip article:first-child {
  border-radius: 12px 0 0 12px;
}

.home-v2 .proof-strip article:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 12px 12px 0;
}

.home-v2 .services,
.home-v2 .pricing-preview,
.home-v2 .areas,
.home-v2 .faq {
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-v2 .services {
  border-top: 1px solid var(--line);
}

.home-v2 .service-card {
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(11, 15, 13, 0.08);
}

@media (max-width: 1040px) {
  .home-v2 .home-process .steps {
    grid-template-columns: 1fr;
  }

  .home-v2 .home-process .steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-v2 .home-process .steps article:last-child {
    border-bottom: 0;
  }

  .home-v2 .section.proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v2 .proof-strip article:nth-child(2) {
    border-right: 1px solid var(--line);
    border-radius: 0 12px 0 0;
  }

  .home-v2 .proof-strip article:nth-child(3) {
    border-radius: 0 0 0 12px;
  }

  .home-v2 .proof-strip article:last-child {
    border-radius: 0 0 12px 0;
  }
}

@media (max-width: 780px) {
  .home-v2 .site-header {
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .home-v2 .site-nav {
    top: 60px;
  }

  .home-v2 .language-switcher {
    display: none;
  }

  .home-v2 .site-header .header-call {
    display: inline-flex;
  }

  .home-v2 .hero {
    min-height: 255px;
    align-items: end;
    padding-top: 60px;
  }

  .home-v2 .hero-bg {
    background:
      linear-gradient(90deg, rgba(7, 10, 8, 0.94) 0%, rgba(7, 10, 8, 0.74) 56%, rgba(7, 10, 8, 0.22) 100%),
      linear-gradient(0deg, rgba(7, 10, 8, 0.86) 0%, transparent 56%),
      url("assets/hero-real-mobile.webp") 57% center / cover no-repeat;
    filter: saturate(0.78) contrast(1.06);
  }

  .home-v2 .hero-overlay {
    background: linear-gradient(0deg, rgba(11, 15, 13, 0.78), transparent 52%);
  }

  .home-v2 .hero-inner {
    width: min(calc(100% - 36px), 620px);
    padding: 26px 0 18px;
  }

  .home-v2 .hero .eyebrow {
    display: none;
  }

  .home-v2 .hero h1 {
    max-width: 320px;
    font-size: clamp(1.92rem, 8.4vw, 2.08rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .home-v2 .hero-lead {
    max-width: 330px;
    margin-top: 12px;
    padding-left: 14px;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .home-chooser {
    width: 100%;
    margin: 0;
  }

  .home-chooser-inner {
    padding: 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 24px 24px 0 0;
    box-shadow: none;
  }

  .home-chooser h2 {
    margin-bottom: 10px;
    font-size: 1.55rem;
  }

  .task-list {
    grid-template-columns: 1fr;
  }

  .task-list a {
    grid-template-columns: 40px minmax(0, 1fr) 22px;
    gap: 10px;
    min-height: 52px;
    padding: 5px 4px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .task-list a:last-child {
    border-bottom: 0 !important;
  }

  .task-icon {
    width: 40px;
    height: 40px;
  }

  .task-icon svg,
  .task-icon i {
    width: 22px;
    height: 22px;
  }

  .task-list strong {
    font-size: 0.96rem;
  }

  .task-list small {
    display: none;
  }

  .chooser-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .equipment-proof {
    justify-content: flex-start;
    margin-top: 8px;
    padding: 8px 10px;
    font-size: 0.76rem;
    text-align: left;
  }

  .equipment-proof svg,
  .equipment-proof i {
    width: 18px;
    height: 18px;
  }

  .chooser-actions .btn {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.95rem;
  }

  .operator-proof {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 8px;
    padding: 0 4px;
    font-size: 0.8rem;
    text-align: left;
  }

  .home-v2 .home-process {
    width: 100%;
    padding: 48px 18px 52px;
    border-radius: 24px 24px 0 0;
    background: #f0ece3;
  }

  .home-v2 .mobile-cta {
    display: none;
  }

  .home-v2 .home-process .section-head {
    margin-bottom: 20px;
  }

  .home-v2 .home-process .section-head .eyebrow {
    display: none;
  }

  .home-v2 .home-process .section-head h2 {
    font-size: 1.9rem;
  }

  .home-v2 .home-process .steps {
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .home-v2 .home-process .steps article {
    grid-template-columns: 42px minmax(0, 1fr) 26px;
    gap: 12px;
    min-height: 94px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .home-v2 .home-process .steps span {
    grid-row: auto;
    width: 38px;
    height: 38px;
  }

  .home-v2 .home-process .steps h3 {
    font-size: 1rem;
  }

  .home-v2 .home-process .steps p {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .home-v2 .home-process .steps article > svg,
  .home-v2 .home-process .steps article > i {
    width: 24px;
    height: 24px;
  }

  .home-v2 .section.proof-strip {
    grid-template-columns: 1fr;
    width: min(calc(100% - 36px), 620px);
    gap: 0;
    padding: 42px 0 54px;
  }

  .home-v2 .proof-strip article,
  .home-v2 .proof-strip article:first-child,
  .home-v2 .proof-strip article:nth-child(2),
  .home-v2 .proof-strip article:nth-child(3),
  .home-v2 .proof-strip article:last-child {
    min-height: 88px;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0;
  }

  .home-v2 .proof-strip article:first-child {
    border-radius: 12px 12px 0 0;
  }

  .home-v2 .proof-strip article:last-child {
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
  }

  .home-v2 .services,
  .home-v2 .pricing-preview,
  .home-v2 .areas,
  .home-v2 .faq {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 8px;
    min-height: 68px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand strong {
    font-size: 0.88rem;
    max-width: 132px;
  }

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

  .header-actions {
    gap: 6px;
  }

  .language-switcher {
    grid-template-columns: repeat(2, 34px);
    min-height: 46px;
  }

  .language-switcher a,
  .language-switcher span {
    min-height: 40px;
    padding: 0 6px;
    font-size: 0.74rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    top: 68px;
    left: 10px;
    right: 10px;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 350px) {
  .brand strong {
    display: none;
  }

  .header-call,
  .nav-toggle {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
}

/* Mobilní LCP: menší hero obrázek (44 kB místo 125 kB) */
@media (max-width: 780px) {
  .service-card.has-photo {
    display: grid;
    grid-template-columns: clamp(112px, 34vw, 240px) minmax(0, 1fr);
    align-items: stretch;
  }

  .service-card.has-photo img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .service-card.has-photo .service-card-body {
    min-height: 0;
    padding: 16px;
  }

  .service-card.has-photo .service-card-body .text-link {
    margin-top: 12px;
  }

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

  .area-tags li {
    min-height: 64px;
    padding: 8px;
  }

  .steps article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    padding: 20px;
  }

  .steps span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .steps h3,
  .steps p {
    grid-column: 2;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(5, 7, 6, 0.98), rgba(11, 15, 13, 0.86) 42%, rgba(11, 15, 13, 0.2)),
      url("assets/hero-truck-mobile.webp") 68% center / cover;
  }

  .subpage-hero::after {
    background:
      linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.38) 44%, rgba(13, 18, 15, 0.08) 100%),
      linear-gradient(0deg, rgba(13, 18, 15, 0.92), rgba(13, 18, 15, 0.2) 48%, rgba(13, 18, 15, 0.78)),
      url("assets/hero-truck-mobile.webp") center 64% / cover no-repeat;
  }
}

/* Homepage header accessibility override must follow the v2 mobile rules. */
.site-v3 .brand-mark {
  color: transparent;
  background: var(--safety) url("assets/favicon.svg") center / cover no-repeat;
}

.site-v3 .brand-mark::before,
.site-v3 .brand-mark::after {
  display: none;
}

@media (max-width: 780px) {
  .home-v2 .language-switcher {
    display: inline-grid;
    grid-template-columns: 36px;
    min-height: 42px;
    padding: 2px;
  }

  .home-v2 .language-switcher .is-active {
    display: none;
  }

  .home-v2 .language-switcher a {
    min-height: 36px;
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .home-v2 .header-actions {
    gap: 6px;
  }
}

/* Homepage v3.1 — premium refinement on 2026-08-04 */
.home-v2 .hero-inner {
  padding: 88px 0 132px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.62fr);
  gap: 34px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.home-v2 .hero .eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 167, 84, 0.94);
}

.home-v2 .hero h1 {
  max-width: 820px;
  font-size: clamp(4.1rem, 6.9vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.home-v2 .hero-lead {
  max-width: 620px;
  margin-top: 24px;
  padding-left: 18px;
  border-left: 3px solid rgba(255, 106, 0, 0.86);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  font-weight: 520;
  line-height: 1.52;
}

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

.home-v2 .hero-actions .btn {
  min-width: 240px;
}

.home-v2 .hero-call {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

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

.hero-trust-list li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 620;
}

.hero-panel {
  display: grid;
  gap: 16px;
  padding: 26px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 20px 40px rgba(7, 10, 8, 0.2);
  backdrop-filter: blur(14px);
}

.hero-panel-kicker {
  margin: 0;
  color: rgba(255, 167, 84, 0.94);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-facts div {
  display: grid;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.35;
}

.home-chooser {
  margin-top: -54px;
}

.home-chooser-inner {
  padding: clamp(32px, 4vw, 54px);
  border-color: rgba(206, 198, 183, 0.72);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.985), rgba(255, 255, 255, 0.985));
  box-shadow: 0 34px 74px rgba(10, 14, 12, 0.14);
}

.home-chooser-intro {
  max-width: 720px;
  margin-bottom: 22px;
}

.home-chooser-intro .eyebrow {
  margin-bottom: 10px;
}

.home-chooser h2 {
  margin-bottom: 12px;
}

.home-chooser-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.task-list {
  gap: 14px;
  border: 0;
  background: transparent;
}

.task-list a {
  min-height: 118px;
  padding: 20px 22px;
  border: 1px solid rgba(209, 200, 185, 0.92);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 1px 0 rgba(18, 22, 18, 0.03);
}

.task-list a:nth-child(odd) {
  border-right: 1px solid rgba(209, 200, 185, 0.92);
}

.task-list a:nth-last-child(-n + 2) {
  border-bottom: 1px solid rgba(209, 200, 185, 0.92);
}

.task-list a:hover,
.task-list a:focus-visible {
  transform: translateY(-1px);
  color: var(--ink);
  border-color: rgba(255, 106, 0, 0.32);
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(18, 22, 18, 0.08);
}

.task-icon {
  border-radius: 16px;
  background: linear-gradient(180deg, #f4ede0, #efe7d8);
}

.task-list strong {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.task-list small {
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.42;
}

.chooser-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  margin-top: 18px;
}

.equipment-proof,
.operator-proof {
  flex: 1 1 260px;
  justify-content: flex-start;
  margin: 0;
  padding: 11px 14px;
  border-radius: 14px;
  text-align: left;
}

.equipment-proof {
  border-color: rgba(45, 95, 82, 0.18);
  background: rgba(45, 95, 82, 0.05);
}

.operator-proof {
  border: 1px solid rgba(206, 198, 183, 0.88);
  color: var(--ink-soft);
  background: rgba(246, 242, 234, 0.7);
}

.operator-proof svg,
.operator-proof i {
  color: var(--green);
}

.chooser-actions {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.74fr);
  margin-top: 18px;
}

.chooser-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.52;
}

.home-v2 .home-process {
  padding-top: 78px;
  padding-bottom: 40px;
}

.home-v2 .home-process .steps {
  gap: 16px;
  border: 0;
  background: transparent;
}

.home-v2 .home-process .steps article {
  min-height: 154px;
  padding: 26px;
  border: 1px solid rgba(209, 200, 185, 0.9);
  border-right: 1px solid rgba(209, 200, 185, 0.9);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.94);
}

.home-v2 .home-process .steps article:last-child {
  border-right: 1px solid rgba(209, 200, 185, 0.9);
}

.home-v2 .home-process .steps span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 0.96rem;
}

.home-v2 .home-process .steps article > svg,
.home-v2 .home-process .steps article > i {
  color: var(--green);
}

.home-v2 .section.proof-strip {
  gap: 14px;
  padding-top: 30px;
  padding-bottom: 60px;
}

.home-v2 .proof-strip article,
.home-v2 .proof-strip article:first-child,
.home-v2 .proof-strip article:last-child {
  min-height: 134px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(209, 200, 185, 0.92);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 10px 24px rgba(18, 22, 18, 0.04);
}

.home-v2 .proof-strip strong {
  font-size: 1rem;
  line-height: 1.18;
}

.home-v2 .proof-strip span {
  font-size: 0.91rem;
  line-height: 1.45;
}

.home-v2 .services,
.home-v2 .pricing-preview,
.home-v2 .areas,
.home-v2 .faq {
  padding-top: 84px;
  padding-bottom: 84px;
}

.home-v2 .services {
  border-top: 0;
}

.home-v2 .service-grid {
  gap: 18px;
}

.home-v2 .service-card {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(11, 15, 13, 0.08);
}

.home-v2 .pricing-preview .price-fast-table {
  overflow: hidden;
  border: 1px solid rgba(209, 200, 185, 0.9);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.9);
}

.home-v2 .price-fast-row {
  padding: 24px 26px;
}

.home-v2 .areas {
  background:
    linear-gradient(180deg, rgba(252, 248, 240, 0.96), rgba(247, 243, 234, 0.96)),
    var(--paper-strong);
}

.area-layout {
  gap: 22px;
  grid-template-columns: 340px minmax(0, 1fr);
}

.area-panel {
  padding: 34px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 106, 0, 0.18), transparent 38%),
    linear-gradient(160deg, #181d1a, #0c110f);
}

.area-panel h3 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  line-height: 1.06;
}

.area-groups {
  display: grid;
  gap: 16px;
}

.area-primary {
  padding: 24px 24px 22px;
  border: 1px solid rgba(209, 200, 185, 0.86);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.88);
}

.area-primary .eyebrow {
  margin-bottom: 10px;
}

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

.area-pills li {
  margin: 0;
}

.area-pills a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(45, 95, 82, 0.18);
  border-radius: 999px;
  color: var(--green);
  background: rgba(45, 95, 82, 0.05);
  font-weight: 760;
}

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

.area-tags li {
  min-height: 78px;
  padding: 12px;
  border-radius: 18px;
}

.contact-section-premium {
  gap: 0;
  border: 1px solid rgba(209, 200, 185, 0.88);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.985), rgba(255, 255, 255, 0.985));
  box-shadow: 0 26px 64px rgba(13, 17, 15, 0.12);
}

.contact-section-premium .contact-media {
  min-height: 100%;
  background: #0f1412;
}

.contact-section-premium .contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.contact-section-premium .contact-content {
  padding: clamp(28px, 4vw, 50px);
  color: var(--ink);
}

.contact-section-premium .contact-copy {
  align-self: start;
  max-width: 440px;
}

.contact-section-premium .contact-copy h2,
.contact-section-premium .contact-copy p:not(.eyebrow) {
  color: var(--ink);
}

.contact-checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.52;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--safety);
  transform: translateY(-50%);
}

.contact-section-premium .contact-cards {
  margin-top: 22px;
}

.contact-section-premium .contact-cards a {
  border-color: rgba(209, 200, 185, 0.86);
  background: rgba(246, 242, 234, 0.64);
}

.contact-section-premium .contact-cards a:hover,
.contact-section-premium .contact-cards a:focus-visible {
  border-color: rgba(255, 106, 0, 0.28);
  background: #fffdf8;
}

.contact-quiet-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.52;
}

.contact-section-premium .inquiry-form {
  border-radius: 24px;
  background: linear-gradient(180deg, #fffefa 0%, #ffffff 100%);
  box-shadow: 0 18px 40px rgba(18, 22, 18, 0.08);
}

.contact-section-premium .form-note,
.contact-section-premium .form-privacy {
  color: var(--ink-soft);
}

@media (max-width: 1120px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-panel {
    max-width: 540px;
  }

  .area-layout {
    grid-template-columns: 1fr;
  }

  .area-panel {
    min-height: 0;
  }
}

@media (max-width: 1040px) {
  .task-list {
    grid-template-columns: 1fr;
  }

  .task-list a,
  .task-list a:nth-child(odd),
  .task-list a:nth-last-child(-n + 2),
  .task-list a:last-child {
    border-right: 1px solid rgba(209, 200, 185, 0.92);
    border-bottom: 1px solid rgba(209, 200, 185, 0.92);
  }

  .task-list a:last-child {
    border-bottom: 1px solid rgba(209, 200, 185, 0.92);
  }

  .home-v2 .section.proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .home-v2 .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .home-v2 .hero-inner {
    width: min(calc(100% - 36px), 620px);
    padding: 34px 0 32px;
  }

  .hero-shell {
    gap: 16px;
  }

  .home-v2 .hero h1 {
    max-width: 340px;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .home-v2 .hero-lead {
    max-width: 336px;
    margin-top: 14px;
    padding-left: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .home-v2 .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .home-v2 .hero-actions .btn {
    min-width: 0;
  }

  .hero-trust-list {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-trust-list li {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .hero-panel {
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
  }

  .hero-panel h2 {
    font-size: 1.28rem;
  }

  .hero-panel p,
  .hero-facts dd {
    font-size: 0.9rem;
  }

  .home-chooser {
    margin-top: 0;
  }

  .home-chooser-inner {
    padding: 22px 18px 18px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 255, 255, 0.98));
  }

  .home-chooser-lead {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .task-list {
    gap: 10px;
  }

  .task-list a,
  .task-list a:nth-child(odd),
  .task-list a:nth-last-child(-n + 2),
  .task-list a:last-child {
    min-height: 70px;
    padding: 12px 14px;
    border-radius: 16px;
    border-right: 1px solid rgba(209, 200, 185, 0.92) !important;
    border-bottom: 1px solid rgba(209, 200, 185, 0.92) !important;
  }

  .task-list small {
    display: block;
    font-size: 0.8rem;
  }

  .chooser-meta {
    flex-direction: column;
    margin-top: 14px;
  }

  .equipment-proof,
  .operator-proof {
    width: 100%;
    font-size: 0.8rem;
  }

  .chooser-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .chooser-note {
    margin-top: 12px;
    font-size: 0.84rem;
  }

  .home-v2 .home-process {
    padding: 52px 18px 52px;
    background: #f4efe6;
  }

  .home-v2 .home-process .steps {
    gap: 10px;
  }

  .home-v2 .home-process .steps article,
  .home-v2 .home-process .steps article:last-child {
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .home-v2 .section.proof-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(calc(100% - 36px), 620px);
    padding: 38px 0 46px;
  }

  .home-v2 .proof-strip article,
  .home-v2 .proof-strip article:first-child,
  .home-v2 .proof-strip article:nth-child(2),
  .home-v2 .proof-strip article:nth-child(3),
  .home-v2 .proof-strip article:last-child {
    min-height: 0;
    padding: 18px;
    border-radius: 16px;
    border-bottom: 1px solid rgba(209, 200, 185, 0.92);
  }

  .home-v2 .services,
  .home-v2 .pricing-preview,
  .home-v2 .areas,
  .home-v2 .faq {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .area-panel,
  .area-primary {
    padding: 18px;
    border-radius: 18px;
  }

  .area-pills {
    gap: 8px;
  }

  .area-pills a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .area-tags {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .area-tags li {
    min-height: 68px;
    padding: 10px;
    border-radius: 16px;
  }

  .contact-section-premium {
    border-radius: 24px;
  }

  .contact-section-premium .contact-media {
    display: none;
  }

  .contact-section-premium .contact-content {
    padding: 22px 18px;
  }

  .contact-checklist {
    gap: 8px;
    margin-top: 16px;
  }

  .contact-section-premium .inquiry-form {
    padding: 18px;
    border-radius: 20px;
  }
}

/* Homepage v3.2 — continuity polish on 2026-08-04 */
.nav-scrim {
  display: none;
}

.process-lead {
  margin: 12px 0 0;
}

.chooser-support {
  margin: 0;
}

body.has-open-nav {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .nav-scrim {
    position: fixed;
    inset: 66px 0 0;
    z-index: 28;
    display: block;
    background: linear-gradient(180deg, rgba(7, 10, 8, 0.16), rgba(7, 10, 8, 0.54));
    backdrop-filter: blur(4px);
  }

  .nav-scrim[hidden] {
    display: none;
  }

  .site-header.is-open {
    background: rgba(11, 15, 13, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  }

  .site-header.is-open .nav-toggle {
    border-color: rgba(255, 106, 0, 0.48);
    background: rgba(255, 106, 0, 0.14);
  }

  .site-nav {
    top: 78px;
    left: 14px;
    right: 14px;
    gap: 8px;
    padding: 18px;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(19, 24, 21, 0.98), rgba(10, 13, 11, 0.98)),
      rgba(11, 15, 13, 0.98);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
  }

  .site-nav a {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 820;
  }

  .site-nav a[aria-current="page"] {
    color: var(--white);
    background: rgba(255, 106, 0, 0.18);
  }
}

.chooser-actions {
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  gap: 14px;
}

.chooser-actions .btn {
  width: auto;
  min-width: 320px;
}

.chooser-support {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.chooser-support a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-v2 .home-process {
  position: relative;
  padding-top: 96px;
  padding-bottom: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 106, 0, 0.18), transparent 23rem),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 24rem),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, #111613 0%, #191f1b 100%);
}

.home-v2 .home-process .section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-v2 .home-process .section-head .eyebrow,
.home-v2 .home-process .section-head h2 {
  color: var(--white);
}

.process-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.home-v2 .home-process .steps article {
  border-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.home-v2 .home-process .steps span {
  color: #17120a;
  background: linear-gradient(180deg, #ffae4a, #ff8f1f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.home-v2 .home-process .steps h3 {
  color: var(--white);
}

.home-v2 .home-process .steps p {
  color: rgba(255, 255, 255, 0.66);
}

.home-v2 .home-process .steps article > svg,
.home-v2 .home-process .steps article > i {
  color: rgba(255, 171, 87, 0.92);
}

.home-v2 .section.proof-strip {
  width: min(calc(100% - 36px), 1180px);
  margin: -24px auto 0;
  padding-top: 0;
  padding-bottom: 78px;
}

.home-v2 .proof-strip article,
.home-v2 .proof-strip article:first-child,
.home-v2 .proof-strip article:last-child {
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.98);
  box-shadow: 0 18px 36px rgba(17, 22, 18, 0.08);
}

.home-v2 .proof-strip article::before {
  inset: 0 0 auto 0;
  width: auto;
  height: 4px;
  border-radius: 22px 22px 0 0;
}

.home-v2 .services,
.home-v2 .pricing-preview {
  background:
    linear-gradient(180deg, rgba(252, 248, 239, 0.96), rgba(255, 255, 255, 0.98));
}

.home-v2 .pricing-preview .section-head {
  max-width: 760px;
}

.home-v2 .pricing-preview .price-fast-table {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-v2 .price-fast-row {
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: 220px;
  align-content: start;
  padding: 24px 24px 22px;
  border: 1px solid rgba(209, 200, 185, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(18, 22, 18, 0.06);
}

.home-v2 .price-fast-row strong {
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.home-v2 .price-fast-row span {
  font-size: 0.94rem;
}

.home-v2 .price-fast-row .price-fast-action {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
}

.proof-actions {
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.home-v2 .areas {
  padding-top: 92px;
}

.home-v2 .area-layout {
  align-items: stretch;
}

.home-v2 .area-panel {
  box-shadow: 0 22px 46px rgba(11, 15, 13, 0.16);
}

.home-v2 .area-tags li {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(18, 22, 18, 0.05);
}

.site-footer div:last-child a + a,
.site-footer div:last-child a + button,
.site-footer div:last-child button + a {
  margin-top: 0;
}

@media (max-width: 1040px) {
  .home-v2 .pricing-preview .price-fast-table {
    grid-template-columns: 1fr;
  }

  .proof-actions {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 780px) {
  .home-v2 .mobile-cta {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  body.is-past-hero:not(.is-in-form-zone) .home-v2 .mobile-cta {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .home-v2 .mobile-cta a {
    min-height: 54px;
    border-radius: 14px;
  }

  .home-v2 .mobile-cta a:last-child {
    background: rgba(255, 255, 255, 0.14);
  }

  .chooser-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .chooser-support {
    font-size: 0.88rem;
  }

  .home-v2 .home-process {
    padding: 58px 18px 26px;
  }

  .process-lead {
    max-width: 360px;
    font-size: 0.92rem;
  }

  .home-v2 .section.proof-strip {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .home-v2 .pricing-preview .price-fast-table {
    grid-template-columns: 1fr;
  }

  .home-v2 .price-fast-row {
    min-height: 0;
    padding: 20px 18px;
    border-radius: 18px;
  }
}

/* Homepage v3.3 — mobile-first polish on 2026-08-04 */
@media (max-width: 780px) {
  .nav-scrim {
    inset: 70px 0 0;
    background: linear-gradient(180deg, rgba(7, 10, 8, 0.08), rgba(7, 10, 8, 0.48));
    backdrop-filter: blur(6px);
  }

  .nav-toggle {
    border-radius: 14px;
  }

  .site-nav {
    top: 74px;
    left: 10px;
    right: 10px;
    gap: 6px;
    padding: 14px;
    border-radius: 18px;
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 0.94rem;
  }

  .home-v2 .hero-inner {
    width: min(calc(100% - 28px), 620px);
    padding: 30px 0 28px;
  }

  .hero-shell {
    gap: 14px;
  }

  .home-v2 .hero h1 {
    max-width: 310px;
    font-size: clamp(2.35rem, 10.8vw, 3.15rem);
    letter-spacing: -0.045em;
  }

  .home-v2 .hero-lead {
    max-width: none;
    margin-top: 16px;
    padding-left: 14px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .home-v2 .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .home-v2 .hero-actions .btn {
    min-height: 52px;
    border-radius: 16px;
    font-size: 0.98rem;
  }

  .hero-trust-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-trust-list li {
    width: fit-content;
    max-width: 100%;
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 0.79rem;
    line-height: 1.3;
  }

  .hero-panel {
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  }

  .hero-panel-kicker {
    font-size: 0.76rem;
  }

  .hero-panel h2 {
    font-size: 1.22rem;
  }

  .hero-panel p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-facts div {
    min-height: 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-facts dt {
    font-size: 0.7rem;
  }

  .hero-facts dd {
    font-size: 0.86rem;
    line-height: 1.32;
  }

  .home-chooser-inner {
    padding: 20px 16px 16px;
    border-radius: 24px 24px 0 0;
  }

  .home-chooser-intro {
    display: grid;
    gap: 10px;
  }

  .home-chooser-lead,
  .chooser-note {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .task-list {
    gap: 8px;
  }

  .task-list a,
  .task-list a:nth-child(odd),
  .task-list a:nth-last-child(-n + 2),
  .task-list a:last-child {
    min-height: 66px;
    padding: 12px 13px;
    border-radius: 14px;
  }

  .task-list strong {
    font-size: 0.96rem;
  }

  .task-list small {
    margin-top: 2px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .chooser-meta {
    gap: 10px;
    margin-top: 12px;
  }

  .equipment-proof,
  .operator-proof {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 10px 24px rgba(18, 22, 18, 0.06);
  }

  .chooser-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .chooser-support {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .home-v2 .home-process {
    padding: 50px 16px 18px;
  }

  .home-v2 .home-process .section-head {
    margin-bottom: 20px;
  }

  .process-lead {
    max-width: 340px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .home-v2 .home-process .steps {
    gap: 10px;
  }

  .home-v2 .home-process .steps article {
    padding: 16px;
    border-radius: 18px;
  }

  .home-v2 .section.proof-strip {
    width: min(calc(100% - 24px), 1180px);
    padding-top: 6px;
    padding-bottom: 42px;
  }

  .home-v2 .proof-strip article,
  .home-v2 .proof-strip article:first-child,
  .home-v2 .proof-strip article:last-child {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .home-v2 .pricing-preview .price-fast-table {
    gap: 12px;
  }

  .home-v2 .price-fast-row {
    padding: 18px 16px;
  }

  .home-v2 .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    padding: 6px;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(11, 15, 13, 0.94);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  }

  .home-v2 .mobile-cta a {
    min-height: 46px;
    border-radius: 12px;
    font-size: 0.89rem;
    letter-spacing: -0.01em;
  }

  .home-v2 .mobile-cta a i,
  .home-v2 .mobile-cta a svg {
    width: 16px;
    height: 16px;
  }

body.has-open-nav .home-v2 .mobile-cta {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
  }
}

/* Site-wide mobile-first polish — 2026-08-04 */
h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  body.has-cookie-banner {
    padding-bottom: calc(194px + env(safe-area-inset-bottom));
  }

  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header.is-open {
    z-index: 40;
  }

  .site-nav {
    width: auto;
    justify-self: stretch;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .language-switcher,
  .home-v2 .language-switcher {
    min-height: 46px;
  }

  .language-switcher a,
  .language-switcher span,
  .home-v2 .language-switcher a,
  .home-v2 .language-switcher span {
    min-height: 44px;
  }

  .home-v2 .language-switcher {
    grid-template-columns: 40px;
    padding: 1px;
  }

  .site-v3 .section,
  .site-v3 .contact-section {
    width: min(calc(100% - 32px), 620px);
  }

  .site-v3 .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .site-v3 .section-head {
    margin-bottom: 24px;
  }

  .site-v3 .section-head p:not(.eyebrow),
  .site-v3 .split-content p,
  .site-v3 .contact-copy p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .site-v3 .service-card,
  .site-v3 .content-blocks article,
  .site-v3 .scenario-list article,
  .site-v3 .detail-grid article,
  .site-v3 .price-grid article,
  .site-v3 .info-grid article,
  .site-v3 .price-note,
  .site-v3 .service-note,
  .site-v3 .seo-panel,
  .site-v3 .faq-list details,
  .site-v3 .location-sections article,
  .site-v3 .mobile-action-box {
    border-radius: 16px;
  }

  .site-v3 .detail-grid article,
  .site-v3 .price-grid article,
  .site-v3 .content-blocks article,
  .site-v3 .scenario-list article,
  .site-v3 .location-sections article,
  .site-v3 .service-note,
  .site-v3 .seo-panel,
  .site-v3 .mobile-action-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-v3 .detail-grid article::after {
    left: 20px;
  }

  .service-card.has-photo {
    border-radius: 18px;
  }

  .service-card.has-photo .service-card-body .text-link,
  .section-link,
  .text-link {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
  }

  .area-pills a,
  .area-tags a,
  .link-cloud a,
  .local-links a,
  .site-footer a,
  .footer-privacy-button {
    min-height: 44px;
  }

  .inquiry-form {
    gap: 14px;
  }

  .form-optional summary {
    min-height: 56px;
  }

  .consent {
    min-height: 44px;
    align-content: start;
    padding: 4px 0;
  }

  .inquiry-form .btn,
  .mini-inquiry .btn {
    min-height: 54px;
  }

  .cookie-banner {
    bottom: calc(78px + env(safe-area-inset-bottom));
    border-radius: 16px;
  }

  .cookie-actions .btn {
    min-height: 44px;
  }

  .mobile-cta,
  .home-v2 .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(11, 15, 13, 0.94);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .mobile-cta a,
  .home-v2 .mobile-cta a {
    min-height: 48px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  body.has-mobile-cta-guard .mobile-cta,
  body.has-open-nav .mobile-cta,
  body.is-in-form-zone .mobile-cta {
    transform: translateY(125%);
    opacity: 0;
    pointer-events: none;
  }

  body.has-mobile-cta-guard.is-past-hero:not(.is-in-form-zone):not(.has-open-nav) .mobile-cta {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .home-v2 .hero-inner {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .home-v2 .hero h1 {
    max-width: 300px;
    font-size: clamp(2.25rem, 10vw, 2.75rem);
    line-height: 0.96;
  }

  .home-v2 .hero-lead {
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .hero-trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 14px;
  }

  .hero-trust-list li {
    width: auto;
    padding: 8px 10px;
  }

  .hero-trust-list li:last-child {
    grid-column: 1 / -1;
  }

  .hero-panel {
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
  }

  .hero-panel h2 {
    font-size: 1.14rem;
  }

  .hero-panel p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-facts div {
    padding: 9px;
  }

  .hero-facts dt {
    font-size: 0.63rem;
  }

  .hero-facts dd {
    font-size: 0.78rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .chooser-meta {
    align-items: stretch;
  }

  .equipment-proof,
  .operator-proof {
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 350px) {
  .hero-trust-list {
    grid-template-columns: 1fr;
  }

  .hero-trust-list li:last-child {
    grid-column: auto;
  }
}

/* Local Authority redesign — selected direction, 2026-08-04 */
:root {
  --authority-paper: #f7f3eb;
  --authority-paper-strong: #eee7da;
  --authority-ink: #0d100f;
  --authority-muted: #575d59;
  --authority-line: #d8d0c2;
  --authority-orange: #ff6500;
  --authority-orange-dark: #d95000;
  --authority-max: 1240px;
}

body.site-v3 {
  color: var(--authority-ink);
  background: var(--authority-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.site-v3 h1,
.site-v3 h2,
.site-v3 h3,
.site-v3 strong {
  letter-spacing: -0.035em;
}

.site-v3 .eyebrow {
  margin: 0 0 14px;
  color: var(--authority-orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.085em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-v3 .btn {
  min-height: 52px;
  gap: 10px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: -0.015em;
  box-shadow: none;
}

.site-v3 .btn-primary {
  border-color: var(--authority-orange);
  color: #0a0d0b;
  background: var(--authority-orange);
}

.site-v3 .btn-primary:hover,
.site-v3 .btn-primary:focus-visible {
  border-color: #ff7926;
  background: #ff7926;
  transform: translateY(-1px);
}

.site-v3 .btn-dark {
  border: 1px solid #1f2421;
  color: #fff;
  background: #111513;
}

.site-v3 .section-link,
.site-v3 .text-link {
  color: var(--authority-ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--authority-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.site-v3 .site-header {
  position: fixed;
  z-index: 40;
  min-height: 70px;
  padding: 10px clamp(18px, 3.4vw, 52px);
  color: #fff;
  background: rgba(8, 11, 9, 0.98);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-v3 .site-header.is-scrolled,
.site-v3 .site-header.is-open {
  background: rgba(8, 11, 9, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.site-v3 .brand {
  min-width: 194px;
  gap: 10px;
}

.site-v3 .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  color: #111411;
  background: #f5a82d;
  font-size: 1.1rem;
  box-shadow: none;
}

.site-v3 .brand-mark::before,
.site-v3 .brand-mark::after {
  display: none;
}

.site-v3 .brand-mark,
.site-v3 .brand-mark > * {
  transform: none;
}

.site-v3 .brand strong {
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.site-v3 .brand small {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.site-v3 .site-nav {
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.site-v3 .site-nav a {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 760;
}

.site-v3 .site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--authority-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
}

.site-v3 .site-nav a:hover::after,
.site-v3 .site-nav a:focus-visible::after,
.site-v3 .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

@media (min-width: 1181px) {
  .site-v3 .site-nav a:nth-child(n + 7) {
    display: none;
  }
}

.site-v3 .header-actions {
  gap: 8px;
}

.site-v3 .language-switcher {
  order: 1;
  min-height: 42px;
  padding: 2px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.site-v3 .language-switcher a,
.site-v3 .language-switcher span {
  min-height: 38px;
  border-radius: 5px;
  font-size: 0.72rem;
}

.site-v3 .header-call {
  order: 2;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-weight: 850;
}

.site-v3 .header-quote {
  order: 3;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  color: #0b0e0c;
  background: var(--authority-orange);
  font-size: 0.8rem;
  font-weight: 900;
}

.site-v3 .nav-toggle {
  order: 4;
  width: 44px;
  height: 44px;
  border-radius: 7px;
}

/* Homepage hero */
.home-v2 .home-authority-hero {
  min-height: 0;
  padding: 70px 0 0;
  color: var(--authority-ink);
  background: var(--authority-paper);
}

.home-v2 .home-authority-hero::before,
.home-v2 .home-authority-hero::after,
.home-v2 .home-authority-hero .hero-bg,
.home-v2 .home-authority-hero .hero-overlay {
  display: none;
}

.home-v2 .home-authority-hero .hero-inner {
  width: 100%;
  max-width: none;
  padding: 0;
}

.home-v2 .home-authority-hero .hero-shell {
  position: relative;
  display: grid;
  min-height: 720px;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 0;
  align-items: stretch;
}

.home-v2 .home-authority-hero .hero-copy {
  display: flex;
  min-height: 606px;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(32px, 3vw, 44px) 100px clamp(52px, 5.3vw, 76px);
}

.home-v2 .home-authority-hero .hero .eyebrow,
.home-v2 .home-authority-hero .eyebrow {
  color: var(--authority-orange);
  text-shadow: none;
}

.home-v2 .home-authority-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--authority-ink);
  font-size: clamp(3.5rem, 5.2vw, 5.25rem);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-shadow: none;
}

.home-v2 .home-authority-hero .hero-lead {
  max-width: 520px;
  margin: 26px 0 0;
  padding: 0;
  border: 0;
  color: #3d433f;
  font-size: 1.03rem;
  line-height: 1.62;
  text-shadow: none;
}

.home-v2 .home-authority-hero .hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.home-v2 .home-authority-hero .hero-actions .btn {
  min-height: 54px;
  border-radius: 8px;
}

.home-v2 .home-authority-hero .hero-trust-list {
  display: grid;
  max-width: 620px;
  margin: 30px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-v2 .home-authority-hero .hero-trust-list li {
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #343a36;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.35;
  backdrop-filter: none;
}

.home-v2 .hero-visual {
  min-height: 606px;
  margin: 0;
  overflow: hidden;
  background: #ddd5c8;
}

.home-v2 .hero-visual picture,
.home-v2 .hero-visual img {
  width: 100%;
  height: 100%;
}

.home-v2 .hero-visual img {
  object-fit: cover;
  object-position: 48% center;
}

.home-v2 .hero-direct-contact {
  position: absolute;
  z-index: 2;
  bottom: -52px;
  left: 50%;
  display: grid;
  width: min(690px, calc(100% - 40px));
  min-height: 104px;
  padding: 18px 24px;
  transform: translateX(-50%);
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  background: #0a0d0b;
  box-shadow: 0 18px 38px rgba(8, 11, 9, 0.18);
}

.home-v2 .hero-contact-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: #0a0d0b;
  background: var(--authority-orange);
}

.home-v2 .hero-contact-icon svg {
  width: 24px;
  height: 24px;
}

.home-v2 .hero-contact-person,
.home-v2 .hero-direct-contact > a {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.home-v2 .hero-contact-person {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.home-v2 .hero-contact-person small {
  color: var(--authority-orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-v2 .hero-contact-person strong,
.home-v2 .hero-direct-contact > a strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.home-v2 .hero-direct-contact > a strong {
  color: var(--authority-orange);
}

.home-v2 .hero-direct-contact > a span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.35;
}

/* Homepage service story */
.home-v2 .home-chooser {
  width: 100%;
  margin: 0;
  padding: 126px 0 48px;
  background: #fbf8f2;
}

.home-v2 .home-chooser-inner {
  display: grid;
  width: min(calc(100% - 40px), var(--authority-max));
  margin: 0 auto;
  padding: 0;
  grid-template-columns: 0.72fr 2fr;
  gap: 34px 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2 .home-chooser-intro {
  align-content: start;
  padding-top: 12px;
}

.home-v2 .home-chooser h2 {
  max-width: 320px;
  margin: 0;
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  line-height: 0.98;
}

.home-v2 .home-chooser-lead {
  max-width: 320px;
  margin: 20px 0 0;
  color: var(--authority-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.home-v2 .home-service-feature {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: center;
}

.home-v2 .home-service-feature > img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border-radius: 9px;
  object-fit: cover;
  object-position: center;
}

.home-v2 .home-service-feature h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.75rem);
  line-height: 1.02;
}

.home-v2 .home-service-feature p:not(.eyebrow) {
  margin: 18px 0 10px;
  color: var(--authority-muted);
  line-height: 1.65;
}

.home-v2 .task-list {
  grid-column: 1 / -1;
  display: grid;
  margin-top: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--authority-line);
  border-bottom: 1px solid var(--authority-line);
}

.home-v2 .task-list a,
.home-v2 .task-list a:nth-child(odd),
.home-v2 .task-list a:nth-last-child(-n + 2),
  .home-v2 .task-list a:last-child {
  min-height: 90px;
  padding: 20px 22px;
  border: 0 !important;
  border-right: 1px solid var(--authority-line) !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2 .task-list a:last-child {
  border-right: 0 !important;
}

.home-v2 .task-list a:hover,
.home-v2 .task-list a:focus-visible {
  background: #f2ece2;
  transform: none;
}

.home-v2 .task-list .task-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 0;
  border-radius: 0;
  color: var(--authority-orange);
  background: transparent;
}

.home-v2 .task-list strong {
  font-size: 0.95rem;
  line-height: 1.22;
}

.home-v2 .task-list small {
  margin-top: 4px;
  color: #6a706c;
  font-size: 0.76rem;
  line-height: 1.4;
}

.home-v2 .task-list > a > svg {
  width: 18px;
  height: 18px;
}

/* Homepage supporting sections */
.home-v2 .home-process {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 58px max(24px, calc((100vw - var(--authority-max)) / 2));
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.8fr);
  gap: 48px;
  align-items: start;
  color: #fff;
  background: #080b09;
}

.home-v2 .home-process .section-head {
  max-width: 360px;
  margin: 0;
}

.home-v2 .home-process .section-head h2 {
  color: #fff;
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  line-height: 0.98;
}

.home-v2 .home-process .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 0;
}

.home-v2 .home-process .steps article,
.home-v2 .home-process .steps article:last-child {
  position: relative;
  min-height: 184px;
  padding: 6px 44px 6px 24px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2 .home-process .steps article + article {
  padding-left: 28px;
}

.home-v2 .home-process .steps article:last-child {
  border-right: 0;
}

.home-v2 .home-process .steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--authority-orange);
  background: transparent;
  box-shadow: none;
  font-size: 0.82rem;
}

.home-v2 .home-process .steps h3 {
  margin-top: 16px;
  color: #fff;
  font-size: 1.25rem;
}

.home-v2 .home-process .steps p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.home-v2 .home-process .steps article > svg,
.home-v2 .home-process .steps article > i {
  top: 30px;
  right: 26px;
  color: var(--authority-orange);
}

.home-v2 .section.proof-strip {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 max(24px, calc((100vw - var(--authority-max)) / 2)) 66px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  color: #fff;
  background: #080b09;
}

.home-v2 .proof-strip article,
.home-v2 .proof-strip article:first-child,
.home-v2 .proof-strip article:last-child {
  min-height: 134px;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.home-v2 .proof-strip article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.home-v2 .proof-strip article::before {
  display: none;
}

.home-v2 .proof-strip svg {
  color: var(--authority-orange);
}

.home-v2 .proof-strip strong {
  color: #fff;
  font-size: 0.9rem;
}

.home-v2 .proof-strip span,
.home-v2 .proof-strip a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
}

.home-v2 .services,
.home-v2 .pricing-preview,
.home-v2 .areas,
.home-v2 .faq {
  width: min(calc(100% - 40px), var(--authority-max));
  padding-top: 92px;
  padding-bottom: 92px;
}

.home-v2 .section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.home-v2 .section-head h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  line-height: 0.98;
}

.home-v2 .section-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--authority-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.home-v2 .service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.home-v2 .service-card,
.home-v2 .service-card.has-photo {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2 .service-card.has-photo img {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  border-radius: 7px;
  object-fit: cover;
}

.home-v2 .service-card .service-card-body {
  padding: 18px 4px 6px;
}

.home-v2 .service-card h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.home-v2 .service-card p {
  color: var(--authority-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.home-v2 .pricing-preview {
  border-top: 1px solid var(--authority-line);
  background: transparent;
}

.home-v2 .pricing-preview .price-fast-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--authority-line);
}

.home-v2 .price-fast-row {
  display: grid;
  min-height: 0;
  padding: 24px 0;
  grid-template-columns: 0.7fr 1.5fr auto;
  gap: 28px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--authority-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2 .price-fast-row strong {
  font-size: 1.05rem;
}

.home-v2 .price-fast-row span {
  color: var(--authority-muted);
  font-size: 0.9rem;
}

.home-v2 .price-fast-row .price-fast-action {
  padding: 8px 10px;
  border-radius: 6px;
  color: #9a3d00;
  background: #ffe6d3;
  font-size: 0.76rem;
  font-weight: 850;
}

.home-v2 .areas {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--authority-max)) / 2));
  padding-left: max(24px, calc((100vw - var(--authority-max)) / 2));
  color: #fff;
  background: #0a0d0b;
}

.home-v2 .areas .section-head h2,
.home-v2 .areas .section-head p:not(.eyebrow) {
  color: #fff;
}

.home-v2 .areas .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.home-v2 .area-layout {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-v2 .area-panel,
.home-v2 .area-primary {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v2 .area-panel {
  padding: 40px 44px 40px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.home-v2 .area-groups {
  padding: 40px 0 40px 44px;
}

.home-v2 .area-tags li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.home-v2 .area-pills a {
  border-radius: 6px;
}

.home-v2 .area-service-shortcuts {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-v2 .area-service-shortcuts h3 {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.home-v2 .area-service-shortcuts .link-cloud {
  margin-top: 16px;
}

.home-v2 .area-service-shortcuts .link-cloud a {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

@media (hover: hover) {
  .home-v2 .area-service-shortcuts .link-cloud a:hover,
  .home-v2 .area-service-shortcuts .link-cloud a:focus-visible {
    border-color: rgba(255, 106, 0, 0.7);
    background: rgba(255, 106, 0, 0.12);
  }
}

.home-v2 .contact-section-premium {
  width: min(calc(100% - 40px), var(--authority-max));
  margin-top: 96px;
  margin-bottom: 96px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #0a0d0b;
  box-shadow: none;
}

.home-v2 .contact-section-premium .contact-content {
  gap: 0;
  padding: 0;
}

.home-v2 .contact-section-premium .contact-copy {
  padding: clamp(34px, 5vw, 70px);
}

.home-v2 .contact-section-premium .contact-copy h2 {
  color: #fff;
  font-size: clamp(2.2rem, 3.6vw, 3.7rem);
  line-height: 1;
}

.home-v2 .contact-section-premium .contact-copy p,
.home-v2 .contact-section-premium .contact-checklist {
  color: rgba(255, 255, 255, 0.7);
}

.home-v2 .contact-section-premium .inquiry-form {
  margin: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 0;
  border-radius: 9px;
  background: #fffdfa;
  box-shadow: none;
}

.home-v2 .faq {
  border-top: 1px solid var(--authority-line);
}

.home-v2 .faq-list details {
  border: 0;
  border-bottom: 1px solid var(--authority-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Subpages share one editorial conversion system */
.site-v3 .page-main {
  padding-top: 70px;
}

.site-v3 .subpage-hero {
  display: grid;
  width: min(100%, 1440px);
  max-width: none;
  min-height: 470px;
  margin: 0 auto;
  padding: 70px max(40px, calc((100vw - 1240px) / 2)) 76px;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  grid-template-rows: auto auto auto 1fr;
  column-gap: clamp(40px, 6vw, 90px);
  align-content: center;
  color: var(--authority-ink);
  background: #fbf8f2;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-v3 .subpage-hero::before {
  display: none;
}

.site-v3 .subpage-hero::after {
  content: "";
  position: relative;
  inset: auto;
  display: block;
  min-height: 330px;
  grid-column: 2;
  grid-row: 1 / 5;
  border-radius: 8px;
  background-image: url("assets/hero-real-desktop.webp");
  background-position: center;
  background-size: cover;
  opacity: 1;
  transform: none;
}

.site-v3 .subpage-hero > * {
  position: relative;
  z-index: 1;
  max-width: 650px;
  grid-column: 1;
}

.site-v3 .subpage-hero .eyebrow {
  color: var(--authority-orange);
  text-shadow: none;
}

.site-v3 .subpage-hero h1 {
  margin: 0;
  color: var(--authority-ink);
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.94;
  text-shadow: none;
}

.site-v3 .subpage-hero p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--authority-muted);
  font-size: 1rem;
  line-height: 1.65;
  text-shadow: none;
}

.site-v3 .subpage-hero .hero-actions {
  margin-top: 28px;
}

.site-v3 .subpage-trustbar {
  display: grid;
  width: min(calc(100% - 40px), var(--authority-max));
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--authority-ink);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-v3 .subpage-trustbar > div {
  min-height: 122px;
  padding: 28px 30px;
  border: 0;
  border-right: 1px solid var(--authority-line);
  border-bottom: 1px solid var(--authority-line);
  background: transparent;
}

.site-v3 .subpage-trustbar > div:first-child {
  border-left: 1px solid var(--authority-line);
}

.site-v3 .subpage-trustbar svg {
  color: var(--authority-orange);
}

.site-v3 .subpage-trustbar strong {
  color: var(--authority-ink);
  font-size: 0.9rem;
}

.site-v3 .subpage-trustbar span {
  color: var(--authority-muted);
  font-size: 0.8rem;
}

.site-v3 .section,
.site-v3 .contact-section {
  width: min(calc(100% - 40px), var(--authority-max));
}

.site-v3 .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.site-v3 .section + .section {
  border-top: 1px solid rgba(216, 208, 194, 0.68);
}

.site-v3 .section h2,
.site-v3 .contact-section h2 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.02;
}

.site-v3 .section h3 {
  line-height: 1.15;
}

.site-v3 .visual-proof,
.site-v3 .trust-proof-panel,
.site-v3 .service-detail,
.site-v3 .service-note,
.site-v3 .seo-panel,
.site-v3 .mobile-action-box,
.site-v3 .price-note {
  border-radius: 0;
  box-shadow: none;
}

.site-v3 .visual-proof {
  overflow: hidden;
  border: 0;
  background: #0a0d0b;
}

.site-v3 .visual-proof-copy {
  padding: clamp(28px, 4vw, 54px);
}

.site-v3 .visual-proof-card,
.site-v3 .visual-proof-card.image-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-v3 .detail-grid article,
.site-v3 .content-blocks article,
.site-v3 .scenario-list article,
.site-v3 .info-grid article,
.site-v3 .price-grid article,
.site-v3 .location-sections article {
  border: 0;
  border-top: 1px solid var(--authority-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-v3 .service-note,
.site-v3 .seo-panel,
.site-v3 .mobile-action-box,
.site-v3 .price-note {
  border: 1px solid var(--authority-line);
  background: #fbf8f2;
}

.site-v3 .geo-summary {
  border-color: rgba(255, 106, 0, 0.28);
  border-left-color: var(--safety);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 32px),
    radial-gradient(circle at 92% 12%, rgba(255, 106, 0, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--steel), var(--carbon));
}

.site-v3 .geo-summary h2,
.site-v3 .geo-summary p,
.site-v3 .geo-summary li {
  color: var(--white);
}

.site-v3 .geo-summary p,
.site-v3 .geo-summary li {
  opacity: 0.92;
}

.site-v3 .geo-summary .check-list i {
  color: var(--safety);
}

.site-v3 .trust-proof-panel {
  border: 0;
  color: #fff;
  background: #0a0d0b;
}

.site-v3 .trust-proof-panel h2 {
  color: #fff;
}

.site-v3 .trust-proof-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.site-v3 .trust-proof-facts article {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
}

.site-v3 .faq-list details {
  border: 0;
  border-bottom: 1px solid var(--authority-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-v3 .cta-band {
  width: min(calc(100% - 40px), var(--authority-max));
  margin-top: 34px;
  padding: 34px 40px;
  border-radius: 8px;
  color: #fff;
  background: #0a0d0b;
}

.site-v3 .mini-inquiry,
.site-v3 .contact-section:not(.contact-section-premium) {
  border-radius: 10px;
  background: #fbf8f2;
  box-shadow: none;
}

.site-v3 .inquiry-form,
.site-v3 .mini-inquiry-form {
  border-radius: 8px;
  box-shadow: none;
}

.site-v3 .inquiry-form input,
.site-v3 .inquiry-form select,
.site-v3 .inquiry-form textarea,
.site-v3 .mini-inquiry input,
.site-v3 .mini-inquiry select,
.site-v3 .mini-inquiry textarea {
  border-radius: 6px;
  background: #fff;
}

.site-v3 .site-footer {
  display: grid;
  width: 100%;
  max-width: none;
  margin-top: 80px;
  padding: 58px max(24px, calc((100vw - var(--authority-max)) / 2));
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
  color: #fff;
  background: #080b09;
  border: 0;
}

.site-v3 .site-footer p,
.site-v3 .site-footer a,
.site-v3 .site-footer button {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.site-v3 .site-footer > div:last-child {
  display: grid;
  justify-items: start;
  gap: 4px;
}

@media (max-width: 1180px) {
  .site-v3 .site-nav {
    top: 76px;
    left: 12px;
    right: 12px;
    justify-content: flex-start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #0a0d0b;
  }

  .site-v3 .site-nav a,
  .site-v3 .site-nav a:nth-child(n + 7) {
    display: flex;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 6px;
  }

  .site-v3 .site-nav a:hover,
  .site-v3 .site-nav a:focus-visible,
  .site-v3 .site-nav a[aria-current="page"] {
    background: rgba(255, 101, 0, 0.14);
  }

  .home-v2 .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }
}

@media (max-width: 900px) {
  .home-v2 .home-authority-hero .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  }

  .home-v2 .home-authority-hero .hero-copy {
    padding-right: 34px;
    padding-left: 34px;
  }

  .home-v2 .home-authority-hero h1 {
    font-size: clamp(3.2rem, 7vw, 4.7rem);
  }

  .home-v2 .home-chooser-inner {
    grid-template-columns: 1fr;
  }

  .home-v2 .home-chooser-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 18px 40px;
  }

  .home-v2 .home-chooser-intro .eyebrow,
  .home-v2 .home-chooser-intro h2 {
    grid-column: 1;
  }

  .home-v2 .home-chooser-lead {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .home-v2 .task-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v2 .task-list a:nth-child(2) {
    border-right: 0 !important;
  }

  .home-v2 .task-list a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--authority-line) !important;
  }

  .home-v2 .home-process .steps,
  .home-v2 .section.proof-strip {
    grid-template-columns: 1fr;
  }

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

  .home-v2 .home-process .steps article,
  .home-v2 .home-process .steps article:last-child,
  .home-v2 .home-process .steps article + article {
    min-height: 0;
    padding: 24px 54px 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-v2 .home-process .steps article:last-child {
    border-bottom: 0;
  }

  .home-v2 .proof-strip article,
  .home-v2 .proof-strip article:first-child,
  .home-v2 .proof-strip article:last-child {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .home-v2 .proof-strip article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-v3 .subpage-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 76px;
  }

  body.site-v3 {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-v3 .site-header {
    min-height: 66px;
    padding: 9px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .site-v3 .brand {
    min-width: 0;
    gap: 9px;
  }

  .site-v3 .brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-v3 .brand strong {
    font-size: clamp(0.87rem, 4.2vw, 1rem);
    white-space: nowrap;
  }

  .site-v3 .brand small,
  .site-v3 .language-switcher,
  .site-v3 .header-quote {
    display: none;
  }

  .site-v3 .header-actions {
    gap: 7px;
  }

  .site-v3 .header-call {
    display: inline-flex;
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    color: #0a0d0b;
    background: var(--authority-orange);
    font-size: 0;
  }

  .site-v3 .header-call svg {
    width: 22px;
    height: 22px;
  }

  .site-v3 .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 9px;
  }

  .site-v3 .site-nav {
    top: 72px;
    max-height: calc(100dvh - 84px);
  }

  .home-v2 .home-authority-hero {
    padding-top: 66px;
  }

  .home-v2 .home-authority-hero .hero-shell {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-v2 .home-authority-hero .hero-copy {
    min-height: 0;
    padding: 38px 20px 30px;
  }

  .home-v2 .home-authority-hero .eyebrow {
    display: block;
    margin-bottom: 13px;
    font-size: 0.66rem;
  }

  .home-v2 .home-authority-hero h1 {
    max-width: 350px;
    font-size: clamp(2.7rem, 12.6vw, 3.35rem);
    line-height: 0.94;
  }

  .home-v2 .home-authority-hero .hero-lead {
    max-width: 350px;
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .home-v2 .home-authority-hero .hero-actions {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .home-v2 .home-authority-hero .hero-actions .btn {
    width: 100%;
    min-height: 54px;
    border-radius: 8px;
  }

  .home-v2 .home-authority-hero .hero-call {
    border: 0;
    border-top: 1px solid var(--authority-line);
    border-bottom: 1px solid var(--authority-line);
    color: var(--authority-ink);
    background: transparent;
  }

  .home-v2 .home-authority-hero .hero-trust-list {
    display: none;
  }

  .home-v2 .hero-visual {
    min-height: 0;
    height: 292px;
  }

  .home-v2 .hero-visual img {
    object-position: center 55%;
  }

  .home-v2 .hero-direct-contact {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 40px);
    min-height: 0;
    margin: -42px auto 0;
    padding: 16px;
    transform: none;
    grid-template-columns: 48px minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 12px;
    border-radius: 9px;
  }

  .home-v2 .hero-contact-icon {
    width: 48px;
    height: 48px;
  }

  .home-v2 .hero-contact-person {
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .home-v2 .hero-contact-person strong,
  .home-v2 .hero-direct-contact > a strong {
    font-size: 1.08rem;
  }

  .home-v2 .hero-direct-contact > a {
    grid-column: auto;
    padding: 0;
    border-top: 0;
  }

  .home-v2 .home-chooser {
    padding: 30px 0 52px;
  }

  .home-v2 .home-chooser-inner {
    display: grid;
    width: calc(100% - 40px);
    gap: 24px;
  }

  .home-v2 .home-chooser-intro {
    display: block;
    padding: 0;
  }

  .home-v2 .home-chooser-intro h2,
  .home-v2 .home-chooser-lead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .home-v2 .home-chooser h2 {
    max-width: 340px;
    font-size: 2.5rem;
    line-height: 0.98;
  }

  .home-v2 .home-chooser-lead {
    max-width: 350px;
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .home-v2 .home-service-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-v2 .home-service-feature > img {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }

  .home-v2 .home-service-feature h3 {
    font-size: 2rem;
  }

  .home-v2 .home-service-feature p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .home-v2 .task-list {
    grid-template-columns: 1fr;
    margin-top: 2px;
  }

  .home-v2 .task-list a,
  .home-v2 .task-list a:nth-child(odd),
  .home-v2 .task-list a:nth-last-child(-n + 2),
  .home-v2 .task-list a:last-child,
  .home-v2 .task-list a:nth-child(-n + 2) {
    min-height: 62px;
    padding: 11px 2px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--authority-line) !important;
  }

  .home-v2 .task-list a:last-child {
    border-bottom: 0 !important;
  }

  .home-v2 .task-list .task-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .home-v2 .task-list small {
    display: none;
  }

  .home-v2 .home-process {
    padding: 38px 20px 24px;
    gap: 12px;
  }

  .home-v2 .home-process .section-head h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .home-v2 .home-process .steps article,
  .home-v2 .home-process .steps article:last-child,
  .home-v2 .home-process .steps article + article {
    display: grid;
    min-height: 0;
    padding: 18px 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .home-v2 .home-process .steps span {
    grid-row: 1;
    width: 42px;
    height: 42px;
  }

  .home-v2 .home-process .steps h3 {
    margin: 0;
  }

  .home-v2 .home-process .steps p {
    margin-top: 3px;
  }

  .home-v2 .section.proof-strip {
    padding: 0 20px 48px;
  }

  .home-v2 .proof-strip article,
  .home-v2 .proof-strip article:first-child,
  .home-v2 .proof-strip article:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    background: transparent;
  }

  .home-v2 .services,
  .home-v2 .pricing-preview,
  .home-v2 .faq {
    width: calc(100% - 40px);
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .home-v2 .section-head {
    margin-bottom: 30px;
  }

  .home-v2 .section-head h2 {
    font-size: 2.55rem;
  }

  .home-v2 .section-head p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .home-v2 .service-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-v2 .service-card.has-photo img {
    aspect-ratio: 16 / 9;
  }

  .home-v2 .price-fast-row {
    padding: 20px 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-v2 .price-fast-row .price-fast-action {
    width: fit-content;
  }

  .home-v2 .areas {
    padding: 64px 20px;
  }

  .home-v2 .area-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-v2 .area-panel {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .home-v2 .area-groups {
    padding: 28px 0 0;
  }

  .home-v2 .area-tags {
    grid-template-columns: 1fr 1fr;
  }

  .home-v2 .contact-section-premium {
    width: calc(100% - 24px);
    margin-top: 64px;
    margin-bottom: 64px;
    border-radius: 9px;
  }

  .home-v2 .contact-section-premium .contact-media {
    display: block;
    min-height: 240px;
  }

  .home-v2 .contact-section-premium .contact-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .home-v2 .contact-section-premium .contact-copy {
    padding: 28px 20px;
  }

  .home-v2 .contact-section-premium .contact-copy h2 {
    font-size: 2.35rem;
  }

  .home-v2 .contact-section-premium .inquiry-form {
    margin: 0 8px 8px;
    padding: 20px 12px;
  }

  .site-v3 .page-main {
    padding-top: 66px;
  }

  .site-v3 .subpage-hero {
    display: grid;
    width: 100%;
    min-height: 0;
    padding: 38px 20px 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 0;
  }

  .site-v3 .subpage-hero > * {
    max-width: 100%;
    grid-column: 1;
  }

  .site-v3 .subpage-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    line-height: 0.95;
  }

  .site-v3 .subpage-hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .site-v3 .subpage-hero .hero-actions {
    display: grid;
    margin: 22px 0 28px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-v3 .subpage-hero::after {
    min-height: 260px;
    margin-right: -20px;
    margin-left: -20px;
    grid-column: 1;
    grid-row: 5;
    border-radius: 0;
    background-position: center;
  }

  .site-v3 .subpage-trustbar {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .site-v3 .subpage-trustbar > div,
  .site-v3 .subpage-trustbar > div:first-child {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--authority-line);
    border-left: 0;
  }

  .site-v3 .section,
  .site-v3 .contact-section {
    width: calc(100% - 40px);
  }

  .site-v3 .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .site-v3 .section h2,
  .site-v3 .contact-section h2 {
    font-size: 2.35rem;
  }

  .site-v3 .detail-grid,
  .site-v3 .content-blocks,
  .site-v3 .scenario-list,
  .site-v3 .info-grid,
  .site-v3 .price-grid {
    grid-template-columns: 1fr;
  }

  .site-v3 .detail-grid article,
  .site-v3 .content-blocks article,
  .site-v3 .scenario-list article,
  .site-v3 .info-grid article,
  .site-v3 .price-grid article,
  .site-v3 .location-sections article {
    padding: 20px 0;
  }

  .site-v3 .trust-proof-panel,
  .site-v3 .service-note,
  .site-v3 .seo-panel,
  .site-v3 .mobile-action-box,
  .site-v3 .price-note {
    width: calc(100% - 24px);
    padding: 26px 20px;
  }

  .site-v3 .visual-proof {
    width: 100%;
  }

  .site-v3 .cta-band {
    width: calc(100% - 24px);
    padding: 24px 20px;
  }

  .site-v3 .site-footer {
    margin-top: 56px;
    padding: 42px 20px calc(110px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-v3 .mobile-cta,
  .home-v2 .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    min-height: 58px;
    padding: 5px;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(8, 11, 9, 0.96);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  }

  .site-v3 .mobile-cta a,
  .home-v2 .mobile-cta a {
    min-height: 48px;
    border-radius: 7px;
    font-size: 0.88rem;
  }
}

@media (max-width: 390px) {
  .site-v3 .brand strong {
    font-size: 0.86rem;
  }

  .home-v2 .home-authority-hero h1,
  .site-v3 .subpage-hero h1 {
    font-size: 2.72rem;
  }

  .home-v2 .hero-direct-contact {
    width: calc(100% - 24px);
  }

  .home-v2 .home-chooser-inner,
  .home-v2 .services,
  .home-v2 .pricing-preview,
  .home-v2 .faq,
  .site-v3 .section,
  .site-v3 .contact-section,
  .site-v3 .subpage-trustbar {
    width: calc(100% - 32px);
  }
}

/* Final cascade guard for homepage sections that also carry the generic .section class. */
.home-v2.site-v3 .home-process {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 58px max(24px, calc((100vw - var(--authority-max)) / 2));
  border-radius: 0;
  color: #fff;
  background: #080b09;
}

.home-v2.site-v3 .services,
.home-v2.site-v3 .pricing-preview,
.home-v2.site-v3 .faq {
  width: min(calc(100% - 40px), var(--authority-max));
  padding-top: 92px;
  padding-bottom: 92px;
}

.home-v2.site-v3 .areas {
  width: 100%;
  max-width: none;
  padding: 92px max(24px, calc((100vw - var(--authority-max)) / 2));
}

@media (max-width: 780px) {
  .home-v2.site-v3 .home-process {
    padding: 38px 20px 24px;
  }

  .home-v2.site-v3 .home-process .section-head .eyebrow {
    display: block;
    margin-bottom: 2px;
  }

  .home-v2.site-v3 .services,
  .home-v2.site-v3 .pricing-preview,
  .home-v2.site-v3 .faq {
    width: calc(100% - 40px);
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .home-v2.site-v3 .areas {
    padding: 64px 20px;
  }
}

/* Subpage cascade fixes: keep real imagery and readable proof cards over legacy rules. */
body.site-v3 .page-main .subpage-hero::after {
  background: url("assets/realizace-kontejner-rodinny-dum-04.webp") center / cover no-repeat;
  filter: none;
}

body.site-v3 .page-main .trust-proof-panel {
  padding-top: 36px;
  padding-bottom: 36px;
  color: var(--authority-ink);
  background: #fbf8f2;
}

body.site-v3 .page-main .trust-proof-panel > div:first-child,
body.site-v3 .page-main .trust-proof-facts {
  border-color: var(--authority-line);
  color: var(--authority-ink);
  background: #fffdfa;
  box-shadow: none;
}

body.site-v3 .page-main .trust-proof-panel h2,
body.site-v3 .page-main .trust-proof-facts strong {
  color: var(--authority-ink);
}

body.site-v3 .page-main .trust-proof-panel p:not(.eyebrow) {
  color: var(--authority-muted);
}

body.site-v3 .page-main .trust-proof-facts article {
  border-color: var(--authority-line);
}

@media (max-width: 780px) {
  body.site-v3 .page-main .trust-proof-panel {
    width: calc(100% - 24px);
    padding: 24px 0;
  }
}

/* Homepage v4 — task-first conversion flow, desktop + mobile */
.home-v2.site-v3 .home-authority-hero .hero-trust-list {
  display: none;
}

.home-v2.site-v3 .home-authority-hero {
  overflow: visible;
}

.home-v2.site-v3 .home-trust-strip {
  display: grid;
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--authority-max));
  margin: 84px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-top: 1px solid var(--authority-line);
  border-bottom: 1px solid var(--authority-line);
  color: var(--authority-ink);
  background: #fffdfa;
}

.home-v2.site-v3 .home-trust-strip > div {
  display: grid;
  min-height: 96px;
  padding: 22px 28px;
  align-content: center;
  gap: 5px;
}

.home-v2.site-v3 .home-trust-strip > div + div {
  border-left: 1px solid var(--authority-line);
}

.home-v2.site-v3 .home-trust-strip strong {
  font-size: 1rem;
  line-height: 1.2;
}

.home-v2.site-v3 .home-trust-strip span {
  color: var(--authority-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-v2.site-v3 .home-chooser {
  padding: 84px 0 72px;
}

.home-v2.site-v3 .home-chooser-inner {
  grid-template-columns: 1fr;
  gap: 34px;
}

.home-v2.site-v3 .home-chooser-intro {
  display: grid;
  padding: 0;
  grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1.18fr);
  gap: 12px 72px;
  align-items: end;
}

.home-v2.site-v3 .home-chooser-intro .eyebrow {
  grid-column: 1 / -1;
}

.home-v2.site-v3 .home-chooser h2 {
  max-width: 470px;
  font-size: clamp(2.45rem, 4vw, 4rem);
}

.home-v2.site-v3 .home-chooser-lead {
  max-width: 580px;
  margin: 0;
  font-size: 1rem;
}

.home-v2.site-v3 .home-task-selector {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-v2.site-v3 .home-task-card {
  display: grid;
  min-width: 0;
  min-height: 166px;
  padding: 20px;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  grid-template-rows: auto 1fr;
  gap: 16px 12px;
  align-items: start;
  border: 1px solid var(--authority-line);
  border-radius: 9px;
  color: var(--authority-ink);
  background: #fffdfa;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.home-v2.site-v3 .home-task-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 101, 0, 0.48);
  box-shadow: 0 12px 28px rgba(24, 31, 27, 0.08);
}

.home-v2.site-v3 .home-task-card:focus-visible {
  outline: 3px solid rgba(17, 103, 216, 0.48);
  outline-offset: 3px;
}

.home-v2.site-v3 .home-task-card.is-selected {
  border-color: var(--authority-orange);
  background: #fff1e7;
  box-shadow: inset 0 0 0 1px var(--authority-orange);
}

.home-v2.site-v3 .home-task-card .task-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: var(--authority-ink);
  background: #eee8dc;
}

.home-v2.site-v3 .home-task-card.is-selected .task-icon {
  background: var(--authority-orange);
}

.home-v2.site-v3 .home-task-card .task-icon svg {
  width: 21px;
  height: 21px;
}

.home-v2.site-v3 .home-task-card > span:nth-child(2) {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  align-self: end;
}

.home-v2.site-v3 .home-task-card strong {
  font-size: 0.98rem;
  line-height: 1.22;
}

.home-v2.site-v3 .home-task-card small {
  color: var(--authority-muted);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.42;
}

.home-v2.site-v3 .home-task-card > svg {
  width: 18px;
  height: 18px;
  justify-self: end;
  transition: transform 160ms ease;
}

.home-v2.site-v3 .home-task-card:hover > svg,
.home-v2.site-v3 .home-task-card.is-selected > svg {
  transform: translateX(3px);
}

.home-v2.site-v3 .home-chooser-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-v2.site-v3 .home-chooser-actions p {
  display: flex;
  max-width: 620px;
  margin: 0;
  gap: 10px;
  align-items: flex-start;
  color: var(--authority-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.home-v2.site-v3 .home-chooser-actions p svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--authority-orange);
}

.home-v2.site-v3 .home-chooser-actions .btn {
  min-width: 230px;
}

.home-v2.site-v3 .home-proof-story {
  display: grid;
  width: min(calc(100% - 40px), var(--authority-max));
  margin: 24px auto 96px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--authority-line);
  border-radius: 10px;
  background: #fffdfa;
}

.home-v2.site-v3 .home-proof-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.home-v2.site-v3 .home-proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-v2.site-v3 .home-proof-visual > span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 13px;
  border-radius: 6px;
  color: #fff;
  background: rgba(8, 11, 9, 0.9);
  font-size: 0.74rem;
  font-weight: 850;
}

.home-v2.site-v3 .home-proof-copy {
  display: flex;
  padding: clamp(34px, 5vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.home-v2.site-v3 .home-proof-copy h2 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(2.35rem, 3.6vw, 3.65rem);
  line-height: 0.98;
}

.home-v2.site-v3 .home-proof-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--authority-muted);
  line-height: 1.65;
}

.home-v2.site-v3 .home-proof-metrics {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--authority-line);
  border-radius: 7px;
}

.home-v2.site-v3 .home-proof-metrics > div {
  display: grid;
  min-height: 88px;
  padding: 16px 10px;
  place-content: center;
  gap: 4px;
  text-align: center;
}

.home-v2.site-v3 .home-proof-metrics > div + div {
  border-left: 1px solid var(--authority-line);
}

.home-v2.site-v3 .home-proof-metrics strong {
  font-size: 1.08rem;
}

.home-v2.site-v3 .home-proof-metrics span {
  color: var(--authority-muted);
  font-size: 0.7rem;
}

.home-v2.site-v3 .home-owner-line {
  display: flex;
  margin-top: 24px;
  padding-top: 22px;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--authority-line);
}

.home-v2.site-v3 .home-owner-line > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 7px;
  color: var(--authority-ink);
  background: var(--authority-orange);
}

.home-v2.site-v3 .home-owner-line > div {
  display: grid;
  gap: 3px;
}

.home-v2.site-v3 .home-owner-line small {
  color: var(--authority-muted);
  font-size: 0.75rem;
}

.home-v2.site-v3 .home-process .section-head h2 {
  max-width: 420px;
}

.home-v2.site-v3 .home-process .steps article,
.home-v2.site-v3 .home-process .steps article:last-child {
  display: grid;
  padding: 10px 28px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-content: center;
}

.home-v2.site-v3 .home-process .steps article:first-child {
  padding-left: 0;
}

.home-v2.site-v3 .home-process .process-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--authority-orange);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
}

.home-v2.site-v3 .home-process .steps h3 {
  margin-bottom: 7px;
}

.home-v2.site-v3 .home-process .steps p {
  max-width: 220px;
}

.home-v2.site-v3 .inquiry-form .form-intro strong {
  font-size: 1.25rem;
  line-height: 1.15;
}

.home-v2.site-v3 .inquiry-form .form-progress {
  display: grid;
  margin: 4px 0 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.home-v2.site-v3 .inquiry-form .form-progress span {
  display: grid;
  position: relative;
  min-height: 44px;
  padding-top: 8px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: #777d78;
  font-size: 0.76rem;
}

.home-v2.site-v3 .inquiry-form .form-progress span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--authority-line);
}

.home-v2.site-v3 .inquiry-form .form-progress span.is-active {
  color: var(--authority-ink);
}

.home-v2.site-v3 .inquiry-form .form-progress span.is-active::before {
  background: var(--authority-orange);
}

.home-v2.site-v3 .inquiry-form .form-progress i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #eee8dc;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.home-v2.site-v3 .inquiry-form .form-progress span.is-active i {
  color: #0a0d0b;
  background: var(--authority-orange);
}

.home-v2.site-v3 .inquiry-form .form-step legend {
  margin-bottom: 6px;
  font-size: 1rem;
}

.home-v2.site-v3 .inquiry-form .form-step legend:focus {
  outline: none;
}

.home-v2.site-v3 .inquiry-form .form-step {
  scroll-margin-top: 92px;
}

.home-v2.site-v3 .inquiry-form .form-actions {
  grid-template-columns: minmax(120px, 0.72fr) minmax(0, 1.28fr);
}

.home-v2.site-v3 .inquiry-form [data-next] {
  grid-column: 1 / -1;
}

.home-v2.site-v3 .inquiry-form .form-photo-note {
  margin: -3px 2px 2px;
  line-height: 1.45;
}

.home-v2.site-v3 .inquiry-form textarea {
  min-height: 96px;
}

@media (max-width: 1080px) {
  .home-v2.site-v3 .home-task-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-v2.site-v3 .home-proof-story {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  }
}

@media (max-width: 780px) {
  .home-v2.site-v3 .mobile-cta {
    display: grid;
  }

  .home-v2.site-v3 .hero-direct-contact {
    padding: 12px;
    grid-template-columns: 44px minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 10px;
  }

  .home-v2.site-v3 .hero-contact-icon {
    width: 44px;
    height: 44px;
  }

  .home-v2.site-v3 .hero-contact-person {
    padding-right: 10px;
  }

  .home-v2.site-v3 .hero-contact-person small {
    font-size: 0.61rem;
  }

  .home-v2.site-v3 .hero-contact-person strong,
  .home-v2.site-v3 .hero-direct-contact > a strong {
    font-size: 0.98rem;
  }

  .home-v2.site-v3 .hero-direct-contact > a span {
    font-size: 0.68rem;
    line-height: 1.32;
  }

  .home-v2.site-v3 .home-trust-strip {
    width: 100%;
    margin-top: 18px;
  }

  .home-v2.site-v3 .home-trust-strip > div {
    min-height: 82px;
    padding: 16px 8px;
    text-align: center;
  }

  .home-v2.site-v3 .home-trust-strip strong {
    font-size: 0.84rem;
  }

  .home-v2.site-v3 .home-trust-strip span {
    font-size: 0.64rem;
    line-height: 1.35;
  }

  .home-v2.site-v3 .home-chooser {
    padding: 48px 0 54px;
  }

  .home-v2.site-v3 .home-chooser-inner {
    gap: 26px;
  }

  .home-v2.site-v3 .home-chooser-intro {
    display: block;
  }

  .home-v2.site-v3 .home-chooser-intro h2,
  .home-v2.site-v3 .home-chooser-lead {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .home-v2.site-v3 .home-chooser h2 {
    font-size: 2.35rem;
  }

  .home-v2.site-v3 .home-chooser-lead {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .home-v2.site-v3 .home-task-selector {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .home-v2.site-v3 .home-task-card {
    min-height: 78px;
    padding: 12px 13px;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    grid-template-rows: 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 9px;
  }

  .home-v2.site-v3 .home-task-card .task-icon {
    width: 44px;
    height: 44px;
  }

  .home-v2.site-v3 .home-task-card > span:nth-child(2) {
    display: grid;
    grid-column: auto;
    align-self: center;
  }

  .home-v2.site-v3 .home-task-card strong {
    font-size: 0.9rem;
  }

  .home-v2.site-v3 .home-task-card small {
    font-size: 0.7rem;
  }

  .home-v2.site-v3 .home-chooser-actions {
    display: grid;
    gap: 18px;
  }

  .home-v2.site-v3 .home-chooser-actions p {
    font-size: 0.76rem;
  }

  .home-v2.site-v3 .home-chooser-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .home-v2.site-v3 .home-proof-story {
    width: calc(100% - 24px);
    margin: 8px auto 64px;
    grid-template-columns: 1fr;
    border-radius: 9px;
  }

  .home-v2.site-v3 .home-proof-visual {
    min-height: 250px;
  }

  .home-v2.site-v3 .home-proof-visual > span {
    left: 14px;
    bottom: 14px;
  }

  .home-v2.site-v3 .home-proof-copy {
    padding: 28px 20px;
  }

  .home-v2.site-v3 .home-proof-copy h2 {
    font-size: 2.3rem;
  }

  .home-v2.site-v3 .home-proof-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .home-v2.site-v3 .home-proof-metrics {
    margin-top: 22px;
  }

  .home-v2.site-v3 .home-proof-metrics > div {
    min-height: 78px;
    padding: 12px 6px;
  }

  .home-v2.site-v3 .home-proof-metrics strong {
    font-size: 0.96rem;
  }

  .home-v2.site-v3 .home-proof-metrics span {
    font-size: 0.62rem;
  }

  .home-v2.site-v3 .home-process {
    gap: 20px;
  }

  .home-v2.site-v3 .home-process .section-head h2 {
    position: static;
    width: auto;
    height: auto;
    max-width: 330px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-size: 2.25rem;
    line-height: 1;
  }

  .home-v2.site-v3 .home-process .steps article,
  .home-v2.site-v3 .home-process .steps article:first-child,
  .home-v2.site-v3 .home-process .steps article:last-child,
  .home-v2.site-v3 .home-process .steps article + article {
    min-height: 0;
    padding: 18px 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
  }

  .home-v2.site-v3 .home-process .process-number {
    width: 42px;
    height: 42px;
  }

  .home-v2.site-v3 .home-process .steps p {
    max-width: 290px;
  }

  .home-v2.site-v3 .contact-section-premium .inquiry-form {
    padding: 22px 16px;
  }

  .home-v2.site-v3 .inquiry-form .form-intro strong {
    font-size: 1.15rem;
  }

  .home-v2.site-v3 .inquiry-form .form-actions {
    grid-template-columns: minmax(94px, 0.7fr) minmax(0, 1.3fr);
    gap: 8px;
  }

  .home-v2.site-v3 .inquiry-form .form-actions .btn {
    min-height: 50px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.88rem;
  }

  .home-v2.site-v3 .inquiry-form .form-optional summary {
    padding: 15px 14px;
    font-size: 0.86rem;
  }

  .home-v2.site-v3 .inquiry-form .form-optional-body {
    padding: 0 14px 14px;
  }
}

@media (max-width: 390px) {
  .home-v2.site-v3 .home-chooser-inner {
    width: calc(100% - 32px);
  }

  .home-v2.site-v3 .home-trust-strip strong {
    font-size: 0.79rem;
  }

  .home-v2.site-v3 .home-task-card {
    padding-right: 11px;
    padding-left: 11px;
  }
}

/* Homepage v4.1 — final responsive, contrast and rhythm polish */
.home-v2.site-v3 .home-authority-hero .eyebrow,
.home-v2.site-v3 .home-chooser .eyebrow,
.home-v2.site-v3 .home-proof-copy .eyebrow,
.home-v2.site-v3 .services .eyebrow,
.home-v2.site-v3 .pricing-preview .eyebrow,
.home-v2.site-v3 .faq .eyebrow {
  color: #9a3d00;
}

.home-v2.site-v3 .contact-section-premium .contact-checklist li {
  color: rgba(255, 255, 255, 0.78);
}

.home-v2.site-v3 .contact-section-premium .contact-cards strong {
  color: #5c2300;
}

.home-v2.site-v3 .services,
.home-v2.site-v3 .pricing-preview,
.home-v2.site-v3 .faq {
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-v2.site-v3 .service-card.has-photo .service-card-body {
  display: flex;
  min-height: 184px;
  flex-direction: column;
}

.home-v2.site-v3 .service-card.has-photo .service-card-body .text-link {
  margin-top: auto;
  padding-top: 16px;
}

.home-v2.site-v3 .site-footer {
  margin-top: 0;
}

@media (min-width: 781px) and (max-width: 1180px) {
  .site-v3 .header-call {
    width: 46px;
    min-width: 46px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    font-size: 0;
    white-space: nowrap;
  }

  .site-v3 .header-call svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 641px) and (max-width: 780px) {
  .home-v2.site-v3 .home-authority-hero .hero-copy {
    padding: 44px clamp(34px, 7vw, 56px) 38px;
  }

  .home-v2.site-v3 .home-authority-hero h1 {
    max-width: 640px;
    font-size: clamp(3.45rem, 8vw, 4.1rem);
  }

  .home-v2.site-v3 .home-authority-hero .hero-lead {
    max-width: 580px;
  }

  .home-v2.site-v3 .home-authority-hero .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v2.site-v3 .hero-visual {
    height: 320px;
  }
}

@media (max-width: 780px) {
  .home-v2.site-v3 .services,
  .home-v2.site-v3 .pricing-preview,
  .home-v2.site-v3 .faq {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-v2.site-v3 .service-card.has-photo .service-card-body {
    min-height: 0;
  }
}

/* Homepage v5.0 — premium mobile-first redesign on 2026-08-13 */
.home-v2.site-v3 .home-trust-strip > div i {
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-bottom: 12px;
  color: var(--authority-orange);
}

.home-v2.site-v3 .home-proof-contact {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.home-v2.site-v3 .home-proof-contact > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #0b0d0e;
  background: linear-gradient(180deg, #ff9d3d, #ff7c10);
}

.home-v2.site-v3 .home-proof-contact > a {
  display: grid;
  gap: 4px;
  color: var(--white);
  text-decoration: none;
}

.home-v2.site-v3 .home-proof-contact strong {
  color: var(--authority-orange);
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.home-v2.site-v3 .home-proof-contact small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 780px) {
  .home-v2.site-v3 {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 136, 29, 0.12), transparent 28rem),
      linear-gradient(180deg, #07090a 0%, #090b0d 23%, #0d1012 46%, #f2ede6 46%, #f7f3ec 100%);
  }

  .home-v2.site-v3 .site-header {
    background: rgba(7, 9, 10, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }

  .home-v2.site-v3 .brand strong {
    color: var(--white);
    font-size: 1.02rem;
  }

  .home-v2.site-v3 .brand small {
    display: none;
  }

  .home-v2.site-v3 .language-switcher {
    display: none;
  }

  .home-v2.site-v3 .header-quote {
    display: none;
  }

  .home-v2.site-v3 .header-call,
  .home-v2.site-v3 .nav-toggle {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .home-v2.site-v3 .header-call {
    color: var(--authority-orange);
  }

  .home-v2.site-v3 .nav-toggle {
    color: var(--white);
  }

  .home-v2.site-v3 .site-nav {
    border-color: rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(18, 22, 24, 0.98), rgba(8, 11, 12, 0.98)),
      rgba(8, 11, 12, 0.98);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.4);
  }

  .home-v2.site-v3 .site-nav a {
    color: rgba(255, 255, 255, 0.92);
  }

  .home-v2.site-v3 .home-authority-hero {
    position: relative;
    padding-bottom: 0;
    background: transparent;
    overflow: hidden;
  }

  .home-v2.site-v3 .home-authority-hero .hero-inner {
    width: 100%;
    padding: 0;
  }

  .home-v2.site-v3 .home-authority-hero .hero-shell {
    display: block;
    position: relative;
    min-height: 856px;
  }

  .home-v2.site-v3 .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 856px;
    border-radius: 0;
    overflow: hidden;
  }

  .home-v2.site-v3 .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.58) 0%, rgba(5, 6, 8, 0.24) 24%, rgba(5, 6, 8, 0.48) 56%, rgba(5, 6, 8, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.78) 0%, rgba(5, 6, 8, 0.68) 34%, rgba(5, 6, 8, 0.18) 78%);
  }

  .home-v2.site-v3 .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    filter: saturate(0.84) contrast(1.06) brightness(0.78);
  }

  .home-v2.site-v3 .hero-copy {
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 118px 24px 0;
  }

  .home-v2.site-v3 .home-authority-hero .eyebrow {
    color: var(--authority-orange);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .home-v2.site-v3 .home-authority-hero h1 {
    max-width: 320px;
    margin-top: 18px;
    color: var(--white);
    font-size: clamp(3.15rem, 13vw, 4.5rem);
    line-height: 0.92;
    letter-spacing: -0.065em;
  }

  .home-v2.site-v3 .home-authority-hero .hero-lead {
    max-width: 292px;
    margin-top: 22px;
    padding-left: 0;
    border-left: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.03rem;
    line-height: 1.55;
  }

  .home-v2.site-v3 .home-authority-hero .hero-actions {
    max-width: 346px;
    gap: 12px;
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .home-v2.site-v3 .home-authority-hero .hero-actions .btn {
    min-height: 58px;
    padding-right: 18px;
    padding-left: 18px;
    justify-content: center;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 900;
  }

  .home-v2.site-v3 .home-authority-hero .btn-primary {
    color: #120a03;
    background: linear-gradient(180deg, #ff9d3d, #ff7c10);
    box-shadow: 0 22px 34px rgba(255, 124, 16, 0.22);
  }

  .home-v2.site-v3 .home-authority-hero .hero-call {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(8, 11, 12, 0.52);
    backdrop-filter: blur(14px);
  }

  .home-v2.site-v3 .home-authority-hero .hero-trust-list {
    display: none;
  }

  .home-v2.site-v3 .hero-direct-contact {
    position: relative;
    z-index: 2;
    width: calc(100% - 48px);
    margin: 18px 24px 0;
    padding: 16px 18px;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-areas:
      "icon person"
      "icon link";
    gap: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(7, 9, 10, 0.62);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.24);
  }

  .home-v2.site-v3 .hero-contact-icon {
    grid-area: icon;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #0b0d0e;
    background: linear-gradient(180deg, #ff9d3d, #ff7c10);
  }

  .home-v2.site-v3 .hero-contact-person {
    grid-area: person;
    padding-right: 0;
  }

  .home-v2.site-v3 .hero-contact-person small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .home-v2.site-v3 .hero-contact-person strong {
    color: var(--white);
    font-size: 1rem;
  }

  .home-v2.site-v3 .hero-direct-contact > a {
    grid-area: link;
    gap: 5px;
  }

  .home-v2.site-v3 .hero-direct-contact > a strong {
    color: var(--authority-orange);
    font-size: 1.05rem;
  }

  .home-v2.site-v3 .hero-direct-contact > a span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .home-v2.site-v3 .home-trust-strip {
    width: calc(100% - 48px);
    margin: 22px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(9, 12, 13, 0.9);
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
  }

  .home-v2.site-v3 .home-trust-strip > div {
    min-height: 0;
    padding: 18px 18px 17px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 0 12px;
    text-align: left;
  }

  .home-v2.site-v3 .home-trust-strip > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-v2.site-v3 .home-trust-strip > div i {
    grid-row: span 2;
    margin: 2px 0 0;
  }

  .home-v2.site-v3 .home-trust-strip strong {
    color: var(--white);
    font-size: 0.92rem;
  }

  .home-v2.site-v3 .home-trust-strip span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .home-v2.site-v3 .home-chooser {
    padding: 42px 0 48px;
    background: transparent;
  }

  .home-v2.site-v3 .home-chooser-inner {
    width: calc(100% - 24px);
    gap: 20px;
  }

  .home-v2.site-v3 .home-chooser-intro h2 {
    color: var(--white);
    font-size: 2.1rem;
    line-height: 1.02;
  }

  .home-v2.site-v3 .home-chooser-lead {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
  }

  .home-v2.site-v3 .home-task-selector {
    gap: 12px;
  }

  .home-v2.site-v3 .home-task-card {
    isolation: isolate;
    min-height: 188px;
    padding: 18px;
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    grid-template-rows: auto 1fr;
    gap: 12px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: #121416;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  }

  .home-v2.site-v3 .home-task-card::before,
  .home-v2.site-v3 .home-task-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
  }

  .home-v2.site-v3 .home-task-card::before {
    z-index: -2;
    background-position: center;
    background-size: cover;
    filter: saturate(0.82) contrast(1.04) brightness(0.7);
  }

  .home-v2.site-v3 .home-task-card:nth-child(1)::before {
    background-image: url("assets/hero-real-desktop.webp");
  }

  .home-v2.site-v3 .home-task-card:nth-child(2)::before {
    background-image: url("assets/jcb-minibagr-8026.webp");
  }

  .home-v2.site-v3 .home-task-card:nth-child(3)::before {
    background-image: url("assets/hero-truck-profile-portrait-900.webp");
    background-position: 56% center;
  }

  .home-v2.site-v3 .home-task-card::after {
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(8, 11, 12, 0.16) 0%, rgba(8, 11, 12, 0.28) 26%, rgba(8, 11, 12, 0.94) 100%);
  }

  .home-v2.site-v3 .home-task-card.is-selected {
    border-color: rgba(255, 136, 29, 0.72);
    background: #161313;
    box-shadow: inset 0 0 0 1px rgba(255, 136, 29, 0.5), 0 22px 36px rgba(0, 0, 0, 0.28);
  }

  .home-v2.site-v3 .home-task-card .task-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--authority-orange);
    background: rgba(7, 9, 10, 0.78);
    backdrop-filter: blur(10px);
  }

  .home-v2.site-v3 .home-task-card.is-selected .task-icon {
    color: #090b0d;
    background: linear-gradient(180deg, #ff9d3d, #ff7c10);
  }

  .home-v2.site-v3 .home-task-card > span:nth-child(2) {
    position: relative;
    z-index: 1;
    align-self: end;
    gap: 7px;
  }

  .home-v2.site-v3 .home-task-card strong {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.1;
  }

  .home-v2.site-v3 .home-task-card small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .home-v2.site-v3 .home-task-card > svg {
    position: relative;
    z-index: 1;
    align-self: end;
    color: rgba(255, 255, 255, 0.72);
  }

  .home-v2.site-v3 .home-chooser-actions {
    display: grid;
    gap: 14px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  }

  .home-v2.site-v3 .home-chooser-actions p {
    max-width: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
  }

  .home-v2.site-v3 .home-chooser-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    border-radius: 18px;
  }

  .home-v2.site-v3 .home-proof-story {
    width: calc(100% - 24px);
    margin: 0 auto 44px;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #101214, #090b0d);
    box-shadow: 0 28px 44px rgba(0, 0, 0, 0.24);
  }

  .home-v2.site-v3 .home-proof-copy {
    padding: 26px 18px 20px;
  }

  .home-v2.site-v3 .home-proof-copy .eyebrow,
  .home-v2.site-v3 .home-proof-copy h2,
  .home-v2.site-v3 .home-proof-copy > p:not(.eyebrow) {
    color: var(--white);
  }

  .home-v2.site-v3 .home-proof-copy h2 {
    font-size: 2.65rem;
    line-height: 0.94;
    letter-spacing: -0.05em;
  }

  .home-v2.site-v3 .home-proof-copy > p:not(.eyebrow) {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .home-v2.site-v3 .home-proof-metrics {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    border-radius: 0;
  }

  .home-v2.site-v3 .home-proof-metrics > div {
    min-height: 0;
    padding: 14px 16px;
    place-content: start;
    gap: 4px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .home-v2.site-v3 .home-proof-metrics > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-v2.site-v3 .home-proof-metrics strong {
    color: var(--white);
    font-size: 0.98rem;
  }

  .home-v2.site-v3 .home-proof-metrics span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
  }

  .home-v2.site-v3 .home-proof-visual {
    min-height: 268px;
    order: -1;
  }

  .home-v2.site-v3 .home-proof-visual img {
    filter: saturate(0.8) contrast(1.06) brightness(0.72);
  }

  .home-v2.site-v3 .home-proof-visual > span {
    border-radius: 12px;
    background: rgba(8, 11, 12, 0.78);
    backdrop-filter: blur(12px);
  }

  .home-v2.site-v3 .home-process {
    width: calc(100% - 24px);
    padding: 44px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0d1012, #161a1d);
  }

  .home-v2.site-v3 .home-process .section-head {
    margin-bottom: 18px;
  }

  .home-v2.site-v3 .home-process .section-head h2 {
    max-width: 270px;
    color: var(--white);
    font-size: 2.15rem;
  }

  .home-v2.site-v3 .home-process .steps {
    gap: 0;
  }

  .home-v2.site-v3 .home-process .steps article,
  .home-v2.site-v3 .home-process .steps article:first-child,
  .home-v2.site-v3 .home-process .steps article:last-child,
  .home-v2.site-v3 .home-process .steps article + article {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-v2.site-v3 .home-process .steps article:last-child {
    border-bottom: 0;
  }

  .home-v2.site-v3 .home-process .steps h3 {
    color: var(--white);
    font-size: 1rem;
  }

  .home-v2.site-v3 .home-process .steps p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
  }

  .home-v2.site-v3 .services,
  .home-v2.site-v3 .pricing-preview,
  .home-v2.site-v3 .faq,
  .home-v2.site-v3 .areas {
    width: calc(100% - 24px);
    margin: 0 auto 16px;
    padding: 44px 18px;
    border-radius: 24px;
  }

  .home-v2.site-v3 .services,
  .home-v2.site-v3 .pricing-preview,
  .home-v2.site-v3 .faq {
    background: linear-gradient(180deg, #f3eee7, #fcfaf6);
    box-shadow: 0 18px 34px rgba(40, 31, 20, 0.06);
  }

  .home-v2.site-v3 .areas {
    color: var(--white);
    background: linear-gradient(180deg, #111416, #0b0d0e);
  }

  .home-v2.site-v3 .areas .section-head h2,
  .home-v2.site-v3 .areas .section-head p:not(.eyebrow) {
    color: var(--white);
  }

  .home-v2.site-v3 .areas .section-head p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
  }

  .home-v2.site-v3 .section-head h2 {
    font-size: 2rem;
    line-height: 1.04;
  }

  .home-v2.site-v3 .section-head p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .home-v2.site-v3 .service-grid {
    gap: 14px;
  }

  .home-v2.site-v3 .service-card,
  .home-v2.site-v3 .service-card.has-photo {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 28px rgba(32, 25, 18, 0.08);
  }

  .home-v2.site-v3 .service-card.has-photo img {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 203, 189, 0.72);
  }

  .home-v2.site-v3 .service-card .service-card-body {
    padding: 18px 16px 16px;
  }

  .home-v2.site-v3 .service-card h3 {
    font-size: 1.15rem;
  }

  .home-v2.site-v3 .service-card p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .home-v2.site-v3 .price-fast-table {
    gap: 12px;
  }

  .home-v2.site-v3 .price-fast-row {
    min-height: 0;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
  }

  .home-v2.site-v3 .area-layout {
    gap: 14px;
  }

  .home-v2.site-v3 .area-panel {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
  }

  .home-v2.site-v3 .area-groups {
    gap: 14px;
  }

  .home-v2.site-v3 .area-tags {
    gap: 10px;
  }

  .home-v2.site-v3 .contact-section-premium {
    width: calc(100% - 24px);
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #111416, #0a0c0d);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
  }

  .home-v2.site-v3 .contact-section-premium .contact-media {
    min-height: 238px;
  }

  .home-v2.site-v3 .contact-section-premium .contact-media img {
    min-height: 238px;
    object-fit: cover;
    filter: saturate(0.84) contrast(1.04) brightness(0.76);
  }

  .home-v2.site-v3 .contact-section-premium .contact-copy {
    padding-top: 8px;
  }

  .home-v2.site-v3 .contact-section-premium .contact-copy h2,
  .home-v2.site-v3 .contact-section-premium .contact-copy p,
  .home-v2.site-v3 .contact-section-premium .contact-checklist li {
    color: var(--white);
  }

  .home-v2.site-v3 .contact-section-premium .contact-copy p,
  .home-v2.site-v3 .contact-section-premium .contact-checklist li {
    color: rgba(255, 255, 255, 0.72);
  }

  .home-v2.site-v3 .contact-section-premium .inquiry-form {
    border-radius: 22px;
    background: linear-gradient(180deg, #fffdfa, #f4efe7);
    box-shadow: none;
  }

  .home-v2.site-v3 .mobile-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(9, 12, 13, 0.94);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  }

  .home-v2.site-v3 .mobile-cta a {
    min-height: 48px;
    border-radius: 13px;
    font-size: 0.88rem;
  }

  .home-v2.site-v3 .mobile-cta a:last-child {
    color: #0f0b06;
    background: linear-gradient(180deg, #ff9d3d, #ff7c10);
  }
}

@media (max-width: 390px) {
  .home-v2.site-v3 .home-authority-hero h1 {
    max-width: 284px;
    font-size: clamp(2.85rem, 13.2vw, 4rem);
  }

  .home-v2.site-v3 .home-authority-hero .hero-lead {
    max-width: 272px;
    font-size: 0.98rem;
  }

  .home-v2.site-v3 .home-proof-contact strong {
    font-size: 1.72rem;
  }
}

/* SEO performance pass — readable brand accents and stronger mobile hero contrast. */
.site-v3 .eyebrow {
  color: #913900;
}

.site-v3 .subpage-hero .eyebrow {
  color: #913900;
}

.site-v3 .visual-proof-copy .eyebrow,
.site-v3 .area-panel .eyebrow,
.site-v3 .site-footer .eyebrow {
  color: #ffad5c;
}

.home-v2.site-v3 .home-proof-contact strong {
  color: #913900;
}

body.site-v3 .page-main .subpage-hero::after {
  background-image: url("assets/subpage-hero-1000.webp");
}

.home-v2.site-v3 .home-task-card:nth-child(1)::before {
  background-image: url("assets/task-kontejner-480.webp");
}

.home-v2.site-v3 .home-task-card:nth-child(2)::before {
  background-image: url("assets/task-minibagr-480.webp");
}

.home-v2.site-v3 .home-task-card:nth-child(3)::before {
  background-image: url("assets/task-doprava-480.webp");
}

@media (max-width: 780px) {
  body.site-v3 .page-main .subpage-hero::after {
    background-image: url("assets/subpage-hero-600.webp");
  }

  .home-v2.site-v3 .hero-visual {
    background: #050608;
  }

  .home-v2.site-v3 .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.72) 0%, rgba(5, 6, 8, 0.38) 24%, rgba(5, 6, 8, 0.62) 56%, rgba(5, 6, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.9) 0%, rgba(5, 6, 8, 0.8) 42%, rgba(5, 6, 8, 0.32) 82%);
  }

  .home-v2.site-v3 .home-authority-hero .eyebrow {
    color: #ffb76f;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
  }

  .home-v2.site-v3 .home-authority-hero .hero-lead {
    color: rgba(255, 255, 255, 0.94);
  }

  .home-v2.site-v3 .home-authority-hero .hero-call {
    color: #fff;
    background: #15191a;
  }

  .home-v2.site-v3 .hero-direct-contact {
    background: #15191a;
  }

  .home-v2.site-v3 .hero-contact-person small {
    color: #f2f2f1;
  }

  .home-v2.site-v3 .hero-direct-contact > a strong {
    color: #ffb76f;
  }

  .home-v2.site-v3 .home-proof-contact strong {
    color: #ffb76f;
  }
}
