:root {
  --electric: #c8102e;
  --electric-hover: #a50c25;
  --electric-dark: #8f0a1e;
  --electric-soft: #fde8ed;
  --ink: #252525;
  --graphite: #201f1e;
  --muted: #6f6d6b;
  --line: #dbe5ef;
  --warm: #f4f8fc;
  --white: #fff;
  --green: #1f7a4f;
  --shadow: 0 24px 70px rgba(24, 44, 70, .12);
  --radius: 22px;
  --container: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.topbar {
  position: relative;
  z-index: 110;
  color: #fff;
  background: var(--electric);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.topbar span,
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar a {
  margin-left: auto;
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(228, 225, 222, .85);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(36, 33, 31, .08); }

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

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

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #4c4947;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions { display: flex; align-items: center; gap: 14px; }

.btn {
  min-height: 50px;
  padding: 0 23px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--primary {
  color: #fff;
  background: var(--electric);
  box-shadow: 0 12px 28px rgba(39, 76, 119, .22);
}
.btn--primary:hover {
  background: var(--electric-hover);
  box-shadow: 0 16px 34px rgba(39, 76, 119, .3);
}
.btn--white { color: var(--electric-dark); background: #fff; }
.btn--white:hover { color: #fff; background: var(--ink); }
.btn--small { min-height: 44px; padding-inline: 18px; }
.btn--large { min-height: 58px; padding-inline: 28px; }
.btn--wide { width: 100%; }

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: none;
  place-items: center;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.menu-backdrop {
  position: fixed;
  z-index: 140;
  inset: 0;
  background: rgba(31, 29, 28, .55);
  backdrop-filter: blur(3px);
}

.mobile-menu {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(90vw, 390px);
  padding: 24px;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .18);
  transform: translateX(105%);
  transition: transform .28s ease;
  overflow-y: auto;
}

.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__head img { width: 185px; height: auto; }
.mobile-menu__head button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--warm);
  font-size: 28px;
  line-height: 1;
}
.mobile-menu nav { padding: 24px 0; }
.mobile-menu nav a {
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
}
.mobile-menu nav span { color: var(--electric-dark); }
.mobile-menu__foot {
  padding: 23px;
  border-radius: 14px;
  background: var(--warm);
}
.mobile-menu__foot p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.mobile-menu__mail {
  margin-top: 17px;
  display: block;
  color: var(--electric-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--electric-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 26px;
  height: 2px;
  background: var(--electric);
}
.eyebrow--light { color: var(--electric-soft); }
.eyebrow--light > span { background: var(--electric-soft); }

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -.055em;
}
h1 em, h2 em {
  color: var(--electric);
  text-shadow: 0 8px 26px rgba(51, 51, 51, .2);
  font-style: normal;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.045em;
}
h3 { letter-spacing: -.02em; }

.hero {
  position: relative;
  padding: 74px 0 70px;
  background:
    linear-gradient(90deg, rgba(244, 248, 252, .96) 0%, rgba(244, 248, 252, .96) 48%, rgba(244, 248, 252, .42) 48%, rgba(244, 248, 252, .42) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 95px, rgba(39, 76, 119, .035) 96px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 110px solid rgba(39, 76, 119, .045);
  border-radius: 50%;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.hero__lead {
  max-width: 600px;
  margin: 0 0 30px;
  color: #5e5b58;
  font-size: 18px;
  line-height: 1.75;
}
.hero__lead strong { color: var(--ink); }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #98938f;
  color: #4c4947;
  font-size: 14px;
  font-weight: 800;
}
.text-link span { color: var(--electric-dark); }
.text-link--electric { color: var(--electric-dark); border-color: #b7d8f4; }

.hero__proof {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid #d7e3ef;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hero__proof div { min-width: 0; }
.hero__proof strong {
  display: block;
  color: var(--electric-dark);
  font-size: 17px;
  font-weight: 800;
}
.hero__proof span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__visual { position: relative; }
.hero__image-wrap {
  position: relative;
  border: 10px solid #fff;
  border-radius: 6px 42px 6px 6px;
  box-shadow: var(--shadow);
}
.hero__image-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -28px;
  bottom: -28px;
  width: 54%;
  height: 45%;
  background: var(--electric);
}
.hero__image-wrap img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: 2px 32px 2px 2px;
  object-fit: cover;
  object-position: 54% center;
}

.hero__image-badge {
  position: absolute;
  bottom: 22px;
  left: -34px;
  min-width: 270px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(44, 41, 38, .18);
  backdrop-filter: blur(12px);
}
.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--green);
}
.badge-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}
.hero__image-badge strong { display: block; font-size: 13px; }
.hero__image-badge small { display: block; color: var(--muted); font-size: 11px; }

.measure-lines {
  position: absolute;
  top: -16px;
  right: -20px;
  width: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  opacity: .55;
}
.measure-lines span {
  width: 1px;
  background: var(--electric);
}
.measure-lines span:nth-child(1) { height: 42px; }
.measure-lines span:nth-child(2) { height: 26px; }
.measure-lines span:nth-child(3) { height: 54px; }

.trust-strip {
  color: #fff;
  background: var(--graphite);
}
.trust-strip__grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-strip__grid > div {
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-strip__grid > div:last-child { border-right: 1px solid rgba(255, 255, 255, .1); }
.trust-strip svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--electric);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-strip strong { display: block; font-size: 13px; }
.trust-strip small { display: block; color: #aaa6a3; font-size: 11px; }

.section { padding: 110px 0; }
.section--light { background: var(--warm); }
.section--graphite {
  position: relative;
  color: #fff;
  background: var(--graphite);
  overflow: hidden;
}
.section--graphite::after {
  content: "";
  position: absolute;
  top: 0;
  right: -110px;
  width: 460px;
  height: 100%;
  border-left: 130px solid rgba(39, 76, 119, .08);
  transform: skewX(-14deg);
}
.section--electric-soft { background: var(--electric-soft); }

.section-head { margin-bottom: 54px; }
.section-head h2 { margin-bottom: 0; }
.section-head--split {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 90px;
}
.section-head--split > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
}
.section-head--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center > p:last-child {
  margin: 0 auto;
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  position: relative;
  padding: 32px 27px 28px;
  border: 1px solid #dbe5ef;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(57, 52, 49, .035);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  border-color: #b7d8f4;
  box-shadow: 0 18px 45px rgba(57, 52, 49, .1);
  transform: translateY(-6px);
}
.product-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.product-card:hover::after { transform: scaleX(1); }
.product-card__number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: #d9d5d2;
  font-size: 12px;
  font-weight: 800;
}
.product-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--electric-dark);
  background: var(--electric-soft);
}
.product-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-card h3 { margin-bottom: 12px; font-size: 21px; }
.product-card > p {
  min-height: 75px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}
.product-card ul {
  min-height: 126px;
  margin: 0 0 24px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.product-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 17px;
  color: #53504e;
  font-size: 12px;
  font-weight: 600;
}
.product-card li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
}
.product-card > a {
  display: flex;
  justify-content: space-between;
  color: var(--electric-dark);
  font-size: 13px;
  font-weight: 800;
}
.product-card > a span { transition: transform .2s ease; }
.product-card > a:hover span { transform: translateX(4px); }

.more-products {
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px dashed #cbdbea;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, .55);
}
.more-products strong { font-size: 15px; }
.more-products span { color: var(--muted); font-size: 13px; }
.more-products a {
  margin-left: auto;
  color: var(--electric-dark);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 10%;
  left: 10%;
  height: 1px;
  border-top: 1px dashed #cbdbea;
}
.process-step { position: relative; padding: 0 13px; }
.process-step__top {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.process-step__top > span {
  width: 76px;
  height: 76px;
  border: 8px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  box-shadow: 0 8px 22px rgba(39, 76, 119, .19);
  font-size: 20px;
  font-weight: 800;
}
.process-step__top svg {
  width: 33px;
  height: 33px;
  margin-right: 6px;
  fill: none;
  stroke: #bdb7b3;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-step h3 { margin-bottom: 11px; font-size: 19px; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; }

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}
.why-copy h2 { color: #fff; }
.why-copy > p:not(.eyebrow) {
  margin: 0 0 30px;
  color: #c3bfbc;
  font-size: 16px;
}
.why-list article {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
}
.why-list article:last-child { border-bottom: 1px solid rgba(255, 255, 255, .14); }
.why-list article > span { color: var(--electric); font-size: 13px; font-weight: 800; }
.why-list h3 { margin-bottom: 9px; color: #fff; font-size: 20px; }
.why-list p { margin: 0; color: #aaa6a3; font-size: 14px; }

.solution-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 74px;
}
.solution-row + .solution-row { margin-top: 100px; }
.solution-row--reverse .solution-row__image { order: 2; }
.solution-row__image { position: relative; }
.solution-row__image::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 24px;
  left: -24px;
  width: 45%;
  height: 82%;
  background: var(--electric-soft);
}
.solution-row--reverse .solution-row__image::before { right: -24px; left: auto; }
.solution-row__image img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  box-shadow: 0 20px 55px rgba(47, 43, 40, .14);
}
.image-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 13px;
  color: #fff;
  background: var(--electric);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.solution-row__copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}
.tag-list {
  margin: 25px 0 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-list span {
  padding: 7px 11px;
  border: 1px solid #d8e3ee;
  border-radius: 20px;
  color: #5a5653;
  background: #f8fbfe;
  font-size: 11px;
  font-weight: 700;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--electric-dark);
  font-size: 14px;
  font-weight: 800;
}
.arrow-link span { font-size: 20px; transition: transform .2s ease; }
.arrow-link:hover span { transform: translateX(5px); }

.calc-promise {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}
.calc-promise__mark {
  width: 125px;
  height: 125px;
  border: 10px solid #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: #fff;
  background: var(--electric);
  box-shadow: 0 15px 40px rgba(39, 76, 119, .22);
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}
.calc-promise__mark span { font-size: 20px; }
.calc-promise h2 { margin-bottom: 11px; font-size: clamp(32px, 4vw, 48px); }
.calc-promise > div:nth-child(2) > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 95px;
}
.faq-intro {
  position: sticky;
  top: 135px;
}
.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  padding: 25px 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}
.faq-item i {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--electric-soft);
}
.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: var(--electric);
}
.faq-item i::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}
.faq-item.is-open i::after { transform: rotate(0); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-answer > p {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-answer > p { padding: 0 50px 25px 0; }

.quote-section {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(52, 51, 50, .98), rgba(35, 34, 33, .98)),
    repeating-linear-gradient(90deg, transparent, transparent 70px, rgba(255, 255, 255, .04) 71px);
}
.quote-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: 82px;
}
.quote-copy {
  position: sticky;
  top: 130px;
}
.quote-copy h2 { color: #fff; }
.quote-copy > p:not(.eyebrow):not(.quote-contact) { color: #bdb9b6; }
.quote-benefits {
  margin: 35px 0;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.quote-benefits > div {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.quote-benefits > div > span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 12px;
  font-weight: 800;
}
.quote-benefits p { margin: 0; }
.quote-benefits strong { display: block; font-size: 13px; }
.quote-benefits small { display: block; color: #9f9b98; font-size: 11px; }
.quote-contact { color: #aaa6a3; font-size: 13px; }
.quote-contact a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.quote-form-wrap {
  border-top: 6px solid var(--electric);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}
.quote-form__head {
  padding: 34px 38px 24px;
  border-bottom: 1px solid var(--line);
}
.form-chip {
  margin-bottom: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-flex;
  color: var(--electric-dark);
  background: var(--electric-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.quote-form__head h3 { margin-bottom: 8px; font-size: 26px; }
.quote-form__head p { margin: 0; color: var(--muted); font-size: 13px; }
.quote-form { padding: 30px 38px 38px; }

.service-choice {
  margin: 0 0 25px;
  padding: 0;
  border: 0;
}
.service-choice.has-error .service-choice__grid {
  border-radius: 8px;
  outline: 3px solid rgba(39, 76, 119, .18);
  animation: form-shake .28s ease-in-out 2;
}
@keyframes form-shake {
  0%, 100% { transform: translateX(0); }
  40% { transform: translateX(-4px); }
  70% { transform: translateX(4px); }
}
.service-choice legend,
.field > label {
  margin-bottom: 8px;
  display: block;
  color: #484542;
  font-size: 12px;
  font-weight: 800;
}
.field > label small { color: #96918e; font-weight: 500; }
.service-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.service-choice label { cursor: pointer; }
.service-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.service-choice label > span {
  min-height: 55px;
  padding: 10px 12px;
  border: 1px solid #dcd8d5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5e5a57;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.service-choice i {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.5px solid #a9a4a0;
  border-radius: 50%;
  flex: 0 0 auto;
}
.service-choice input:checked + span {
  border-color: var(--electric);
  color: var(--electric-dark);
  background: var(--electric-soft);
}
.service-choice input:checked + span i {
  border-color: var(--electric);
}
.service-choice input:checked + span i::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--electric);
}
.service-choice input:focus-visible + span { outline: 3px solid rgba(39, 76, 119, .2); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field--full { grid-column: 1 / -1; }
.field input:not([type="checkbox"]),
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d9d5d2;
  border-radius: 6px;
  color: var(--ink);
  background: #fcfbfa;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:not([type="checkbox"]),
.field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 100px; padding: 13px 14px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--electric);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(39, 76, 119, .1);
}
.field input::placeholder,
.field textarea::placeholder { color: #aaa5a1; }
.field-error,
.errorlist {
  margin: 5px 0 0;
  padding: 0;
  display: block;
  color: var(--electric-dark);
  font-size: 11px;
  list-style: none;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted) !important;
  cursor: pointer;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.55;
}
.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--electric);
  flex: 0 0 auto;
}
.privacy-check a { color: var(--electric-dark); text-decoration: underline; }
.quote-form > .btn { margin-top: 23px; }
.form-note {
  margin: 13px 0 0;
  color: #8f8a86;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.footer-cta {
  color: #fff;
  background: var(--electric);
}
.footer-cta__inner {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
}
.footer-cta .eyebrow--light { color: #fff; }
.footer-cta .eyebrow--light > span { background: #fff; }

.site-footer {
  padding: 75px 0 28px;
  color: #c0bcba;
  background: #201f1e;
}
.footer-grid {
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
}
.footer-about img {
  width: 210px;
  margin-bottom: 25px;
  padding: 11px 13px;
  border-radius: 4px;
  background: #fff;
}
.footer-about p {
  max-width: 350px;
  margin: 0;
  color: #9e9a97;
  font-size: 13px;
}
.footer-grid h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-grid > div:not(.footer-about) a,
.footer-grid > div:not(.footer-about) span {
  margin: 10px 0;
  display: block;
  color: #9e9a97;
  font-size: 12px;
}
.footer-grid a:hover { color: #fff !important; }
.footer-grid .footer-mail { color: #fff !important; font-weight: 800; }
.footer-grid .footer-link { color: var(--electric) !important; font-weight: 800; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #777370;
  font-size: 11px;
}
.footer-bottom p { margin: 0; }

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 1060px;
  margin: auto;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(32, 30, 29, .24);
}
.cookie-banner__main {
  display: flex;
  align-items: center;
  gap: 25px;
}
.cookie-banner__main > div:first-child { flex: 1; }
.cookie-banner strong { font-size: 14px; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.cookie-banner a { color: var(--electric-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}
.cookie-btn--accept { border-color: var(--electric); color: #fff; background: var(--electric); }
.cookie-settings {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.cookie-settings h2 { font-size: 18px; }
.cookie-settings label {
  margin: 10px 0;
  display: flex;
  gap: 10px;
}
.cookie-settings input { accent-color: var(--electric); }
.cookie-settings label strong,
.cookie-settings label small { display: block; }
.cookie-settings label small { color: var(--muted); font-size: 10px; }

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}
.mobile-cta a {
  min-height: 52px;
  display: grid;
  flex: 1;
  place-items: center;
  color: #fff;
  background: var(--graphite);
  font-size: 12px;
  font-weight: 800;
}
.mobile-cta a:last-child { color: #fff; background: var(--electric); }

.notifications {
  position: fixed;
  z-index: 400;
  top: 105px;
  right: 20px;
}
.notification {
  padding: 15px 18px;
  border-left: 4px solid var(--electric);
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--shadow);
}
.notification strong,
.notification span { display: block; }
.notification span { color: var(--muted); font-size: 12px; }

.legal-hero {
  padding: 75px 0 55px;
  background: var(--warm);
}
.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
}
.legal-content { padding: 75px 0 110px; }
.legal-content__inner { max-width: 860px; }
.legal-content h2 { margin-top: 48px; font-size: 26px; }
.legal-content h3 { margin-top: 30px; font-size: 18px; }
.legal-content p,
.legal-content li { color: #5d5956; }
.legal-content a { color: var(--electric-dark); text-decoration: underline; }
.legal-content .info-box {
  margin: 25px 0;
  padding: 22px;
  border-left: 4px solid var(--electric);
  background: var(--electric-soft);
}

.thank-you {
  min-height: 72vh;
  padding: 100px 0;
  display: grid;
  place-items: center;
  background: var(--warm);
}
.thank-you__card {
  max-width: 760px;
  padding: 60px;
  border-top: 6px solid var(--electric);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-you__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 33px;
}
.thank-you h1 { font-size: clamp(36px, 5vw, 58px); }
.thank-you p { color: var(--muted); }
.thank-you__steps {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}
.thank-you__steps div { padding: 15px; background: var(--warm); }
.thank-you__steps strong { display: block; font-size: 12px; }
.thank-you__steps span { color: var(--muted); font-size: 10px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
  .brand img { width: 257px; }
  .hero__grid { gap: 38px; }
  .hero__image-badge { left: -20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card > p,
  .product-card ul { min-height: 0; }
  .quote-grid { gap: 45px; }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav__actions > .btn { display: none; }
  .nav { min-height: 70px; }
  .menu-toggle { margin-left: auto; display: block; }
  .hero { padding: 55px 0 70px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero__content { max-width: 700px; }
  .hero__image-wrap { max-width: 760px; margin-left: auto; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 85px 0; }
  .section-head--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .process::before { display: none; }
  .why-grid,
  .faq-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .why-copy { max-width: 700px; }
  .solution-row,
  .solution-row--reverse {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .solution-row--reverse .solution-row__image { order: 0; }
  .solution-row__copy { max-width: 700px; }
  .calc-promise { grid-template-columns: auto 1fr; }
  .calc-promise > .btn { grid-column: 2; justify-self: start; }
  .faq-intro,
  .quote-copy { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__inner { min-height: 32px; justify-content: center; }
  .brand img { width: 230px; }
  .hero {
    padding: 40px 0 55px;
    background: var(--warm);
  }
  h1 { font-size: clamp(44px, 14vw, 64px); }
  h2 { font-size: clamp(32px, 10vw, 45px); }
  .hero__lead { font-size: 16px; }
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__proof { gap: 8px; }
  .hero__proof strong { font-size: 14px; }
  .hero__proof span { font-size: 9px; }
  .hero__image-wrap {
    border-width: 6px;
    border-radius: 4px 26px 4px 4px;
  }
  .hero__image-wrap img {
    aspect-ratio: 1 / 1;
    border-radius: 2px 20px 2px 2px;
    object-position: 58% center;
  }
  .hero__image-badge {
    right: 12px;
    bottom: -25px;
    left: 12px;
    min-width: 0;
  }
  .measure-lines { display: none; }
  .trust-strip { padding-top: 22px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid > div {
    min-height: 78px;
    padding: 14px 4px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .trust-strip__grid > div:last-child { border: 0; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { padding: 28px 24px; }
  .more-products {
    align-items: flex-start;
    flex-direction: column;
  }
  .more-products a { margin-left: 0; }
  .process { grid-template-columns: 1fr; }
  .process-step { padding: 0; }
  .process-step__top { justify-content: flex-start; gap: 25px; }
  .why-grid { gap: 45px; }
  .why-list article { grid-template-columns: 42px 1fr; }
  .solution-row + .solution-row { margin-top: 75px; }
  .solution-row__image::before { display: none; }
  .solution-row__image img { aspect-ratio: 1 / .9; }
  .calc-promise {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .calc-promise__mark {
    width: 100px;
    height: 100px;
    font-size: 38px;
  }
  .calc-promise > .btn { grid-column: auto; justify-self: stretch; }
  .faq-grid { gap: 35px; }
  .faq-item button { font-size: 14px; }
  .quote-grid { gap: 38px; }
  .quote-form__head,
  .quote-form { padding-right: 20px; padding-left: 20px; }
  .service-choice__grid { grid-template-columns: repeat(2, 1fr); }
  .service-choice label > span {
    min-height: 62px;
    padding: 9px;
    font-size: 10px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-cta__inner {
    min-height: 280px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cookie-banner {
    right: 10px;
    bottom: 70px;
    left: 10px;
    padding: 17px;
  }
  .cookie-banner__main {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-actions { display: grid; grid-template-columns: repeat(3, 1fr); }
  .cookie-btn { padding-inline: 7px; }
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 86px; }
  .thank-you__card { padding: 40px 22px; }
  .thank-you__steps { grid-template-columns: 1fr; }
}

/* Homepage v2 — structure and visual rhythm derived from the Bazenak template */
.phase-hero {
  position: relative;
  padding: 72px 0 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .97) 0 49%, rgba(244, 248, 252, .78) 49% 100%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(37, 37, 37, .035) 79px 80px);
}
.phase-hero::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -105px;
  width: 430px;
  height: 430px;
  border: 74px solid rgba(39, 76, 119, .055);
  border-radius: 32px;
  transform: rotate(18deg);
}
.phase-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
  align-items: center;
  gap: 74px;
}
.phase-hero__content { max-width: 620px; }
.phase-hero h1 {
  max-width: 690px;
  margin: 54px 0 24px;
  overflow-wrap: anywhere;
  font-size: clamp(44px, 3.8vw, 64px);
  line-height: .99;
  letter-spacing: -.055em;
}
.phase-hero h1 span,
.phase-hero h1 em {
  display: block;
}
.phase-hero h1 em {
  color: var(--electric);
  text-shadow: 0 8px 26px rgba(51, 51, 51, .2);
  font-style: normal;
}
.phase-hero__lead {
  max-width: 610px;
  margin: 0;
  color: #585451;
  font-size: 18px;
  line-height: 1.7;
}
.phase-hero__lead strong { color: var(--ink); }
.phase-hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.phase-hero__link {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.phase-hero__link:hover { color: var(--electric-dark); border-color: var(--electric); }
.phase-hero__trust {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
}
.phase-hero__trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4f4c49;
  font-size: 12px;
  font-weight: 800;
}
.phase-hero__trust svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--electric);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.phase-hero__visual {
  position: relative;
  isolation: isolate;
  padding: 0 0 38px 28px;
}
.phase-hero__photo {
  position: relative;
  z-index: 1;
  border-radius: 4px 44px 4px 4px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 30px 80px rgba(32, 30, 28, .19);
}
.phase-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(24, 22, 21, .28));
  pointer-events: none;
}
.phase-hero__photo > img,
.phase-hero__photo > svg {
  width: 100%;
  height: 100%;
  max-height: 500px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 46%;
  display: block;
}
.phase-hero__badge {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  min-height: 76px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  background: rgba(37, 37, 37, .92);
  backdrop-filter: blur(10px);
}
.phase-hero__badge > span {
  padding: 8px 10px;
  color: #fff;
  background: var(--electric);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.phase-hero__badge strong,
.phase-hero__badge small { display: block; }
.phase-hero__badge strong { font-size: 15px; }
.phase-hero__badge small { margin-top: 2px; color: #c9c5c2; font-size: 10px; }
.phase-hero__card {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 0;
  width: min(350px, 68%);
  min-height: 92px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-left: 5px solid var(--electric);
  box-shadow: 0 18px 50px rgba(36, 33, 31, .18);
}
.phase-hero__card-icon {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--electric-dark);
  background: var(--electric-soft);
}
.phase-hero__card-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.phase-hero__card strong,
.phase-hero__card small { display: block; }
.phase-hero__card strong { font-size: 13px; }
.phase-hero__card small { margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.hero-boxes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 900px;
}
.hero-boxes svg {
  position: absolute;
  display: block;
  height: auto;
  will-change: transform;
}
.hero-boxes--back { z-index: 0; }
.hero-boxes--back svg {
  fill: rgba(39, 76, 119, .32);
  filter: drop-shadow(6px 10px 18px rgba(88, 45, 25, .1));
}
.hero-boxes--back svg:nth-child(1) {
  top: -46px;
  right: 50px;
  width: 72px;
  animation: hero-box-float-a 8s ease-in-out infinite;
}
.hero-boxes--back svg:nth-child(2) {
  top: 24%;
  left: -10px;
  width: 38px;
  animation: hero-box-float-b 6.8s ease-in-out -2.2s infinite;
}
.hero-boxes--back svg:nth-child(3) {
  right: -16px;
  bottom: 34px;
  width: 50px;
  animation: hero-box-float-a 7.4s ease-in-out -3.4s infinite reverse;
}
.hero-boxes--front { z-index: 2; }
.hero-boxes--front svg {
  fill: var(--electric);
  stroke: #fff;
  stroke-width: .6;
  filter: drop-shadow(0 8px 16px rgba(39, 76, 119, .38));
}
.hero-boxes--front svg:nth-child(1) {
  top: 54px;
  right: -6px;
  width: 26px;
  animation: hero-box-float-b 5.8s ease-in-out infinite;
}
.hero-boxes--front svg:nth-child(2) {
  left: 14px;
  bottom: 88px;
  width: 18px;
  animation: hero-box-float-a 5.2s ease-in-out -1.6s infinite reverse;
}
.hero-boxes--front svg:nth-child(3) {
  right: 52px;
  bottom: -10px;
  width: 30px;
  animation: hero-box-float-b 6.4s ease-in-out -3s infinite;
}
@keyframes hero-box-float-a {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); }
  50% { transform: translate3d(7px, -12px, 28px) rotate(14deg); }
}
@keyframes hero-box-float-b {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-11deg); }
  50% { transform: translate3d(-8px, 10px, 18px) rotate(-4deg); }
}

.proof-strip {
  position: relative;
  z-index: 3;
  color: #fff;
  background: var(--graphite);
}
.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-item {
  min-height: 118px;
  padding: 24px 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-item:last-child { border-right: 0; }
.proof-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--electric-dark);
  background: rgba(255, 255, 255, .07);
}
.proof-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-item strong,
.proof-item div > span { display: block; }
.proof-item strong { font-size: 13px; line-height: 1.3; }
.proof-item div > span { margin-top: 5px; color: #aaa5a1; font-size: 9px; line-height: 1.45; }

.section-title {
  max-width: 850px;
  margin: 15px 0 18px;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-intro {
  max-width: 770px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.section--graphite .section-title,
.quote-section .section-title { color: #fff; }
.section--graphite .section-intro { color: #bdb7b3; }

.signal-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.signal-card {
  position: relative;
  min-height: 310px;
  padding: 40px 28px 34px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.signal-card:first-child { border-left: 1px solid var(--line); }
.signal-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.signal-card:hover::after { transform: scaleX(1); }
.signal-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #e8e5e2;
  font-size: 34px;
  font-weight: 900;
}
.signal-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--electric-dark);
  background: var(--electric-soft);
}
.signal-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.signal-card h3 { margin: 24px 0 12px; font-size: 18px; line-height: 1.25; }
.signal-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.services-v2__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
}
.services-v2 {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-v2 {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-v2:hover {
  z-index: 2;
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-v2--featured {
  color: #fff;
  border-color: var(--electric);
  background: var(--electric);
}
.service-v2__tag {
  position: absolute;
  top: 19px;
  right: 19px;
  padding: 6px 9px;
  color: var(--electric-dark);
  background: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-v2__icon {
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  color: var(--electric-dark);
  background: var(--electric-soft);
}
.service-v2--featured .service-v2__icon {
  color: #fff;
  background: rgba(255, 255, 255, .15);
}
.service-v2__icon svg {
  width: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-v2 h3 { margin: 25px 0 12px; font-size: 21px; }
.service-v2 p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.72; }
.service-v2--featured p { color: rgba(255, 255, 255, .82); }
.service-v2__chips { margin-top: 19px; display: flex; flex-wrap: wrap; gap: 5px; }
.service-v2__chips span {
  padding: 5px 8px;
  background: rgba(255, 255, 255, .13);
  font-size: 8px;
  font-weight: 800;
}

.visual-proof { background: #fff; }
.visual-proof__head {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr);
  align-items: end;
  gap: 70px;
}
.visual-proof__head p:last-child {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
}
.visual-proof__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.visual-proof__media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.visual-proof__media img,
.visual-proof__media svg {
  width: 100%;
  height: 100%;
  max-height: 320px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.visual-proof__media figure:first-child img { object-position: center 55%; }
.visual-proof__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 17px;
  color: #fff;
  background: rgba(36, 34, 32, .9);
}
.visual-proof__media figcaption strong,
.visual-proof__media figcaption span { display: block; }
.visual-proof__media figcaption strong { font-size: 14px; }
.visual-proof__media figcaption span { color: #c8c3bf; font-size: 9px; }
.decision-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.decision-grid article {
  min-height: 125px;
  padding: 22px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}
.decision-grid article:last-child { border-right: 0; }
.decision-grid i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}
.decision-grid strong,
.decision-grid span { display: block; }
.decision-grid strong { font-size: 13px; }
.decision-grid span { margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.55; }

.scope-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 90px;
}
.scope-copy { position: sticky; top: 145px; }
.scope-copy .btn { margin-top: 31px; }
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.scope-card {
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 13px;
  background: rgba(255, 255, 255, .035);
}
.scope-card svg {
  width: 25px;
  height: 25px;
  padding: 5px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  background: var(--electric);
}
.scope-card strong,
.scope-card span { display: block; }
.scope-card strong { color: #fff; font-size: 13px; }
.scope-card span { margin-top: 5px; color: #aaa5a1; font-size: 10px; line-height: 1.5; }

.phase-section {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}
.phase-section::after {
  content: "0";
  position: absolute;
  z-index: 0;
  top: -130px;
  right: 2vw;
  color: rgba(39, 76, 119, .04);
  font-size: 570px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.phase-section > .container { position: relative; z-index: 1; }
.phase-zero {
  margin-top: 48px;
  min-height: 225px;
  padding: 34px 38px 34px 28px;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  color: #fff;
  background: var(--graphite);
  box-shadow: 0 25px 65px rgba(37, 37, 37, .14);
}
.phase-zero__label {
  align-self: stretch;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  background: var(--electric);
}
.phase-zero__label span,
.phase-zero__label small { font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.phase-zero__label strong { margin: -3px 0 -8px; font-size: 85px; line-height: 1; }
.phase-zero__content h3 { margin: 0 0 10px; color: #fff; font-size: 26px; }
.phase-zero__content > p { margin: 0; color: #c2bcb8; font-size: 13px; line-height: 1.7; }
.phase-zero__chips {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.phase-zero__chips span {
  padding: 6px 9px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 9px;
  font-weight: 800;
}
.phase-zero__chips i { color: var(--electric-dark); font-style: normal; font-weight: 900; }
.after-phase {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.after-phase__step {
  min-height: 220px;
  padding: 30px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  background: #fff;
  border-bottom: 4px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.after-phase__step:hover { border-color: var(--electric); transform: translateY(-3px); }
.after-phase__step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.after-phase__step small {
  color: var(--electric-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.after-phase__step h3 { margin: 6px 0 10px; font-size: 17px; line-height: 1.3; }
.after-phase__step p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.quote-section__head {
  max-width: 840px;
  margin-bottom: 46px;
}
.quote-section__head .section-title { margin-bottom: 0; }
.quote-v2 {
  display: grid;
  grid-template-columns: minmax(285px, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 60px;
}
.quote-v2__aside { color: #fff; }
.quote-v2__badge {
  margin-bottom: 27px;
  padding: 22px;
  border-left: 5px solid var(--electric);
  background: rgba(255, 255, 255, .06);
}
.quote-v2__badge span { display: block; color: var(--electric-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.quote-v2__badge strong { display: block; margin-top: 4px; font-size: 20px; }
.quote-v2__points { margin: 0; padding: 0; list-style: none; }
.quote-v2__points li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d0cbc7;
  font-size: 12px;
}
.quote-v2__points li::before {
  content: "✓";
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 11px;
  font-weight: 900;
}
.quote-v2__mail {
  margin-top: 28px;
  display: inline-block;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  font-size: 12px;
  font-weight: 800;
}
.quote-v2 .quote-form-wrap { max-width: none; margin: 0; }

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(450px, 1.08fr);
  align-items: center;
  gap: 80px;
}
.city-cloud {
  margin: 28px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-cloud span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: #55514e;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
}
.city-cloud span:first-child {
  color: #fff;
  border-color: var(--electric);
  background: var(--electric);
}
.coverage-map {
  position: relative;
  min-height: 460px;
  padding: 50px 48px 35px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(52, 51, 50, .93), rgba(52, 51, 50, .93)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, .06) 18px 19px);
  box-shadow: var(--shadow);
}
.coverage-map::before {
  content: "";
  position: absolute;
  inset: 70px 40px 25px;
  border: 2px solid rgba(255, 255, 255, .08);
  border-radius: 54% 46% 62% 38% / 46% 59% 41% 54%;
  transform: rotate(-8deg);
}
.coverage-map__head { position: relative; z-index: 2; }
.coverage-map__head span { color: var(--electric-dark); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.coverage-map__head strong { display: block; margin-top: 2px; font-size: 24px; }
.map-pin {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 6px rgba(39, 76, 119, .2);
}
.map-pin::after {
  content: attr(data-city);
  position: absolute;
  top: 13px;
  left: 50%;
  padding: 2px 5px;
  color: #fff;
  background: rgba(32, 30, 29, .75);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(-50%);
}
.pin-brno { top: 46%; left: 48%; }
.pin-hodonin { top: 71%; left: 68%; }
.pin-breclav { top: 84%; left: 58%; }
.pin-znojmo { top: 69%; left: 20%; }
.pin-vyskov { top: 31%; left: 69%; }
.pin-kyjov { top: 57%; left: 77%; }

@media (max-width: 1080px) {
  .phase-hero__grid { gap: 42px; grid-template-columns: minmax(0, .95fr) minmax(410px, 1.05fr); }
  .proof-item { padding-inline: 16px; }
  .scope-layout { gap: 50px; }
  .coverage-grid { gap: 45px; grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); }
}

@media (max-width: 900px) {
  .phase-hero {
    padding: 58px 0 65px;
    background: linear-gradient(180deg, #fff 0 52%, var(--warm) 52% 100%);
  }
  .phase-hero__grid { grid-template-columns: 1fr; gap: 45px; }
  .phase-hero__content { max-width: 740px; }
  .phase-hero__visual { width: min(100%, 720px); margin-left: auto; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-card:nth-child(2) { border-right: 1px solid var(--line); }
  .signal-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-v2 { grid-template-columns: repeat(2, 1fr); }
  .visual-proof__head { grid-template-columns: 1fr; gap: 10px; }
  .scope-layout { grid-template-columns: 1fr; }
  .scope-copy { position: static; max-width: 720px; }
  .phase-zero { grid-template-columns: 120px 1fr; }
  .phase-zero > .btn { grid-column: 2; justify-self: start; }
  .after-phase { grid-template-columns: 1fr; }
  .after-phase__step { min-height: 0; }
  .quote-v2 { grid-template-columns: 1fr; gap: 40px; }
  .quote-v2__aside { display: grid; grid-template-columns: .8fr 1.2fr; gap: 25px; }
  .quote-v2__mail { align-self: start; grid-column: 1 / -1; justify-self: start; margin-top: -5px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-copy { max-width: 720px; }
}

@media (max-width: 640px) {
  .phase-hero { padding: 42px 0 48px; }
  .phase-hero h1 { margin: 40px 0 20px; font-size: clamp(42px, 13vw, 58px); }
  .phase-hero__lead { font-size: 15px; line-height: 1.65; }
  .phase-hero__actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .phase-hero__link { align-self: flex-start; }
  .phase-hero__trust { grid-template-columns: 1fr; gap: 10px; }
  .phase-hero__visual { padding: 0 0 78px; }
  .phase-hero__photo { border-radius: 3px 26px 3px 3px; }
  .phase-hero__photo > img,
  .phase-hero__photo > svg {
    max-height: 310px;
    aspect-ratio: 4 / 3;
    object-position: 56% center;
  }
  .phase-hero__badge {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 64px;
    padding: 10px;
    gap: 10px;
  }
  .phase-hero__badge strong { font-size: 12px; }
  .phase-hero__card { right: 10px; bottom: 0; width: calc(100% - 20px); }
  .hero-boxes--back svg:nth-child(1) { width: 54px; }
  .hero-boxes--back svg:nth-child(2) { left: -6px; width: 30px; }
  .hero-boxes--back svg:nth-child(3) { right: -6px; width: 36px; }
  .hero-boxes--front svg:nth-child(1) { right: -4px; width: 20px; }
  .hero-boxes--front svg:nth-child(2) { left: -3px; }
  .hero-boxes--front svg:nth-child(3) { right: 24px; width: 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item {
    min-height: 88px;
    padding: 16px 6px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .proof-item:last-child { border-bottom: 0; }
  .section-title { font-size: clamp(34px, 10vw, 46px); }
  .section-intro { font-size: 15px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-card {
    min-height: 0;
    padding: 29px 23px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .signal-card:last-child { border-bottom: 0; }
  .services-v2__head { grid-template-columns: 1fr; gap: 22px; }
  .services-v2__head .btn { justify-self: stretch; }
  .services-v2 { grid-template-columns: 1fr; }
  .service-v2 { min-height: 0; padding: 28px 24px; }
  .visual-proof__media { grid-template-columns: 1fr; }
  .visual-proof__media img,
  .visual-proof__media svg { max-height: 230px; aspect-ratio: 16 / 9; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .decision-grid article:last-child { border-bottom: 0; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: 0; }
  .phase-section::after { font-size: 350px; top: 20px; }
  .phase-zero {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .phase-zero__label { min-height: 120px; }
  .phase-zero__label strong { font-size: 64px; }
  .phase-zero > .btn { grid-column: auto; justify-self: stretch; }
  .phase-zero__chips i { display: none; }
  .phase-zero__chips span { flex: 1 1 40%; text-align: center; }
  .after-phase__step { padding: 24px 20px; }
  .quote-v2__aside { display: block; }
  .quote-v2__points { margin-bottom: 25px; }
  .quote-v2__mail { margin-top: 0; }
  .coverage-map { min-height: 370px; padding: 33px 24px; }
}

/* Homepage v3 — larger type and a softer, rounded visual language */
body { font-size: 17px; }
.topbar { font-size: 13px; }
.desktop-nav a { font-size: 15px; }
.btn {
  min-height: 54px;
  border-radius: 15px;
  font-size: 15px;
}
.btn--small { min-height: 48px; }
.btn--large { min-height: 62px; }
.menu-toggle { border-radius: 14px; }
.mobile-menu__foot { border-radius: 22px; }
.eyebrow { font-size: 13px; }

.phase-hero__lead { font-size: 19px; }
.phase-hero__link { font-size: 15px; }
.phase-hero__trust span { font-size: 14px; }
.phase-hero__photo { border-radius: 24px 52px 24px 24px; }
.phase-hero__badge {
  border-radius: 16px;
}
.phase-hero__badge > span {
  border-radius: 10px;
  font-size: 12px;
}
.phase-hero__badge strong { font-size: 17px; }
.phase-hero__badge small { font-size: 13px; }
.phase-hero__card {
  border-radius: 18px;
}
.phase-hero__card-icon { border-radius: 13px; }
.phase-hero__card strong { font-size: 15px; }
.phase-hero__card small { font-size: 13px; }

.proof-item { gap: 17px; }
.proof-icon { border-radius: 13px; }
.proof-item strong { font-size: 15px; }
.proof-item div > span { font-size: 13px; }
.section-intro { font-size: 18px; }

.signal-grid {
  gap: 16px;
  border: 0;
}
.signal-card,
.signal-card:first-child {
  border: 1px solid var(--line);
  border-radius: 22px;
}
.signal-card::after {
  right: 20px;
  bottom: 0;
  left: 20px;
  border-radius: 4px 4px 0 0;
}
.signal-icon { border-radius: 15px; }
.signal-card h3 { font-size: 20px; }
.signal-card p { font-size: 15px; }

.services-v2 { gap: 20px; }
.service-v2 {
  border-radius: 24px;
  overflow: hidden;
}
.service-v2__tag { border-radius: 9px; font-size: 11px; }
.service-v2__icon { border-radius: 17px; }
.service-v2 p { font-size: 15px; }
.service-v2__chips span {
  border-radius: 8px;
  font-size: 12px;
}

.visual-proof__media figure { border-radius: 26px; }
.visual-proof__head p:last-child { font-size: 16px; }
.visual-proof__media figcaption { border-radius: 14px; }
.visual-proof__media figcaption strong { font-size: 17px; }
.visual-proof__media figcaption span { font-size: 13px; }
.decision-grid {
  border-radius: 22px;
  overflow: hidden;
}
.decision-grid i { border-radius: 9px; font-size: 13px; }
.decision-grid strong { font-size: 15px; }
.decision-grid span { font-size: 13px; }

.scope-card { border-radius: 18px; }
.scope-card svg { border-radius: 8px; }
.scope-card strong { font-size: 15px; }
.scope-card span { font-size: 13px; }

.phase-section::after {
  content: "24 h";
  top: 10px;
  right: -1vw;
  font-size: 250px;
}
.phase-zero {
  border-radius: 28px;
}
.phase-zero__label {
  border-radius: 20px;
}
.phase-zero__label span,
.phase-zero__label small { font-size: 11px; }
.phase-zero__label strong {
  margin: 8px 0 4px;
  font-size: 40px;
  letter-spacing: -.05em;
}
.phase-zero__content > p { font-size: 16px; }
.phase-zero__chips span {
  border-radius: 9px;
  font-size: 13px;
}
.after-phase__step { border-radius: 22px; }
.after-phase__step > span { border-radius: 12px; font-size: 15px; }
.after-phase__step small { font-size: 11px; }
.after-phase__step h3 { font-size: 20px; }
.after-phase__step p { font-size: 14px; }

.quote-v2__badge {
  border-radius: 18px;
  font-size: 21px;
  font-weight: 900;
}
.quote-v2__aside > h3 { font-size: 24px; }
.quote-v2__aside > p { font-size: 16px; }
.quote-v2__points > div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 13px;
}
.quote-v2__points > div > i {
  width: 27px;
  height: 27px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}
.quote-v2__points strong,
.quote-v2__points small { display: block; }
.quote-v2__points strong { font-size: 15px; }
.quote-v2__points small { margin-top: 4px; color: #aaa5a1; font-size: 13px; }
.quote-v2__mail { font-size: 15px; }
.quote-form-wrap {
  border-radius: 28px;
  overflow: hidden;
}
.form-chip { border-radius: 10px; font-size: 12px; }
.quote-form__head h3 { font-size: 30px; }
.quote-form__head p { font-size: 15px; }
.service-choice legend,
.field > label { font-size: 14px; }
.service-choice label > span {
  min-height: 62px;
  border-radius: 13px;
  font-size: 14px;
}
.field input:not([type="checkbox"]),
.field textarea,
.field select { border-radius: 13px; font-size: 16px; }
.field input:not([type="checkbox"]),
.field select { height: 56px; }
.field textarea { min-height: 120px; }
.field-error,
.errorlist { font-size: 13px; }
.privacy-check { font-size: 13px !important; }
.form-note { font-size: 13px; }

.city-cloud span {
  border-radius: 11px;
  font-size: 13px;
}
.coverage-map { border-radius: 28px; }
.coverage-map__head span { font-size: 12px; }
.map-pin::after {
  border-radius: 6px;
  font-size: 11px;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { padding-inline: 22px; font-size: 17px; }
.faq-answer > p { color: var(--muted); font-size: 15px; }
.faq-item.is-open .faq-answer > p { padding: 0 22px 24px; }

.footer-about img { border-radius: 12px; }
.footer-about p { font-size: 15px; }
.footer-grid h3 { font-size: 14px; }
.footer-grid > div:not(.footer-about) a,
.footer-grid > div:not(.footer-about) span { font-size: 14px; }
.footer-bottom { font-size: 13px; }
.cookie-banner { border-radius: 18px; }
.cookie-banner p,
.cookie-btn { font-size: 13px; }

@media (max-width: 900px) {
  .desktop-nav a { font-size: 15px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .phase-hero__lead { font-size: 17px; }
  .phase-hero__photo { border-radius: 20px 34px 20px 20px; }
  .phase-hero__badge { border-radius: 13px; }
  .signal-card:nth-child(-n+2),
  .signal-card:last-child {
    border: 1px solid var(--line);
  }
  .service-v2 { border-radius: 20px; }
  .visual-proof__media figure { border-radius: 20px; }
  .phase-section::after { top: 90px; font-size: 110px; }
  .phase-zero__label strong { font-size: 38px; }
  .quote-form-wrap { border-radius: 22px; }
  .service-choice label > span { font-size: 13px; }
  .coverage-map { border-radius: 22px; }
}

/* Homepage v4 — readable minimums for every secondary text and control */
.topbar { font-size: 14px; }
.topbar__inner { min-height: 40px; }
.btn {
  min-height: 58px;
  padding-inline: 27px;
  font-size: 16px;
}
.btn--small { min-height: 52px; }
.eyebrow { font-size: 14px; }

.phase-hero__trust span { font-size: 15px; }
.phase-hero__trust svg { width: 22px; height: 22px; }
.phase-hero__badge { min-height: 86px; padding: 16px 20px; }
.phase-hero__badge > span { padding: 10px 12px; font-size: 13px; }
.phase-hero__badge strong { font-size: 18px; }
.phase-hero__badge small { font-size: 14px; }
.phase-hero__card {
  min-height: 108px;
  width: min(385px, 72%);
  padding: 20px 22px;
}
.phase-hero__card-icon { width: 50px; height: 50px; }
.phase-hero__card strong { font-size: 16px; }
.phase-hero__card small { font-size: 14px; line-height: 1.55; }

.proof-item {
  min-height: 142px;
  padding: 28px 22px;
}
.proof-icon { width: 50px; height: 50px; }
.proof-icon svg { width: 28px; height: 28px; }
.proof-item strong { font-size: 16px; }
.proof-item div > span { margin-top: 7px; font-size: 15px; line-height: 1.55; }

.section-intro { font-size: 19px; }
.signal-card {
  min-height: 350px;
  padding: 43px 31px 38px;
}
.signal-icon { width: 60px; height: 60px; }
.signal-icon svg { width: 33px; }
.signal-card h3 { font-size: 22px; }
.signal-card p { font-size: 16px; line-height: 1.75; }

.service-v2 {
  min-height: 350px;
  padding: 38px;
}
.service-v2__tag { padding: 8px 11px; font-size: 12px; }
.service-v2__icon { width: 66px; height: 66px; }
.service-v2__icon svg { width: 39px; }
.service-v2 h3 { font-size: 23px; }
.service-v2 p { font-size: 16px; line-height: 1.75; }
.service-v2__chips { gap: 7px; }
.service-v2__chips span { padding: 7px 10px; font-size: 13px; }

.visual-proof__head p:last-child { font-size: 18px; line-height: 1.7; }
.visual-proof__media figcaption { padding: 16px 19px; }
.visual-proof__media figcaption strong { font-size: 18px; }
.visual-proof__media figcaption span { font-size: 14px; }
.decision-grid article {
  min-height: 155px;
  padding: 27px;
  grid-template-columns: 40px 1fr;
  gap: 16px;
}
.decision-grid i { width: 36px; height: 36px; font-size: 14px; }
.decision-grid strong { font-size: 17px; }
.decision-grid span { margin-top: 7px; font-size: 16px; line-height: 1.6; }

.scope-grid { gap: 14px; }
.scope-card {
  min-height: 155px;
  padding: 27px;
  grid-template-columns: 32px 1fr;
  gap: 16px;
}
.scope-card svg { width: 30px; height: 30px; }
.scope-card strong { font-size: 17px; }
.scope-card span { margin-top: 7px; font-size: 16px; line-height: 1.6; }

.phase-zero {
  min-height: 260px;
  padding: 38px 42px 38px 32px;
}
.phase-zero__label { min-width: 150px; }
.phase-zero__label span,
.phase-zero__label small { font-size: 12px; }
.phase-zero__label strong { font-size: 44px; }
.phase-zero__content h3 { font-size: 30px; }
.phase-zero__content > p { font-size: 17px; line-height: 1.75; }
.phase-zero__chips span { padding: 8px 11px; font-size: 14px; }
.after-phase__step {
  min-height: 250px;
  padding: 34px;
}
.after-phase__step > span { width: 48px; height: 48px; font-size: 16px; }
.after-phase__step small { font-size: 12px; }
.after-phase__step h3 { font-size: 22px; }
.after-phase__step p { font-size: 16px; line-height: 1.7; }

.quote-section__head > p:last-child { font-size: 18px; line-height: 1.7; }
.quote-v2__badge { padding: 26px; font-size: 23px; }
.quote-v2__aside > h3 { font-size: 26px; }
.quote-v2__aside > p { font-size: 17px; line-height: 1.7; }
.quote-v2__points > div {
  padding: 20px 0;
  grid-template-columns: 33px 1fr;
  gap: 15px;
}
.quote-v2__points > div > i { width: 32px; height: 32px; font-size: 14px; }
.quote-v2__points strong { font-size: 17px; }
.quote-v2__points small { font-size: 16px; line-height: 1.55; }
.quote-v2__mail { font-size: 16px; }
.quote-form__head { padding: 38px 42px 28px; }
.form-chip { padding: 8px 12px; font-size: 13px; }
.quote-form__head h3 { font-size: 32px; }
.quote-form__head p { font-size: 17px; }
.quote-form { padding: 34px 42px 42px; }
.service-choice legend,
.field > label { font-size: 15px; }
.service-choice label > span {
  min-height: 68px;
  padding: 12px 14px;
  font-size: 15px;
}
.service-choice i { width: 18px; height: 18px; }
.field input:not([type="checkbox"]),
.field textarea,
.field select { font-size: 17px; }
.field input:not([type="checkbox"]),
.field select { height: 60px; padding-inline: 17px; }
.field textarea { min-height: 135px; padding: 16px 17px; }
.privacy-check { gap: 12px; font-size: 15px !important; line-height: 1.65; }
.privacy-check input { width: 20px; height: 20px; }
.form-note { font-size: 14px; }

.city-cloud { gap: 10px; }
.city-cloud span { padding: 10px 14px; font-size: 14px; }
.coverage-map__head span { font-size: 13px; }
.coverage-map__head strong { font-size: 28px; }
.map-pin {
  width: 15px;
  height: 15px;
  border-width: 4px;
}
.map-pin::after {
  top: 17px;
  padding: 4px 7px;
  font-size: 13px;
}

.faq-intro > p:not(.eyebrow) { font-size: 17px; line-height: 1.7; }
.faq-item button {
  min-height: 76px;
  padding: 20px 24px;
  font-size: 18px;
}
.faq-item i { width: 32px; height: 32px; }
.faq-answer > p { font-size: 17px; line-height: 1.75; }
.faq-item.is-open .faq-answer > p { padding: 0 24px 27px; }

.footer-about p { font-size: 16px; line-height: 1.7; }
.footer-grid h3 { font-size: 15px; }
.footer-grid > div:not(.footer-about) a,
.footer-grid > div:not(.footer-about) span {
  margin: 12px 0;
  font-size: 15px;
}
.footer-bottom { font-size: 14px; }
.cookie-banner { padding: 24px 26px; }
.cookie-banner strong { font-size: 16px; }
.cookie-banner p,
.cookie-btn { font-size: 14px; }
.cookie-btn { min-height: 44px; padding-inline: 17px; }
.cookie-settings label small { font-size: 13px; }
.mobile-cta { border-radius: 14px; }
.mobile-cta a { min-height: 62px; font-size: 14px; }

@media (max-width: 900px) {
  .proof-item { min-height: 125px; }
  .phase-zero { grid-template-columns: 150px 1fr; }
}

@media (max-width: 640px) {
  .topbar { font-size: 13px; }
  .eyebrow { font-size: 12px; }
  .section-intro { font-size: 17px; }
  .phase-hero__trust span { font-size: 15px; }
  .phase-hero__badge { min-height: 74px; }
  .phase-hero__badge strong { font-size: 16px; }
  .phase-hero__badge small { font-size: 13px; }
  .phase-hero__card {
    min-height: 108px;
    width: calc(100% - 20px);
  }
  .phase-hero__visual { padding-bottom: 116px; }
  .proof-item {
    min-height: 112px;
    padding: 20px 6px;
  }
  .proof-item strong { font-size: 16px; }
  .proof-item div > span { font-size: 15px; }
  .signal-card { padding: 33px 24px; }
  .signal-card p,
  .service-v2 p { font-size: 16px; }
  .service-v2 { padding: 32px 26px; }
  .decision-grid article { min-height: 0; padding: 25px 22px; }
  .scope-card { min-height: 0; padding: 25px 22px; }
  .phase-zero {
    min-height: 0;
    padding: 22px;
    grid-template-columns: 1fr;
  }
  .phase-zero__content > p { font-size: 16px; }
  .phase-zero__chips span { font-size: 13px; }
  .after-phase__step { min-height: 0; padding: 28px 22px; }
  .quote-form__head { padding: 32px 24px 24px; }
  .quote-form { padding: 28px 24px 32px; }
  .service-choice label > span { min-height: 66px; font-size: 14px; }
  .privacy-check { font-size: 14px !important; }
  .coverage-map__head strong { font-size: 24px; }
  .map-pin::after { font-size: 11px; }
  .faq-item button { min-height: 72px; padding: 18px; font-size: 17px; }
  .faq-answer > p { font-size: 16px; }
  .mobile-cta a { min-height: 64px; font-size: 14px; }
}

/* Homepage v5 — separated and subtly animated hero information cards */
.phase-hero__visual {
  padding-bottom: 132px;
}
.phase-hero__badge {
  animation: hero-badge-drift 6.5s ease-in-out infinite;
}
.phase-hero__card {
  right: -12px;
  bottom: 4px;
  animation: hero-card-drift 5.5s ease-in-out infinite;
}

@keyframes hero-badge-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}

@keyframes hero-card-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-3px, -7px, 0); }
}

@media (max-width: 900px) {
  .phase-hero__visual { padding-bottom: 128px; }
  .phase-hero__card { right: 10px; }
}

@media (max-width: 640px) {
  .phase-hero__visual { padding-bottom: 122px; }
  .phase-hero__card { bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .phase-hero__badge,
  .phase-hero__card,
  .hero-boxes svg {
    animation: none !important;
  }
}

/* Navigation v20 — keep the mobile menu trigger at the right edge */
@media (max-width: 900px) {
  .nav__actions {
    margin-left: auto;
  }
}

/* Homepage v6 — short three-step enquiry guide */
.quote-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(39, 76, 119, .11), transparent 22%),
    linear-gradient(135deg, #2b2a29 0%, #201f1e 100%);
}
.quote-section__head { max-width: 920px; }
.quote-section__head > p:last-child { max-width: 850px; }
.quote-v2 {
  grid-template-columns: minmax(320px, .58fr) minmax(0, 1.42fr);
  gap: 70px;
}
.quote-v2__aside {
  position: sticky;
  top: 140px;
}
.quote-v2__badge {
  width: fit-content;
  margin-bottom: 30px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 5px solid var(--electric);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
}
.quote-v2__aside > h3 { margin-bottom: 18px; }
.quote-v2__promise {
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  color: #fff;
  background: rgba(39, 76, 119, .14);
  border: 1px solid rgba(39, 76, 119, .25);
}
.quote-v2__promise strong {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 19px;
}
.quote-v2__promise span { color: #d3ceca; font-size: 15px; line-height: 1.6; }

.quote-form-wrap {
  border-top-width: 7px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .32);
}
.form-guide {
  padding: 30px 42px 26px;
  border-bottom: 1px solid var(--line);
  background: #faf8f6;
}
.form-guide__top {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.form-guide__top .form-chip { margin: 0; }
.form-guide__count {
  color: var(--electric-dark);
  font-size: 14px;
  font-weight: 900;
}
.form-progress {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.form-progress span {
  height: 8px;
  border-radius: 999px;
  background: #e5e0dc;
  transition: background .3s ease, transform .3s ease;
}
.form-progress span.is-active {
  background: var(--electric);
  transform: scaleY(1.15);
}
.form-guide > strong {
  display: block;
  font-size: 18px;
}

.quote-form--steps {
  min-height: 520px;
  padding-top: 34px;
}
.quote-form--steps.is-stepped .form-step { display: none; }
.quote-form--steps.is-stepped .form-step.is-active {
  display: block;
  animation: form-step-enter .3s ease both;
}
@keyframes form-step-enter {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-step + .form-step {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.quote-form--steps.is-stepped .form-step + .form-step {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.form-step__head { margin-bottom: 28px; }
.form-step__head > span {
  display: block;
  margin-bottom: 7px;
  color: var(--electric-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.form-step__head h3 {
  margin-bottom: 10px;
  font-size: 32px;
}
.form-step__head p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.quote-form--steps .service-choice { margin-bottom: 10px; }
.quote-form--steps .service-choice label > span {
  min-height: 74px;
  padding: 15px 17px;
  font-size: 15px;
}
.quote-form--steps .service-choice label > span:hover {
  border-color: #b9b2ad;
  background: #faf8f6;
}
.quote-form--steps .service-choice input:checked + span {
  border-width: 2px;
  box-shadow: 0 8px 25px rgba(39, 76, 119, .1);
}
.form-hint {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  color: #55514e;
  background: var(--electric-soft);
  font-size: 15px;
}
.form-hint svg {
  width: 26px;
  fill: none;
  stroke: var(--electric);
  stroke-width: 2;
  stroke-linecap: round;
}
.form-hint strong { color: var(--ink); }
.form-nav {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.form-nav--end { justify-content: flex-end; }
.form-nav > span {
  margin-right: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.form-nav .btn svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}
.btn--ghost:hover { color: var(--electric-dark); border-color: var(--electric); }

@media (max-width: 900px) {
  .quote-v2 { grid-template-columns: 1fr; gap: 42px; }
  .quote-v2__aside {
    position: static;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
  }
  .quote-v2__badge { grid-column: 1 / -1; }
  .quote-v2__promise { margin-top: 0; }
}

@media (max-width: 640px) {
  .quote-v2 {
    display: flex;
    flex-direction: column;
  }
  .quote-form-wrap { order: 1; }
  .quote-v2__aside { order: 2; display: block; }
  .quote-v2__promise { margin-top: 24px; }
  .form-guide { padding: 25px 24px 22px; }
  .form-guide__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .form-progress { margin-top: 18px; }
  .quote-form--steps {
    min-height: 0;
    padding-top: 28px;
  }
  .form-step__head h3 { font-size: 28px; }
  .form-step__head p { font-size: 16px; }
  .quote-form--steps .service-choice__grid { grid-template-columns: 1fr; }
  .quote-form--steps .service-choice label > span {
    min-height: 66px;
    font-size: 15px;
  }
  .form-nav {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .form-nav--end { flex-direction: column; }
  .form-nav .btn { width: 100%; }
  .form-nav > span { margin: 0; text-align: center; }
}

/* Homepage v7 — live OpenStreetMap coverage */
.coverage-grid {
  grid-template-columns: minmax(0, .84fr) minmax(500px, 1.16fr);
  gap: 75px;
}
.coverage-map-wrap {
  position: relative;
  min-height: 570px;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background: #ece9e5;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.coverage-map-leaflet {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.coverage-map-badge {
  position: absolute;
  z-index: 500;
  top: 22px;
  right: 22px;
  width: min(285px, calc(100% - 95px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 18px;
  display: grid;
  gap: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 38px rgba(37, 37, 37, .16);
  backdrop-filter: blur(12px);
  pointer-events: none;
}
.coverage-map-badge span {
  color: var(--electric-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.coverage-map-badge strong { font-size: 19px; }
.coverage-map-badge small { color: var(--muted); font-size: 14px; line-height: 1.5; }
.coverage-legend {
  position: absolute;
  z-index: 500;
  left: 16px;
  bottom: 32px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 10px 28px rgba(37, 37, 37, .16);
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.coverage-legend i {
  width: 25px;
  height: 14px;
  border: 2px dashed var(--electric);
  border-radius: 5px;
  background: rgba(39, 76, 119, .13);
}
.coverage-legend span { font-size: 13px; font-weight: 800; }
.coverage-map-fallback {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 45px;
  display: none;
  place-content: center;
  gap: 7px;
  color: var(--ink);
  background: linear-gradient(145deg, #ece9e5, #f8f6f3);
  text-align: center;
}
.coverage-map-fallback strong { font-size: 21px; }
.coverage-map-fallback span { max-width: 380px; color: var(--muted); font-size: 16px; }
.coverage-map-wrap.map-unavailable .coverage-map-fallback { display: grid; }
.coverage-map-wrap .leaflet-container {
  color: var(--ink);
  background: #ece9e5;
  font-family: inherit;
}
.coverage-map-wrap .leaflet-tile-pane {
  filter: saturate(.58) contrast(.95) brightness(1.04);
}
.coverage-map-wrap .leaflet-control-zoom {
  margin: 22px 0 0 22px;
  border: 0;
  box-shadow: 0 10px 28px rgba(37, 37, 37, .18);
}
.coverage-map-wrap .leaflet-control-zoom a {
  width: 42px;
  height: 42px;
  color: var(--ink);
  border-color: #e4dfdb;
  font-size: 22px;
  line-height: 40px;
}
.coverage-map-wrap .leaflet-control-zoom a:first-child { border-radius: 12px 12px 0 0; }
.coverage-map-wrap .leaflet-control-zoom a:last-child { border-radius: 0 0 12px 12px; }
.coverage-map-wrap .leaflet-control-attribution {
  padding: 4px 7px;
  color: #55514e;
  background: rgba(255, 255, 255, .88);
  font-size: 11px;
}
.coverage-marker-wrap { border: 0; background: transparent; }
.coverage-marker-dot {
  width: 26px;
  height: 26px;
  border: 6px solid #fff;
  border-radius: 50%;
  display: block;
  background: var(--electric);
  box-shadow: 0 5px 15px rgba(37, 37, 37, .35);
}
.coverage-map-wrap .leaflet-tooltip.coverage-city-label {
  padding: 6px 9px;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 6px 16px rgba(37, 37, 37, .16);
  font-size: 13px;
  font-weight: 850;
}
.coverage-map-wrap .leaflet-tooltip-left::before { border-left-color: rgba(255, 255, 255, .95); }
.coverage-map-wrap .leaflet-tooltip-right::before { border-right-color: rgba(255, 255, 255, .95); }

@media (max-width: 1080px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-copy { max-width: 780px; }
  .coverage-map-wrap { min-height: 520px; }
}

@media (max-width: 640px) {
  .coverage-map-wrap {
    min-height: 460px;
    border-radius: 24px;
  }
  .coverage-map-badge {
    top: 12px;
    right: 12px;
    width: min(230px, calc(100% - 78px));
    padding: 13px 15px;
  }
  .coverage-map-badge strong { font-size: 16px; }
  .coverage-map-badge small { display: none; }
  .coverage-legend { left: 10px; bottom: 30px; }
  .coverage-legend span { max-width: 155px; font-size: 12px; }
  .coverage-map-wrap .leaflet-control-zoom { margin: 12px 0 0 12px; }
}

/* Homepage v8 — phone contact and complete company footer */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}
.header-phone:hover { color: var(--electric-dark); }
.header-phone svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--electric);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-menu__phone,
.mobile-menu__mail {
  margin-top: 17px;
  display: block;
  color: var(--electric-dark);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}
.mobile-menu__mail { margin-top: 9px; color: var(--muted); font-size: 14px; }

.footer-about img.footer-logo-inverse {
  width: 220px;
  height: auto;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 0;
  border-radius: 0;
  filter: brightness(0) invert(1);
  background: transparent;
  filter: brightness(0) invert(1);
}
.footer-grid .footer-phone {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900;
  display: flex !important;
  align-items: center;
  gap: 11px;
}
.footer-grid .footer-phone svg {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 11px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--electric);
  box-shadow: 0 8px 22px rgba(39, 76, 119, .24);
}
.footer-company-row {
  margin-top: 26px;
  padding: 24px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #8f8a87;
  font-size: 14px;
}
.footer-company-row strong {
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-company-row span {
  position: relative;
}
.footer-company-row span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--electric);
  transform: translateY(-50%);
}
.legal-content .info-box a { font-weight: 800; }

@media (max-width: 1180px) {
  .header-phone { display: none; }
}

@media (max-width: 640px) {
  .footer-about img.footer-logo-inverse { width: 205px; }
  .footer-company-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    font-size: 14px;
  }
  .footer-company-row strong { margin-bottom: 4px; }
  .footer-company-row span + span::before { display: none; }
}

@media (min-width: 901px) {
  .footer-company-row {
    flex-wrap: nowrap;
    gap: clamp(7px, 1vw, 15px);
    font-size: clamp(8px, .72vw, 11px);
    line-height: 1.4;
    white-space: nowrap;
  }
  .footer-company-row strong {
    flex: 0 0 auto;
    font-size: clamp(9px, .72vw, 11px);
  }
  .footer-company-row span { flex: 0 0 auto; }
  .footer-company-row span + span::before {
    left: -8px;
    width: 2px;
    height: 2px;
  }
}

/* Homepage v10 — deliberately minimal copy beside the form */
.quote-v2 {
  grid-template-columns: minmax(260px, .46fr) minmax(0, 1.54fr);
  align-items: center;
  gap: 64px;
}
.quote-v2__aside {
  position: static;
  top: auto;
  max-width: 310px;
}
.simple-form-aside__time {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.simple-form-aside__time strong {
  color: var(--electric-dark);
  font-size: 88px;
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
}
.simple-form-aside__time span {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.quote-v2__aside > h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 36px;
  line-height: 1.08;
}
.quote-v2__aside > p {
  margin: 0;
  color: #beb8b4;
  font-size: 17px;
  line-height: 1.7;
}
.simple-form-aside__facts {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}
.simple-form-aside__facts span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.simple-form-aside__facts i {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 13px;
  font-style: normal;
}
.simple-form-aside__phone {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: block;
  color: #aaa5a1;
  font-size: 14px;
}
.simple-form-aside__phone strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 19px;
}
.simple-form-aside__phone:hover strong { color: var(--electric); }

@media (max-width: 900px) {
  .quote-v2 { grid-template-columns: 1fr; }
  .quote-v2__aside {
    max-width: 720px;
    display: block;
  }
}

/* Homepage — seven balanced service cards */
.service-v2 {
  display: flex;
  flex-direction: column;
}
.service-v2__tag--partner {
  color: var(--electric-dark);
  background: var(--electric-soft);
}
.service-v2__link {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--electric-dark);
  font-size: 14px;
  font-weight: 900;
}
.service-v2__link span {
  font-size: 17px;
  transition: transform .2s ease;
}
.service-v2__link:hover span {
  transform: translate(2px, -2px);
}

@media (min-width: 1101px) {
  .phase-hero h1 span,
  .phase-hero h1 em {
    white-space: normal;
  }
  .services-v2 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .service-v2--featured {
    grid-column: span 2;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .services-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-v2--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .service-v2--featured {
    grid-column: auto;
  }
}

/* Thank-you page v19 — confirmation experience matching the homepage */
.thank-you-v2 {
  position: relative;
  min-height: 760px;
  padding: 96px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .97) 0 49%, rgba(244, 248, 252, .84) 49% 100%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(37, 37, 37, .035) 79px 80px);
}
.thank-you-v2__ring {
  position: absolute;
  top: -210px;
  right: -140px;
  width: 560px;
  height: 560px;
  border: 92px solid rgba(39, 76, 119, .055);
  border-radius: 50%;
}
.thank-you-v2__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 78px;
}
.thank-you-v2__copy {
  max-width: 590px;
}
.thank-you-v2__check {
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  border: 8px solid var(--electric-soft);
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  box-shadow: 0 16px 38px rgba(39, 76, 119, .24);
}
.thank-you-v2__check svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.thank-you-v2 h1 {
  max-width: 650px;
  margin: 16px 0 25px;
  font-size: clamp(52px, 5vw, 74px);
  line-height: .99;
  letter-spacing: -.055em;
}
.thank-you-v2 h1 em {
  display: inline;
  color: var(--electric);
  text-shadow: 0 8px 26px rgba(51, 51, 51, .2);
  font-style: normal;
}
.thank-you-v2__lead {
  max-width: 570px;
  margin: 0;
  color: #5d5956;
  font-size: 19px;
  line-height: 1.75;
}
.thank-you-v2__actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 24px;
}
.thank-you-v2__home {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--ink);
  font-size: 15px;
  font-weight: 850;
}
.thank-you-v2__home span {
  margin-left: 4px;
  color: var(--electric-dark);
}
.thank-you-v2__home:hover {
  color: var(--electric-dark);
  border-color: var(--electric);
}
.thank-you-v2__phone {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.thank-you-v2__phone a {
  color: var(--ink);
  font-weight: 900;
}
.thank-you-v2__panel {
  position: relative;
  padding: 42px;
  border-top: 7px solid var(--electric);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 5%, rgba(39, 76, 119, .18), transparent 32%),
    linear-gradient(145deg, #2b2a29, #1c1b1a);
  box-shadow: 0 34px 90px rgba(36, 33, 31, .26);
}
.thank-you-v2__panel-head {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}
.thank-you-v2__panel-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--electric);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.thank-you-v2__panel-head strong {
  display: block;
  max-width: 470px;
  font-size: 25px;
  line-height: 1.3;
}
.thank-you-v2__timeline {
  padding: 27px 0 7px;
  display: grid;
}
.thank-you-v2__timeline article {
  position: relative;
  padding: 0 0 25px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
}
.thank-you-v2__timeline article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: rgba(255, 255, 255, .12);
}
.thank-you-v2__timeline i {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}
.thank-you-v2__timeline strong {
  display: block;
  color: #fff;
  font-size: 17px;
}
.thank-you-v2__timeline p {
  margin: 5px 0 0;
  color: #bbb5b1;
  font-size: 15px;
  line-height: 1.6;
}
.thank-you-v2__promise {
  padding: 19px 21px;
  border: 1px solid rgba(39, 76, 119, .25);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  background: rgba(39, 76, 119, .13);
}
.thank-you-v2__promise strong {
  color: var(--electric);
  font-size: 27px;
  white-space: nowrap;
}
.thank-you-v2__promise span {
  color: #d5cfcb;
  font-size: 14px;
  line-height: 1.55;
}
.thank-you-v2__facts {
  position: relative;
  z-index: 2;
  margin-top: 54px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(36, 33, 31, .08);
}
.thank-you-v2__facts span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #4d4946;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}
.thank-you-v2__facts i {
  width: 27px;
  height: 27px;
  border-radius: 9px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 13px;
  font-style: normal;
}
body:has(.thank-you-v2) .footer-cta {
  display: none;
}

@media (max-width: 1050px) {
  .thank-you-v2 {
    padding-top: 76px;
  }
  .thank-you-v2__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .thank-you-v2__copy {
    max-width: 760px;
  }
  .thank-you-v2__panel {
    max-width: 820px;
  }
}

@media (max-width: 640px) {
  .thank-you-v2 {
    padding: 52px 0 45px;
    background: linear-gradient(180deg, #fff 0 48%, var(--warm) 48% 100%);
  }
  .thank-you-v2__ring {
    top: -170px;
    right: -210px;
    width: 430px;
    height: 430px;
    border-width: 66px;
  }
  .thank-you-v2__check {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    border-radius: 20px;
  }
  .thank-you-v2 h1 {
    font-size: clamp(43px, 13vw, 58px);
  }
  .thank-you-v2__lead {
    font-size: 17px;
  }
  .thank-you-v2__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .thank-you-v2__home {
    align-self: flex-start;
  }
  .thank-you-v2__panel {
    padding: 29px 24px 25px;
    border-radius: 24px;
  }
  .thank-you-v2__panel-head strong {
    font-size: 22px;
  }
  .thank-you-v2__timeline article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }
  .thank-you-v2__timeline article:not(:last-child)::before {
    top: 38px;
    left: 18px;
  }
  .thank-you-v2__timeline i {
    width: 38px;
    height: 38px;
  }
  .thank-you-v2__promise {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .thank-you-v2__facts {
    margin-top: 32px;
    padding: 21px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .thank-you-v2__facts span {
    justify-content: flex-start;
    text-align: left;
  }
  body:has(.thank-you-v2) .mobile-cta a:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  .quote-v2__aside {
    max-width: none;
    padding: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .045);
  }
  .simple-form-aside__time strong { font-size: 68px; }
  .quote-v2__aside > h3 { font-size: 30px; }
}

/* Homepage v11 — balanced hero and responsive navigation polish */
@media (min-width: 901px) {
  .phase-hero__grid { align-items: center; }
  .phase-hero__visual {
    align-self: center;
    padding: 0 0 0 28px;
  }
  .phase-hero__card {
    top: -42px;
    right: -12px;
    bottom: auto;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .phase-hero__visual {
    margin-top: 28px;
    padding: 0 0 0 28px;
  }
  .phase-hero__card {
    top: -42px;
    right: 10px;
    bottom: auto;
  }
}

@media (max-width: 640px) {
  .phase-hero__grid { gap: 72px; }
  .phase-hero__visual {
    padding: 0;
  }
  .phase-hero__card {
    top: -48px;
    right: 10px;
    bottom: auto;
    width: calc(100% - 20px);
    min-height: 96px;
    padding: 16px 18px;
  }
  .phase-hero__card-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .phase-hero h1 { font-size: clamp(39px, 12.5vw, 52px); }
  .phase-hero__card {
    right: 0;
    width: calc(100% - 8px);
  }
  .phase-hero__card strong { font-size: 14px; }
  .phase-hero__card small { font-size: 12px; }
  .mobile-menu {
    width: 100%;
    padding: 18px;
  }
  .mobile-menu__head { padding-bottom: 16px; }
  .mobile-menu nav { padding: 14px 0; }
  .mobile-menu nav a { padding-block: 12px; }
  .mobile-menu__foot { padding: 18px; }
}

@media (max-height: 700px) and (max-width: 900px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu__head { flex: 0 0 auto; }
  .mobile-menu nav { flex: 0 0 auto; }
  .mobile-menu__foot { margin-top: auto; }
  .mobile-menu__foot p { display: none; }
}

/* Homepage v12 — step title lives only inside the active form step */
.form-guide {
  padding-bottom: 22px;
}
.form-progress {
  margin-bottom: 0;
}

/* Homepage v17 — rotating service promise and per-visitor sale countdown */
.topbar {
  transition: background-color .45s ease;
}
.topbar.is-promo {
  background: var(--electric);
}
.topbar__rotator {
  position: relative;
  min-height: 42px;
  justify-content: center;
}
.topbar__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease, visibility 0s linear .4s;
}
.topbar__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.topbar__slide strong {
  font-weight: 850;
}
.topbar__slide--promo {
  color: #fff;
  text-align: center;
}
.topbar__slide--promo:hover {
  color: #fff;
}
.topbar-promo__copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-promo__copy > strong {
  color: #fff;
}
.topbar-promo__timer {
  min-width: 78px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  background: rgba(0, 0, 0, .14);
  font-variant-numeric: tabular-nums;
}
.topbar-promo__timer svg {
  stroke: #fff;
}

@media (max-width: 700px) {
  .topbar__rotator {
    min-height: 58px;
  }
  .topbar__slide {
    font-size: 12px;
    line-height: 1.25;
  }
  .topbar__slide--promo {
    gap: 9px;
  }
  .topbar-promo__copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    text-align: left;
  }
  .topbar-promo__timer {
    min-width: 68px;
    padding-inline: 7px;
  }
}

@media (max-width: 360px) {
  .topbar__rotator {
    min-height: 62px;
  }
  .topbar__slide {
    gap: 5px;
    font-size: 11px;
    letter-spacing: 0;
  }
  .topbar-promo__copy > span {
    max-width: 185px;
  }
  .topbar-promo__timer {
    min-width: 62px;
    padding-inline: 5px;
  }
}

/* Homepage v16 — balanced coverage heading and map on desktop */
#pusobnost .section-title {
  text-wrap: balance;
}

@media (min-width: 1181px) {
  .coverage-grid {
    grid-template-columns: minmax(0, 1fr) minmax(560px, .98fr);
    gap: 56px;
  }
  #pusobnost .section-title {
    max-width: 590px;
    font-size: clamp(46px, 3.65vw, 54px);
    line-height: 1.06;
  }
}

@media (max-width: 1180px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .coverage-copy {
    max-width: 850px;
  }
  .coverage-map-wrap {
    min-height: 520px;
  }
}

/* Homepage v17 — lighter page rhythm with saturated blue accents */
.proof-strip {
  color: var(--ink);
  background: #f4f8fc;
  border-top: 1px solid #b7d8f4;
  border-bottom: 1px solid #b7d8f4;
}
.proof-strip .proof-grid {
  gap: 1px;
  background: #b7d8f4;
}
.proof-strip .proof-item {
  border: 0;
  background: #f4f8fc;
}
.proof-strip .proof-icon {
  color: #fff;
  background: var(--electric);
  box-shadow: 0 9px 24px rgba(39, 76, 119, .17);
}
.proof-strip .proof-item strong { color: var(--ink); }
.proof-strip .proof-item div > span { color: var(--muted); }

#co-udelame.section--graphite {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(39, 76, 119, .1), transparent 25%),
    linear-gradient(135deg, #f4f8fc 0%, #fff 72%);
  border-top: 1px solid #b7d8f4;
  border-bottom: 1px solid #b7d8f4;
}
#co-udelame.section--graphite::after {
  border-left-color: rgba(39, 76, 119, .07);
}
#co-udelame .eyebrow--light { color: var(--electric-dark); }
#co-udelame .eyebrow--light > span { background: var(--electric); }
#co-udelame .section-title { color: var(--ink); }
#co-udelame .section-intro { color: var(--muted); }
#co-udelame .btn--white {
  color: #fff;
  background: var(--electric);
  box-shadow: 0 12px 30px rgba(39, 76, 119, .18);
}
#co-udelame .btn--white:hover { background: var(--electric-hover); }
#co-udelame .scope-card {
  border-color: #b7d8f4;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 34px rgba(37, 37, 37, .045);
}
#co-udelame .scope-card svg {
  stroke: #fff;
  background: var(--electric);
}
#co-udelame .scope-card strong { color: var(--ink); }
#co-udelame .scope-card span { color: var(--muted); }

/* Asynchronous VEXE photo upload in enquiry step 2 */
.photo-upload { margin-top: 24px; }
.photo-upload__head {
  margin-bottom: 11px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.photo-upload__head label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.photo-upload__head label small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.photo-upload__head > span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: right;
}
.photo-upload .vx-dropzone {
  min-height: 120px;
  padding: 22px;
  border: 2px dashed #b7d8f4;
  border-radius: 18px;
  background: #f4f8fc;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.photo-upload .vx-dropzone:hover,
.photo-upload .vx-dropzone.vx-dropzone-dragover {
  border-color: var(--electric);
  background: #eaedef;
}
.photo-upload .vx-dropzone.vx-dropzone-dragover { transform: translateY(-2px); }
.photo-upload .vx-dropzone-text {
  margin: 0;
  color: #4d5963;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
  text-align: center;
}
.photo-upload .vx-dropzone-text::before {
  content: "+";
  width: 34px;
  height: 34px;
  margin: 0 auto 9px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--electric);
  font-size: 23px;
  font-weight: 500;
}
.photo-upload .vx-dropzone-list {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}
.photo-upload .vx-dropzone-item {
  min-width: 0;
  padding: 8px;
  border: 1px solid #b7d8f4;
  border-radius: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 8px;
  background: #fff;
  cursor: default;
  overflow: hidden;
}
.photo-upload .vx-dropzone-item-preview {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  background: #f0f4f5;
}
.photo-upload .vx-dropzone-item.has-preview-error .vx-dropzone-item-preview { display: none; }
.photo-upload .vx-dropzone-item-name {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.photo-upload .vx-dropzone-item-size { color: var(--muted); font-size: 9px; }
.photo-upload .vx-dropzone-item-progress {
  grid-column: 1 / -1;
  width: 100%;
  height: 5px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  accent-color: var(--electric);
}
.photo-upload .vx-dropzone-item-remove {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 4px 0;
  border: 0;
  color: #a02f2f;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.photo-upload .vx-dropzone-item-error {
  border-color: #e4aaaa;
  background: #fff5f5;
}

@media (max-width: 640px) {
  .photo-upload__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .photo-upload__head > span { text-align: left; }
  .photo-upload .vx-dropzone { padding: 18px 13px; }
  .photo-upload .vx-dropzone-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Ceník / mobilní katalog */
.cenik-hero{padding:78px 0 42px;background:radial-gradient(circle at 88% 10%,rgba(183,216,244,.62),transparent 24rem),linear-gradient(135deg,#fff 0%,var(--warm) 55%,#eef5fb 100%)}.cenik-hero h1{max-width:850px;margin-bottom:14px}.cenik-hero__lead{max-width:720px;margin:0;color:var(--muted);font-size:18px;line-height:1.65}.catalog-jump{display:flex;flex-wrap:wrap;gap:12px;margin-top:27px}.catalog-jump a{min-height:50px;padding:0 19px;border:1px solid #b7d8f4;border-radius:999px;display:inline-flex;align-items:center;gap:9px;color:var(--electric-dark);background:#fff;font-size:14px;font-weight:800;box-shadow:0 8px 22px rgba(39,76,119,.06);transition:.2s}.catalog-jump a:hover{transform:translateY(-2px);border-color:var(--electric);color:var(--electric);box-shadow:0 12px 28px rgba(200,16,46,.14)}.catalog-jump__icon{font-size:19px;line-height:1;color:var(--electric)}.catalog-jump b{font-size:17px}.catalog-proof{display:flex;flex-wrap:wrap;gap:8px 28px;margin:28px 0 0;padding:0;list-style:none}.catalog-proof li{display:flex;align-items:baseline;gap:7px;color:var(--ink);font-size:13px}.catalog-proof li:before{content:'✓';color:var(--electric);font-weight:900}.catalog-proof strong{font-weight:800}.catalog-proof span{color:var(--muted)}
.catalog-sticky{position:sticky;top:0;z-index:16;border-top:1px solid rgba(219,229,239,.9);border-bottom:1px solid var(--line);background:rgba(255,255,255,.96);backdrop-filter:blur(12px)}.catalog-sticky .container{min-height:58px;display:flex;align-items:center;gap:5px}.catalog-sticky a{min-height:38px;padding:0 13px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;color:var(--muted);font-size:13px;font-weight:800}.catalog-sticky a.is-active{color:#fff;background:var(--electric);box-shadow:0 5px 13px rgba(200,16,46,.22)}.catalog-sticky .catalog-sticky__cta{margin-left:auto;color:var(--electric-dark)}.catalog-sticky__cta b{font-size:17px;margin-left:6px}
.catalog-choice{padding:33px 0 34px;border-bottom:1px solid var(--line);background:#fff}.catalog-choice .eyebrow{margin-bottom:13px}.catalog-choice__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.catalog-choice__grid p{min-height:91px;display:flex;gap:13px;align-items:flex-start;margin:0;padding:16px;border:1px solid var(--line);border-radius:14px;background:#fbfdff}.catalog-choice__grid b{font-size:14px;color:var(--electric)}.catalog-choice__grid strong,.catalog-choice__grid span{display:block}.catalog-choice__grid strong{margin-bottom:3px;font-size:14px}.catalog-choice__grid span{color:var(--muted);font-size:13px;line-height:1.45}
.catalog-section{padding:78px 0}.catalog-section--exterior{position:relative;background:linear-gradient(145deg,#24384e 0%,#304f70 100%)}.catalog-section--exterior:before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 10% 0,rgba(183,216,244,.17),transparent 26rem);pointer-events:none}.catalog-section--exterior .container{position:relative}.catalog-section__head{display:grid;grid-template-columns:130px minmax(0,1fr);gap:12px 25px;align-items:start;margin-bottom:34px}.catalog-section__head .eyebrow{margin-top:8px}.catalog-section__head h2{margin:0 0 10px}.catalog-section__head>div>p{max-width:720px;margin:0;color:var(--muted);font-size:17px;line-height:1.6}.catalog-criteria{grid-column:2;margin:5px 0 0;padding:0;display:flex;flex-wrap:wrap;gap:8px;list-style:none}.catalog-criteria li{padding:7px 10px;border:1px solid #dbe5ef;border-radius:999px;background:#fff;color:#536477;font-size:12px;font-weight:700}.catalog-section--exterior h2{color:#fff}.catalog-section--exterior .catalog-section__head>div>p{color:#dbe5ef}.catalog-section--exterior .eyebrow{color:#dbe5ef}.catalog-section--exterior .catalog-criteria li{border-color:rgba(183,216,244,.35);background:rgba(255,255,255,.1);color:#fff}
.catalog-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.catalog-card{min-width:0;border:1px solid var(--line);border-radius:22px;display:flex;flex-direction:column;overflow:hidden;background:#fff;box-shadow:0 14px 38px rgba(18,36,54,.09);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}.catalog-card:hover{border-color:var(--electric);box-shadow:0 22px 52px rgba(18,36,54,.18);transform:translateY(-4px)}.catalog-card__media{position:relative;aspect-ratio:16/8.5;background:#e8eef4}.catalog-card__media:after{content:'';position:absolute;inset:45% 0 0;background:linear-gradient(transparent,rgba(14,30,46,.26));pointer-events:none}.catalog-card__media img{width:100%;height:100%;object-fit:cover;display:block}.catalog-card__media>span{position:absolute;z-index:1;top:14px;left:14px;padding:6px 10px;border-radius:999px;color:#fff;background:var(--electric);font-size:11px;font-weight:800;letter-spacing:.03em}.catalog-card__body{padding:24px;display:flex;flex:1;flex-direction:column}.catalog-card__top{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:start}.catalog-card h3{margin:0;font-size:25px;line-height:1.16}.catalog-card__price{min-width:116px;margin:0;padding:9px 10px 8px;border-radius:11px;color:var(--electric-dark);background:var(--electric-soft);text-align:right;font-size:12px;font-weight:800;line-height:1.05}.catalog-card__price strong{display:block;margin-top:2px;color:var(--electric);font-size:21px;letter-spacing:-.04em;white-space:nowrap}.catalog-card__price small{display:block;margin-top:6px;color:var(--muted);font-size:10px;font-weight:600;line-height:1.25}.catalog-card__recommend{margin:18px 0 0;padding:11px 13px;border-left:3px solid #b7d8f4;color:#40556b;background:#f4f8fc;font-size:13px;line-height:1.45}.catalog-card__recommend b{color:var(--ink)}.catalog-card__facts{margin:16px 0 0;padding:0;display:flex;flex-wrap:wrap;gap:7px;list-style:none}.catalog-card__facts li{padding:6px 9px;border-radius:8px;background:#f8fafc;color:#526171;font-size:12px;line-height:1.25}.catalog-card__facts li:before{content:'✓ ';color:var(--electric);font-weight:900}.catalog-swatches{margin-top:19px;padding-top:16px;border-top:1px solid var(--line)}.catalog-swatches__head{display:flex;justify-content:space-between;gap:10px;align-items:baseline}.catalog-swatches__head strong{font-size:14px}.catalog-swatches__head span{color:var(--muted);font-size:11px}.swatch-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-top:12px}.swatch{min-width:0;aspect-ratio:1;border:1px solid #dbe5ef;border-radius:8px;display:block;overflow:hidden;background:#f6f7f8;box-shadow:inset 0 0 0 1px rgba(255,255,255,.25);cursor:zoom-in}.swatch img{width:100%;height:100%;display:block;object-fit:cover}.swatch span{position:absolute;width:1px;height:1px;clip:rect(0,0,0,0);clip-path:inset(50%);overflow:hidden;white-space:nowrap}.swatch-grid .swatch:nth-child(n+11){display:none}.swatch-grid.is-expanded .swatch{display:block}.swatch-toggle{width:100%;min-height:44px;margin-top:9px;padding:0;border:0;display:flex;align-items:center;justify-content:space-between;color:var(--electric-dark);background:transparent;font:inherit;font-size:12px;font-weight:800;text-align:left;cursor:pointer}.swatch-toggle b{font-size:16px;transition:transform .18s}.swatch-toggle[aria-expanded=true] b{transform:rotate(180deg)}.catalog-card__cta{min-height:51px;margin-top:21px;padding:0 16px;border-radius:10px;display:flex;align-items:center;justify-content:space-between;color:#fff;background:var(--electric);font-size:14px;font-weight:800;transition:background .2s,transform .2s}.catalog-card__cta:hover{color:#fff;background:var(--electric-hover);transform:translateY(-1px)}
@media(max-width:720px){.cenik-hero{padding:50px 0 34px}.cenik-hero__lead{font-size:16px}.catalog-proof{display:grid;grid-template-columns:1fr 1fr;gap:9px 12px;margin-top:23px}.catalog-proof li{display:block;padding-left:17px;position:relative;font-size:12px}.catalog-proof li:before{position:absolute;left:0;top:0}.catalog-proof span{display:block;margin-top:2px;font-size:11px}.catalog-sticky .container{padding-right:10px;padding-left:10px}.catalog-sticky a{padding:0 11px;font-size:12px}.catalog-sticky a span{display:none}.catalog-sticky .catalog-sticky__cta{padding:0 7px;font-size:0}.catalog-sticky .catalog-sticky__cta b{font-size:18px}.catalog-choice{padding:25px 0}.catalog-choice__grid{grid-template-columns:1fr;gap:8px}.catalog-choice__grid p{min-height:0;padding:12px 13px}.catalog-choice__grid span{font-size:12px}.catalog-section{padding:55px 0}.catalog-section__head{display:block;margin-bottom:25px}.catalog-section__head .eyebrow{margin:0 0 10px}.catalog-section__head h2{font-size:30px}.catalog-section__head>div>p{font-size:15px}.catalog-criteria{margin-top:17px}.catalog-grid{grid-template-columns:1fr;gap:17px}.catalog-card{border-radius:18px}.catalog-card__media{aspect-ratio:1.44}.catalog-card__body{padding:20px}.catalog-card h3{font-size:22px}.catalog-card__top{gap:10px}.catalog-card__price{min-width:111px;padding:8px}.catalog-card__price strong{font-size:19px}.catalog-card__recommend{margin-top:15px}.catalog-card__facts{margin-top:14px}.swatch-grid{grid-template-columns:repeat(4,1fr);gap:7px}.swatch-grid .swatch:nth-child(n+7){display:none}.swatch-grid.is-expanded .swatch{display:block}.catalog-card__cta{min-height:50px;margin-top:18px}.catalog-section--exterior{padding-bottom:88px}}

/* Obrázkové vzorníky jsou výřezy z vlastních optimalizovaných sprite-sheetů. */
.swatch{padding:0;background-color:#f6f7f8;background-image:var(--swatch-sheet);background-size:800% calc(var(--swatch-rows)*100%);background-position:var(--swatch-x) var(--swatch-y)}

/* Zjednodušená orientace v katalogu. */
.catalog-section__head{grid-template-columns:150px minmax(0,1fr) auto;gap:18px 28px;margin-bottom:30px;padding:30px 32px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:0 12px 32px rgba(18,36,54,.05)}.catalog-section__head .eyebrow{margin:7px 0 0}.catalog-section__head h2{font-size:clamp(28px,3vw,40px);letter-spacing:-.045em}.catalog-section__head>div>p{max-width:620px;font-size:16px}.catalog-section__head:after{align-self:center;min-width:138px;padding:13px 15px;border-radius:13px;color:var(--electric-dark);background:var(--electric-soft);font-size:12px;font-weight:700;line-height:1.45;white-space:pre;content:'4 materiály\A ceny od 156 Kč / bm'}.catalog-criteria{display:none}.catalog-section--exterior .catalog-section__head{border-color:rgba(183,216,244,.22);background:rgba(255,255,255,.08);box-shadow:none}.catalog-section--exterior .catalog-section__head:after{color:#fff;background:rgba(255,255,255,.13);content:'11 provedení\A ceny od 172 Kč / bm'}.catalog-card__facts li:nth-child(n+3){display:none}.catalog-card__recommend{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
@media(max-width:720px){.catalog-section__head{display:grid;grid-template-columns:1fr;gap:17px;margin-bottom:22px;padding:23px 20px;border-radius:17px}.catalog-section__head .eyebrow{margin:0 0 8px}.catalog-section__head h2{font-size:29px}.catalog-section__head>div>p{font-size:15px}.catalog-section__head:after{justify-self:start;min-width:0;padding:9px 12px;font-size:12px}.catalog-card__facts{gap:7px}.catalog-card__recommend{-webkit-line-clamp:2}}

/* Hero bez eyebrow: odsazení zachovává původní polohu nadpisu. */
.cenik-hero{padding-top:108px}@media(max-width:720px){.cenik-hero{padding-top:76px}}

/* Férové srovnání materiálů a CTA vždy na spodní hraně karty. */
.catalog-card__tradeoffs{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:17px}.catalog-card__tradeoffs p{min-width:0;margin:0;padding:10px 11px;border-radius:9px;background:#f4f8fc;color:#526171;font-size:12px;line-height:1.4}.catalog-card__tradeoffs p:last-child{background:#faf6f2;color:#6e6259}.catalog-card__tradeoffs strong{display:block;margin-bottom:3px;color:var(--ink);font-size:11px;text-transform:uppercase;letter-spacing:.045em}.catalog-card__cta{margin-top:auto;padding-top:0}.catalog-swatches{margin-bottom:20px}@media(max-width:720px){.catalog-card__tradeoffs{grid-template-columns:1fr;gap:7px}.catalog-card__tradeoffs p{padding:9px 10px}.catalog-swatches{margin-bottom:17px}}

/* Sprite se škáluje podle své přirozené výšky; CSS calc nepodporuje násobení. */
.swatch{background-size:800% auto}.swatch-grid.is-expanded .swatch{display:block!important}

/* Čistý redakční nadpis sekce: bez dalších boxů a dekorativní zátěže. */
.catalog-section__head{position:relative;display:grid;grid-template-columns:138px minmax(0,760px);gap:0 34px;align-items:start;margin:0 0 42px;padding:0 0 36px;border:0;border-bottom:1px solid var(--line);border-radius:0;background:transparent;box-shadow:none}.catalog-section__head .eyebrow{margin:10px 0 0;line-height:1.45}.catalog-section__head h2{max-width:760px;margin:0 0 13px;font-size:clamp(34px,4vw,54px);line-height:1.03;letter-spacing:-.06em}.catalog-section__head>div>p{max-width:610px;margin:0;font-size:17px;line-height:1.6}.catalog-section__head:after{grid-column:2;align-self:end;min-width:0;margin-top:23px;padding:0;color:var(--electric-dark);background:transparent;font-size:12px;font-weight:800;letter-spacing:.035em;line-height:1.4;text-transform:uppercase;content:'4 materiály  ·  ceny od 156 Kč / bm'}.catalog-section--exterior .catalog-section__head{border-color:rgba(219,229,239,.35);background:transparent;box-shadow:none}.catalog-section--exterior .catalog-section__head:after{color:#dcecff;background:transparent;content:'11 provedení  ·  ceny od 172 Kč / bm'}.catalog-section--exterior .catalog-section__head h2{color:#fff}.catalog-section--exterior .catalog-section__head>div>p{color:#dbe5ef}@media(max-width:720px){.catalog-section__head{display:grid;grid-template-columns:1fr;gap:0;margin:0 0 28px;padding:0 0 27px;border-radius:0;background:transparent}.catalog-section__head .eyebrow{margin:0 0 12px}.catalog-section__head h2{font-size:34px;line-height:1.05}.catalog-section__head>div>p{font-size:16px}.catalog-section__head:after{grid-column:1;justify-self:start;min-width:0;margin-top:19px;padding:0;font-size:11px}.catalog-section--exterior .catalog-section__head{background:transparent}}

/* Celostránkový náhled dekoru. */
.catalog-section__head{border-bottom:0}

.catalog-section__head{grid-template-columns:minmax(0,760px)}.catalog-section__head:after{grid-column:1}

.catalog-card h3 small{display:block;margin-top:6px;color:var(--muted);font-size:12px;font-weight:700;letter-spacing:0;line-height:1.35}@media(max-width:720px){.catalog-card h3 small{font-size:11px}}

/* Jen to podstatné: výhody a omezení, bez technických štítků navíc. */
.catalog-card__facts{display:none}.catalog-card__tradeoffs{display:block;margin-top:18px}.catalog-card__tradeoffs p{display:none}.catalog-tradeoffs{display:grid;gap:8px;margin:0;padding:0;list-style:none}.catalog-tradeoffs li{position:relative;padding-left:22px;color:#526171;font-size:13px;line-height:1.45}.catalog-tradeoffs li:before{position:absolute;left:0;top:0;font-weight:900}.catalog-tradeoffs .is-plus:before{content:'✓';color:#16815c}.catalog-tradeoffs .is-minus:before{content:'!';color:var(--electric)}.catalog-tradeoffs .is-minus{color:#6d625c}

.service-v2{position:relative}.service-v2__card-link{position:absolute;z-index:2;inset:0;border-radius:inherit}.service-v2__card-link:focus-visible{outline:3px solid var(--electric);outline-offset:3px}
.swatch{cursor:zoom-in}.swatch-lightbox{position:fixed;z-index:1000;inset:0;display:grid;place-items:center;padding:24px;background:rgba(14,24,35,.8);opacity:0;backdrop-filter:blur(0);transition:opacity .24s ease,backdrop-filter .24s ease}.swatch-lightbox.is-open{opacity:1;backdrop-filter:blur(9px)}.swatch-lightbox__dialog{position:relative;width:min(560px,calc(100vw - 40px));padding:18px;border:1px solid rgba(255,255,255,.24);border-radius:22px;background:#fff;box-shadow:0 30px 80px rgba(0,0,0,.35);transform:translateY(16px) scale(.97);transition:transform .28s cubic-bezier(.2,.8,.2,1)}.swatch-lightbox.is-open .swatch-lightbox__dialog{transform:none}.swatch-lightbox__close{position:absolute;z-index:1;top:8px;right:8px;width:42px;height:42px;border:0;border-radius:50%;color:#fff;background:rgba(20,27,34,.72);font-size:27px;line-height:1;cursor:pointer}.swatch-lightbox__sample{aspect-ratio:1;border-radius:13px;background-color:#f6f7f8;background-repeat:no-repeat}.swatch-lightbox__caption{margin:15px 4px 2px;color:var(--ink);font-size:16px;font-weight:800}.swatch-lightbox__hint{margin:4px;color:var(--muted);font-size:12px}@media(max-width:640px){.swatch-lightbox{padding:16px}.swatch-lightbox__dialog{width:100%;padding:12px;border-radius:18px}.swatch-lightbox__sample{border-radius:11px}.swatch-lightbox__caption{margin-top:12px}}

/* Hero: jemná kótovací grafika namísto dekorativních plamínků. */
.hero-measure{position:absolute;z-index:0;inset:-38px -34px -18px -24px;pointer-events:none;overflow:hidden}.hero-measure svg{width:100%;height:100%;overflow:visible}.hero-measure__arc,.hero-measure__guide{stroke:rgba(39,76,119,.2);stroke-width:1.25}.hero-measure__arc{stroke-dasharray:5 9;animation:hero-measure-draw 14s linear infinite}.hero-measure__guide{stroke-dasharray:3 8}.hero-measure__axis,.hero-measure__tick{stroke:var(--electric);stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}.hero-measure__axis{stroke-dasharray:300;stroke-dashoffset:300;animation:hero-measure-axis 3.8s cubic-bezier(.22,.8,.27,1) infinite}.hero-measure__point{fill:var(--electric);filter:drop-shadow(0 3px 5px rgba(39,76,119,.28))}.hero-measure__ring{stroke:rgba(39,76,119,.48);stroke-width:1.2;transform-origin:290px 347px;animation:hero-measure-pulse 3.8s ease-out infinite}@keyframes hero-measure-draw{to{stroke-dashoffset:-112px}}@keyframes hero-measure-axis{0%,12%{stroke-dashoffset:300}48%,82%{stroke-dashoffset:0}100%{stroke-dashoffset:-300}}@keyframes hero-measure-pulse{0%,34%{opacity:0;transform:scale(.55)}48%{opacity:.75}74%,100%{opacity:0;transform:scale(1.7)}}@media(max-width:640px){.hero-measure{inset:-24px -12px 26px -12px;opacity:.8}.hero-measure__arc{display:none}}@media(prefers-reduced-motion:reduce){.hero-measure__arc,.hero-measure__axis,.hero-measure__ring{animation:none}.hero-measure__axis{stroke-dashoffset:0}.hero-measure__ring{opacity:.55;transform:scale(1)}}

/* Viditelný pohyb měřicího jezdce; zůstává mimo obsah fotografie. */
.hero-measure__cursor{fill:var(--electric);stroke:var(--electric);stroke-width:1.75;stroke-linecap:round;transform-box:fill-box;transform-origin:center;animation:hero-measure-cursor 3.8s cubic-bezier(.45,0,.2,1) infinite}@keyframes hero-measure-cursor{0%,13%{opacity:0;transform:translateX(0)}22%{opacity:1}58%{opacity:1;transform:translateX(300px)}76%,100%{opacity:0;transform:translateX(300px)}}@media(prefers-reduced-motion:reduce){.hero-measure__cursor{animation:none;opacity:1;transform:translateX(150px)}}

/* Kóta leží nad fotografií — na původní vrstvě ji snímek zcela zakrýval. */
.hero-measure{z-index:3;inset:0;overflow:hidden}.hero-measure__arc,.hero-measure__guide{stroke:rgba(255,255,255,.56);stroke-width:1.35}.hero-measure__axis,.hero-measure__tick{stroke:rgba(255,255,255,.94);filter:drop-shadow(0 1px 2px rgba(16,27,36,.28))}.hero-measure__point,.hero-measure__cursor{fill:var(--electric);stroke:var(--electric)}.hero-measure__ring{stroke:rgba(255,255,255,.9);transform-origin:290px 194px}

/* Záměr jako skutečný pracovní nástroj: kóta, rohové body a jeden průjezd laseru. */
.hero-measure__corners{stroke:rgba(255,255,255,.48);stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round}.hero-measure__dimension{stroke:rgba(255,255,255,.92);stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round;filter:drop-shadow(0 1px 2px rgba(16,27,36,.34))}.hero-measure__dimension path:first-child{stroke-dasharray:460;stroke-dashoffset:460;animation:hero-caliper-draw 7.5s cubic-bezier(.2,.8,.22,1) infinite}.hero-measure__laser{fill:var(--electric);stroke:var(--electric);stroke-width:1.7;stroke-linecap:round;filter:drop-shadow(0 2px 5px rgba(137,10,35,.52));animation:hero-laser-sweep 7.5s cubic-bezier(.45,0,.2,1) infinite}.hero-measure__label rect{fill:rgba(23,31,40,.74);stroke:rgba(255,255,255,.2);stroke-width:.8}.hero-measure__label text{fill:#fff;font-family:Manrope,Arial,sans-serif;font-size:9px;font-weight:800;letter-spacing:.15em}.hero-measure__label{opacity:0;animation:hero-caliper-label 7.5s ease infinite}@keyframes hero-caliper-draw{0%,8%{stroke-dashoffset:460;opacity:0}18%{opacity:1}40%,84%{stroke-dashoffset:0;opacity:1}100%{stroke-dashoffset:0;opacity:0}}@keyframes hero-laser-sweep{0%,23%{opacity:0;transform:translateX(0)}28%{opacity:1}57%{opacity:1;transform:translateX(350px)}70%,100%{opacity:0;transform:translateX(350px)}}@keyframes hero-caliper-label{0%,27%{opacity:0;transform:translateY(5px)}35%,70%{opacity:1;transform:none}82%,100%{opacity:0;transform:none}}@media(prefers-reduced-motion:reduce){.hero-measure__dimension path:first-child,.hero-measure__laser,.hero-measure__label{animation:none}.hero-measure__dimension path:first-child{stroke-dashoffset:0;opacity:1}.hero-measure__laser{opacity:1;transform:translateX(175px)}.hero-measure__label{opacity:1}}

/* Kóta je pevná, aby hero nepůsobilo jako náhodná dekorace; pohybuje se jen zaměřovací bod. */
.hero-measure__dimension path:first-child{stroke-dashoffset:0;animation:none}.hero-measure__label{opacity:1;animation:none}.hero-measure__laser{animation:hero-laser-pass 8.5s cubic-bezier(.35,0,.2,1) infinite}@keyframes hero-laser-pass{0%{opacity:0;transform:translateX(0)}6%{opacity:1}80%{opacity:1;transform:translateX(350px)}87%,100%{opacity:0;transform:translateX(350px)}}

/* Značka mimo okraj: vlastní piktogram jako velmi jemný vodoznak, ne další obsah. */
.visual-proof{position:relative;overflow:hidden}.visual-proof>.container,.section--graphite>.container{position:relative;z-index:1}.section-mark{position:absolute;z-index:0;width:clamp(210px,25vw,390px);height:auto;pointer-events:none;user-select:none;opacity:.055;filter:grayscale(1) brightness(.34);animation:section-mark-drift 24s ease-in-out infinite alternate}.section-mark--solution{top:-92px;right:-74px}.section-mark--scope{right:-110px;bottom:-122px;opacity:.085}.section-mark--inverse{filter:grayscale(1) brightness(0) invert(1)}@keyframes section-mark-drift{from{transform:translate3d(0,0,0) rotate(-4deg)}to{transform:translate3d(-13px,15px,0) rotate(2deg)}}@media(max-width:720px){.section-mark{width:210px}.section-mark--solution{top:-72px;right:-86px}.section-mark--scope{right:-88px;bottom:-102px}}@media(prefers-reduced-motion:reduce){.section-mark{animation:none}}

/* Každý znak drží vlastní náklon — nikdy nepůsobí jako další logo v navigaci. */
.section-mark--solution{animation-name:section-mark-drift-solution}.section-mark--scope{animation-name:section-mark-drift-scope}@keyframes section-mark-drift-solution{from{transform:translate3d(0,0,0) rotate(-16deg)}to{transform:translate3d(-12px,14px,0) rotate(-10deg)}}@keyframes section-mark-drift-scope{from{transform:translate3d(0,0,0) rotate(13deg)}to{transform:translate3d(-14px,12px,0) rotate(19deg)}}

/* Poptávka dostává značku zleva: vyvažuje pravostranné akcenty dalších sekcí. */
.quote-section{position:relative;overflow:hidden}.quote-section>.container{position:relative;z-index:1}.section-mark--quote{left:-118px;bottom:-126px;width:clamp(240px,28vw,430px);opacity:.075;animation-name:section-mark-drift-quote}@keyframes section-mark-drift-quote{from{transform:translate3d(0,0,0) rotate(-19deg)}to{transform:translate3d(15px,-12px,0) rotate(-13deg)}}@media(max-width:720px){.section-mark--quote{left:-94px;bottom:-90px;width:225px}}

/* Název kategorie vede skenováním nadpisu; věta za ním zůstává neutrální. */
.catalog-section__title-accent{color:var(--electric)}

/* Desktop ukáže jen první řadu dekorů; další patří až za vědomé rozkliknutí. */
@media(min-width:721px){.swatch-grid .swatch:nth-child(n+6){display:none}.swatch-grid.is-expanded .swatch{display:block!important}}
