:root {
  --red: #e32718;
  --red-dark: #bd1d12;
  --red-soft: #fff2ef;
  --ink: #252525;
  --graphite: #343332;
  --muted: #6f6d6b;
  --line: #e4e1de;
  --warm: #f6f4f1;
  --white: #fff;
  --green: #1f7a4f;
  --shadow: 0 24px 70px rgba(38, 35, 33, .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(--graphite);
  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: var(--red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.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: 225px; 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(--red);
  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(--red);
  box-shadow: 0 12px 28px rgba(227, 39, 24, .22);
}
.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 34px rgba(227, 39, 24, .3);
}
.btn--white { color: var(--red); 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; }
.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(--red); }
.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(--red);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red-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(--red);
}
.eyebrow--light { color: #ffb0a8; }
.eyebrow--light > span { background: #ff796e; }

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(--red);
  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(246, 244, 241, .96) 0%, rgba(246, 244, 241, .96) 48%, rgba(246, 244, 241, .42) 48%, rgba(246, 244, 241, .42) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 95px, rgba(64, 59, 56, .035) 96px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 110px solid rgba(227, 39, 24, .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(--red); }
.text-link--red { color: var(--red); border-color: #edaaa4; }

.hero__proof {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid #d9d5d1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero__proof div { min-width: 0; }
.hero__proof strong {
  display: block;
  color: var(--red);
  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(--red);
}
.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(--red);
}
.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(--red);
  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(227, 39, 24, .08);
  transform: skewX(-14deg);
}
.section--red-soft { background: var(--red-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 #e3dfdb;
  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: #efb6b1;
  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(--red);
  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(--red);
  background: var(--red-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(--red);
}
.product-card > a {
  display: flex;
  justify-content: space-between;
  color: var(--red);
  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 #d3ccc7;
  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(--red);
  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 #d3cdca;
}
.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(--red);
  box-shadow: 0 8px 22px rgba(227, 39, 24, .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: #ff796e; 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(--red-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(--red);
  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 #ddd8d4;
  border-radius: 20px;
  color: #5a5653;
  background: #faf9f7;
  font-size: 11px;
  font-weight: 700;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--red);
  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(--red);
  box-shadow: 0 15px 40px rgba(227, 39, 24, .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(--red-soft);
}
.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: var(--red);
}
.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(--red);
  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(--red);
  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(--red);
  background: var(--red-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(227, 39, 24, .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(--red);
  color: var(--red);
  background: var(--red-soft);
}
.service-choice input:checked + span i {
  border-color: var(--red);
}
.service-choice input:checked + span i::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--red);
}
.service-choice input:focus-visible + span { outline: 3px solid rgba(227, 39, 24, .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(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(227, 39, 24, .1);
}
.field input::placeholder,
.field textarea::placeholder { color: #aaa5a1; }
.field-error,
.errorlist {
  margin: 5px 0 0;
  padding: 0;
  display: block;
  color: var(--red-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(--red);
  flex: 0 0 auto;
}
.privacy-check a { color: var(--red); 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(--red);
}
.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);
}

.site-footer {
  padding: 75px 0 28px;
  color: #c0bcba;
  background: #242322;
}
.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: #ff7c72 !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(--red); 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(--red); color: #fff; background: var(--red); }
.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(--red); }
.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 { background: var(--red); }

.notifications {
  position: fixed;
  z-index: 400;
  top: 105px;
  right: 20px;
}
.notification {
  padding: 15px 18px;
  border-left: 4px solid var(--red);
  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(--red); text-decoration: underline; }
.legal-content .info-box {
  margin: 25px 0;
  padding: 22px;
  border-left: 4px solid var(--red);
  background: var(--red-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(--red);
  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(--red);
  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: 195px; }
  .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: 175px; }
  .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(246, 244, 241, .78) 49% 100%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(37, 37, 37, .035) 79px 80px);
}
.phase-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;
  width: 540px;
  height: 540px;
  border: 90px solid rgba(227, 39, 24, .055);
  border-radius: 50%;
}
.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: 18px 0 24px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .99;
  letter-spacing: -.055em;
}
.phase-hero h1 em {
  display: inline;
  color: var(--red);
  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(--red); border-color: var(--red); }
.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(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.phase-hero__visual {
  position: relative;
  padding: 0 0 38px 28px;
}
.phase-hero__photo {
  position: relative;
  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 {
  width: 100%;
  max-height: 500px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 46%;
}
.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(--red);
  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(--red);
  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(--red);
  background: var(--red-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; }
.phase-hero__corner {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 95px;
  height: 95px;
  border-top: 9px solid var(--red);
  border-right: 9px solid var(--red);
}

.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(--red);
  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(--red);
  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(--red);
  background: var(--red-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(--red);
  background: var(--red);
}
.service-v2__tag {
  position: absolute;
  top: 19px;
  right: 19px;
  padding: 6px 9px;
  color: var(--red);
  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(--red);
  background: var(--red-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 {
  width: 100%;
  max-height: 320px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.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(--red);
  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(--red);
}
.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(227, 39, 24, .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(--red);
}
.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(--red); 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(--red); 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(--red);
  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(--red);
  background: rgba(255, 255, 255, .06);
}
.quote-v2__badge span { display: block; color: var(--red); 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(--red);
  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(--red);
  background: var(--red);
}
.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(--red); 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(--red);
  box-shadow: 0 0 0 6px rgba(227, 39, 24, .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: 14px 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 {
    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); }
  .phase-hero__corner { display: none; }
  .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 { 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(--red);
  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 {
    animation: none !important;
  }
}

/* Homepage v6 — short three-step enquiry guide */
.quote-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(227, 39, 24, .11), transparent 22%),
    linear-gradient(135deg, #2d2c2b 0%, #242322 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(--red);
  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(227, 39, 24, .14);
  border: 1px solid rgba(255, 107, 95, .25);
}
.quote-v2__promise strong {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--red);
  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(--red);
  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(--red);
  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(--red);
  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(227, 39, 24, .1);
}
.form-hint {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  color: #55514e;
  background: var(--red-soft);
  font-size: 15px;
}
.form-hint svg {
  width: 26px;
  fill: none;
  stroke: var(--red);
  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(--red); border-color: var(--red); }

@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(--red);
  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(--red);
  border-radius: 5px;
  background: rgba(227, 39, 24, .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(--red);
  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(--red); }
.header-phone svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-menu__phone,
.mobile-menu__mail {
  margin-top: 17px;
  display: block;
  color: var(--red);
  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: 240px;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.footer-grid .footer-phone {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900;
}
.footer-grid .footer-phone::before {
  content: "☎";
  margin-right: 8px;
  color: var(--red);
}
.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(--red);
  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: 225px; }
  .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; }
}

/* 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(--red);
  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;
  background: var(--red);
  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: #ff8076; }

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

@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;
  }
  .phase-hero__corner { display: none; }
}

@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: #16834f;
}
.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;
  }
}
