@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --color-bg: #f6f6f6;
  --color-surface: #ffffff;
  --color-ink: #000000;
  --color-muted: #666666;
  --color-line: rgba(21, 21, 21, 0.14);
  --color-dark: #000000;
  --color-dark-2: #191919;
  --color-red: #8c0014;
  --color-red-deep: #6f0010;
  --color-steel: #c5c5c5;
  --color-warm: #f59b00;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.16);
  --max: 1180px;
  --font-sans: "Onest", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Onest", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.58;
  letter-spacing: 0;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.locked {
  overflow: hidden;
}

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

strong {
  font-weight: var(--weight-semibold);
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 24px;
  left: 0;
  right: 0;
  width: min(100% - 48px, 1420px);
  margin: 0 auto;
  color: #fff;
  transition: top 0.2s ease;
}

.site-header.is-scrolled {
  top: 10px;
}

.header-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: max-content;
  min-height: 38px;
  margin-left: auto;
  padding: 8px 16px;
  border-radius: 4px 4px 0 0;
  background: rgba(15, 15, 15, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: var(--weight-medium);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.header-topline a {
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.header-topline-dot {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1;
}

.header-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 10px 22px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 7px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 300px;
}

.brand-logo {
  display: block;
  width: 124px;
  height: auto;
}

.brand-note {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 42px);
  font-size: 16px;
  font-weight: var(--weight-semibold);
  color: currentColor;
}

.nav a {
  position: relative;
  opacity: 1;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--color-red);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.phone-link {
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: var(--weight-semibold);
  text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}

.button-primary:hover {
  background: var(--color-red-deep);
  border-color: var(--color-red-deep);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.button-outline {
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.button-small {
  min-width: 220px;
  min-height: 52px;
  padding: 0 22px;
  background: var(--color-red);
  color: #fff;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: #fff;
}

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

.hero-bg {
  background-image: url("assets/hero-premium-appliance.png");
  background-position: center;
  background-size: cover;
  transform: none;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.5) 54%, rgba(0, 0, 0, 0.72) 100%),
    rgba(8, 10, 12, 0.24);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 860px;
  padding: 220px 0 48px;
}

.hero-copy {
  width: 100%;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-red);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.final-cta .eyebrow,
.hero .eyebrow {
  color: #ffffff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1120px;
  margin: 0 auto 34px;
  font-family: var(--font-display);
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.06;
  font-weight: var(--weight-medium);
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.06;
  font-weight: var(--weight-semibold);
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: var(--weight-medium);
  text-wrap: balance;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.hero-benefits li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding-left: 54px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 5px;
}

.hero-benefits li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 14px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.lead-form {
  padding: 26px;
  background: rgba(246, 243, 238, 0.96);
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}

.hero-form {
  width: 100%;
  padding: 26px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
  color: #fff;
}

.form-intro {
  display: grid;
  grid-template-columns: minmax(450px, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 22px;
}

.form-kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: var(--weight-medium);
  text-transform: none;
}

.lead-form h2 {
  margin: 0;
  font-size: clamp(32px, 2.9vw, 38px);
  line-height: 1.04;
  font-weight: var(--weight-semibold);
  text-wrap: balance;
}

.hero-form h2 {
  font-size: clamp(30px, 2.6vw, 34px);
  white-space: nowrap;
  text-wrap: nowrap;
}

.form-intro-note {
  max-width: 640px;
  margin: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.58;
}

.hero-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(240px, 0.82fr);
  align-items: end;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.hero-form .hero-form-fields label {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: var(--weight-semibold);
}

.lead-form input:not([type="checkbox"]),
.lead-form select {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--color-ink);
  outline: none;
  font-size: 17px;
  line-height: 1.2;
  font-weight: var(--weight-medium);
}

.lead-form input:not([type="checkbox"]):focus,
.lead-form select:focus {
  border-color: var(--color-red);
}

.form-submit {
  width: 100%;
  min-height: 60px;
  margin: 0;
  font-size: 16px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.lead-form .form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: var(--weight-regular);
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-red);
}

.form-consent a {
  color: inherit;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.48);
}

.form-consent a:hover {
  color: #fff;
}

.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.form-status.is-success {
  color: #fff;
  font-weight: var(--weight-semibold);
}

.form-status.is-error {
  color: #ffd6dc;
  font-weight: var(--weight-semibold);
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}

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

.section-head p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.58;
}

.section-head.compact {
  margin-bottom: 0;
}

.device-section {
  scroll-margin-top: 175px;
  overflow: visible;
  background: var(--color-bg);
}

.device-section-head {
  margin-bottom: 38px;
}

.device-section-head .section-head {
  margin-bottom: 0;
}

.device-section .section-head p:not(.eyebrow) {
  max-width: 720px;
  color: #3f3f3f;
  font-size: 18px;
  line-height: 1.55;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.device-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 270px;
  padding: 22px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background-image: url("assets/appliance-category-grid.png");
  background-repeat: no-repeat;
  background-size: auto 200%;
  color: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 16%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.96) 100%);
  transition: background-color 0.18s ease;
}

.device-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.device-card--washer { background-position: 2% 0%; }
.device-card--dishwasher { background-position: 26% 0%; }
.device-card--dryer { background-position: 50% 0%; }
.device-card--coffee { background-position: 74% 0%; }
.device-card--fridge { background-position: 98% 0%; }
.device-card--oven { background-position: 2% 100%; }
.device-card--hood { background-position: 26% 100%; }
.device-card--ironing { background-position: 74% 100%; }
.device-card--vacuum { background-position: 98% 100%; }

.device-card--aircon {
  background-size: cover;
}

.device-card--aircon {
  background-image: url("assets/season-air-conditioner.webp");
  background-position: center;
}

.device-card h3 {
  position: relative;
  z-index: 1;
  min-height: 44px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: var(--weight-semibold);
  line-height: 1.12;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

.device-card-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-red);
  border-radius: 3px;
  background: var(--color-red);
  color: #fff;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.device-card:hover .device-card-action {
  background: var(--color-red-deep);
  border-color: var(--color-red-deep);
  color: #fff;
}

.device-fallback {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.52fr);
  gap: 26px;
  margin-top: 34px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.48) 100%),
    url("assets/trust-diagnosis.webp") center / cover no-repeat;
  color: #fff;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.18);
  animation: device-fallback-pulse 5.5s ease-in-out infinite;
}

@keyframes device-fallback-pulse {
  0%,
  68%,
  100% {
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(255, 255, 255, 0);
  }

  78% {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22), 0 0 0 4px rgba(255, 255, 255, 0.08);
  }

  88% {
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .device-fallback {
    animation: none;
  }
}

.device-fallback-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 40px 44px 38px;
}

.device-fallback-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-fallback-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
  border: 0;
}

.device-fallback-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.device-fallback-points span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.device-fallback-points span::before {
  content: "✓";
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #fff;
  color: #111;
  font-size: 12px;
  line-height: 1;
}

.device-fallback h3 {
  margin: 0;
  max-width: 620px;
  color: #fff;
  font-size: clamp(27px, 2.3vw, 36px);
  line-height: 1.1;
  font-weight: var(--weight-semibold);
  text-wrap: balance;
}

.device-fallback p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.device-fallback-panel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  gap: 16px;
  align-content: center;
  margin: 18px 18px 18px 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.device-fallback .device-fallback-panel-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-fallback-phone {
  display: block;
  color: #fff;
  font-size: clamp(25px, 2.4vw, 32px);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.device-fallback-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  background: #fff;
  color: #000;
  border-color: #fff;
  text-align: left;
}

.device-fallback-button span:last-child {
  font-size: 22px;
  font-weight: var(--weight-regular);
  line-height: 1;
}

.device-fallback-button:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #000;
}

.device-fallback .device-fallback-note {
  max-width: 330px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.5;
}

.price-modal[hidden] {
  display: none;
}

.price-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.price-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.price-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  padding: clamp(30px, 4vw, 52px);
  overflow-y: auto;
  border-radius: 3px;
  background: #fff;
  color: var(--color-ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.price-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.price-modal-head {
  max-width: 760px;
  margin-bottom: 32px;
  padding-right: 56px;
}

.price-modal-head .eyebrow {
  margin-bottom: 13px;
  color: #4f4f4f;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
}

.price-modal-head h3 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: var(--weight-semibold);
  text-wrap: balance;
}

.price-modal-head p:not(.eyebrow) {
  margin: 0;
  max-width: 700px;
  color: #515151;
  font-size: 16px;
  line-height: 1.55;
}

.device-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  border-top: 1px solid rgba(21, 21, 21, 0.24);
  border-bottom: 1px solid rgba(21, 21, 21, 0.24);
}

.device-price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  min-height: 70px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-line);
}

.device-price-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.device-price-list span {
  color: #3f3f3f;
  font-size: 15px;
  font-weight: var(--weight-medium);
}

.device-price-list strong {
  color: #111;
  white-space: nowrap;
  font-weight: var(--weight-semibold);
  font-variant-numeric: tabular-nums;
}

.price-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 30px;
}

.price-modal-note {
  max-width: 500px;
  padding-left: 18px;
  border-left: 2px solid #1b1b1b;
}

.price-modal-note > span {
  display: block;
  margin-bottom: 5px;
  color: #686868;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-modal-note p {
  margin: 0;
  color: #292929;
  font-size: 14px;
  line-height: 1.5;
}

.price-modal-note strong {
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.48);
  font-weight: var(--weight-semibold);
}

.price-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 315px;
  min-height: 68px;
  padding: 18px 22px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  transition: background 0.2s ease, transform 0.2s ease;
}

.price-modal-cta span:last-child {
  font-size: 24px;
  font-weight: var(--weight-regular);
  line-height: 1;
}

.price-modal-cta:hover {
  background: var(--color-red-deep);
  transform: translateY(-2px);
}

.trust-editorial {
  scroll-margin-top: 175px;
  background: #fff;
}

.trust-heading {
  max-width: 900px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  gap: 14px;
  min-height: 650px;
}

.benefit-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #111;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
}

.benefit-card--arrival {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.benefit-card--price {
  grid-column: 5 / 9;
  grid-row: 1;
}

.benefit-card--warranty {
  grid-column: 5 / 9;
  grid-row: 2;
}

.benefit-card--parts {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.benefit-card-media {
  position: absolute;
  inset: 0;
  background-color: #111;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.45s ease;
}

.benefit-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.24) 48%, rgba(0, 0, 0, 0.88) 100%);
}

.benefit-card:hover .benefit-card-media {
  transform: scale(1.025);
}

.benefit-card--arrival .benefit-card-media {
  background-image: url("assets/trust-diagnosis.webp");
  background-position: 56% center;
}

.benefit-card--parts .benefit-card-media {
  background-image: url("assets/trust-parts.webp");
  background-position: 52% center;
}

.benefit-card--price .benefit-card-media {
  background-image: url("assets/trust-price.webp");
  background-position: 48% center;
}

.benefit-card--warranty .benefit-card-media {
  background-image: url("assets/trust-warranty.webp");
  background-position: 50% 38%;
}

.benefit-card-copy {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: clamp(22px, 2.2vw, 32px);
  color: #fff;
}

.benefit-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-card h3 {
  max-width: 22ch;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.12;
  font-weight: var(--weight-semibold);
  text-wrap: balance;
}

.benefit-card p {
  margin: 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.48;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.service-card {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.42);
}

.service-code {
  display: block;
  margin-bottom: 42px;
  color: var(--color-red);
  font-weight: var(--weight-semibold);
}

.service-card p,
.work-step p,
.trust-item p {
  margin-bottom: 0;
  color: var(--color-muted);
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.split-top {
  align-items: start;
}

.section-dark .section-head p:not(.eyebrow),
.section-dark .trust-item p {
  color: rgba(255, 255, 255, 0.68);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item {
  min-height: 170px;
  padding: 28px;
  background: var(--color-dark-2);
}

.process-section {
  background: var(--color-surface);
}

.process-heading {
  max-width: 860px;
}

.work-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-items: center;
  gap: clamp(24px, 2.2vw, 38px);
  max-width: 1320px;
  margin: 56px auto 0;
  padding: 0;
  list-style: none;
}

.work-flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 33px;
  border-top: 1px solid rgba(21, 21, 21, 0.22);
}

.work-step {
  position: relative;
  min-width: 0;
  padding-top: 2px;
  text-align: center;
  display: grid;
  justify-items: center;
}

.work-step::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 78px;
  height: 36px;
  border-top: 2px dashed rgba(140, 0, 20, 0.46);
  border-radius: 50% 50% 0 0;
  opacity: 0;
  transform: translateX(22px);
}

.work-step:nth-child(2)::before,
.work-step:nth-child(4)::before {
  opacity: 1;
}

.work-step:nth-child(4)::before {
  transform: translateX(22px) rotate(180deg);
  top: 46px;
}

.work-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border: 1px solid rgba(21, 21, 21, 0.3);
  border-radius: 50%;
  background: #fff;
  color: #050505;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.work-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-step h3 {
  margin: 0 0 14px;
  min-width: 0;
  color: #050505;
  font-size: clamp(23px, 1.45vw, 28px);
  line-height: 1.12;
  font-weight: 700;
  text-wrap: balance;
}

.work-step > p {
  min-width: 0;
  max-width: 29ch;
  color: #2c2c2c;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 450;
  overflow-wrap: break-word;
}

.onsite-section {
  background: #111;
  color: #fff;
}

.onsite-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
}

.onsite-heading {
  position: sticky;
  top: 138px;
}

.onsite-heading .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.onsite-heading h2 {
  color: #fff;
}

.onsite-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.onsite-phone {
  display: inline-flex;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-size: 22px;
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.onsite-decisions {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.onsite-decision {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.onsite-marker {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.onsite-marker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.onsite-decision h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: var(--weight-semibold);
  line-height: 1.08;
}

.onsite-decision p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.56;
}

.onsite-note {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.16);
}

.onsite-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-red), rgba(140, 0, 20, 0.18));
}

.onsite-note strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.onsite-note strong::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 5px rgba(140, 0, 20, 0.16);
}

.onsite-note p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.prices {
  background: var(--color-bg);
}

.price-table {
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.price-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--color-line);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table span {
  color: var(--color-muted);
}

.price-table strong {
  color: var(--color-red);
  text-align: right;
  white-space: nowrap;
  font-weight: var(--weight-semibold);
}

.proof-section {
  position: relative;
  overflow: hidden;
  background: #f1f1ef;
}

.proof-layout {
  position: relative;
}

.proof-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  justify-content: space-between;
  gap: clamp(48px, 8vw, 132px);
  align-items: end;
  margin-bottom: clamp(52px, 6vw, 76px);
}

.proof-intro .section-head {
  margin: 0;
}

.proof-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.proof-summary {
  margin: 0;
  max-width: 560px;
  color: #3e3e3e;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.proof-summary strong {
  display: block;
  margin-bottom: 8px;
  color: #070707;
  font-size: 1.08em;
}

.proof-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 62px);
  padding-top: 38px;
}

.proof-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.proof-steps::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(90px, 10vw, 150px);
  height: 3px;
  background: var(--color-red);
}

.proof-step {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.proof-step::before {
  content: "";
  position: absolute;
  top: -43px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 7px #f1f1ef;
}

.proof-step span {
  display: block;
  margin-bottom: 14px;
  color: #050505;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-step p {
  margin: 0;
  max-width: 30ch;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.58;
}

.proof-note {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 760px;
  margin-top: clamp(44px, 5vw, 66px);
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.proof-note-mark {
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  background: var(--color-red);
}

.proof-note strong {
  display: block;
  margin-bottom: 4px;
  color: #050505;
  font-size: 18px;
}

.proof-note p {
  margin: 0;
  color: #4b4b4b;
  font-size: 15px;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 10vw, 136px) 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.74) 46%, rgba(0, 0, 0, 0.54) 100%),
    url("assets/trust-diagnosis.webp") center right / cover no-repeat,
    var(--color-dark);
  color: #fff;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.09), transparent 34%);
}

.final-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.final-content h2 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 0.98;
  font-weight: 700;
  text-wrap: balance;
}

.final-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.48;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.final-phone {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(23px, 2.8vw, 34px);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.button-telegram {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-telegram:hover {
  border-color: #fff;
  background: #fff;
  color: #0a0a0a;
}

.final-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin-top: 52px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.final-assurance div {
  min-height: 112px;
  padding: 24px 26px;
}

.final-assurance span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.final-assurance strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
}

.site-footer {
  padding: 34px 0 38px;
  background: #080808;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr 1.08fr;
  gap: clamp(30px, 4vw, 64px);
}

.footer-brand,
.footer-column {
  min-height: 0;
  padding: 0;
}

.footer-brand img {
  display: block;
  width: 118px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p,
.footer-column p,
.footer-column small {
  margin: 0;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: #fff;
  font-weight: var(--weight-semibold);
}

.footer-column .footer-telegram {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-weight: var(--weight-medium);
  text-underline-offset: 4px;
}

.footer-column .footer-telegram:hover {
  color: #fff;
}

.footer-column small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-legal-links {
  display: grid;
  gap: 7px;
  margin-top: 5px;
}

.footer-column .footer-legal-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: var(--weight-regular);
  text-underline-offset: 3px;
}

.footer-column .footer-legal-links a:hover {
  color: #fff;
}

.footer-legal-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font: inherit;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-legal-links button:hover {
  color: #fff;
}

.cookie-notice {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(760px, calc(100% - 48px));
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 12, 0.96);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

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

.cookie-notice strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-notice p a {
  color: #fff;
  text-underline-offset: 3px;
}

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

.cookie-actions .button {
  min-height: 44px;
  padding: 0 22px;
}

.cookie-decline {
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: var(--weight-medium);
  cursor: pointer;
}

.cookie-decline:hover {
  color: #fff;
}

.mobile-call {
  position: fixed;
  z-index: 25;
  left: auto;
  right: 16px;
  bottom: 16px;
  display: none;
  width: min(220px, calc(100% - 32px));
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: var(--color-red);
  color: #fff;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 1040px) {
  .site-header {
    width: min(100% - 28px, 1420px);
  }

  .nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .header-panel {
    grid-template-columns: 1fr auto;
  }

  .hero-form-fields {
    gap: 14px;
  }

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

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

  .work-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    gap: 34px 30px;
    margin-top: 42px;
  }

  .work-flow::before,
  .work-step::before {
    display: none;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .site-header.is-scrolled {
    top: 6px;
  }

  .header-topline {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 28px;
    padding: 5px 8px;
    border-radius: 4px 4px 0 0;
    font-size: 11px;
    box-shadow: none;
  }

  .header-topline a {
    font-size: 12px;
  }

  .header-panel {
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    padding: 9px 12px;
    gap: 10px;
  }

  .header-actions {
    flex: 0 0 auto;
    min-width: 0;
    margin-left: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 104px;
  }

  .brand-note {
    display: none;
  }

  .phone-link {
    display: none;
  }

  .button-small {
    display: none;
    min-width: 0;
    width: 148px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
    white-space: nowrap;
  }

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

  .hero {
    min-height: 800px;
  }

  .hero-bg {
    display: block;
    background-position: 58% center;
    transform: none;
  }

  .hero-shade {
    display: block;
    background: rgba(0, 0, 0, 0.68);
  }

  .hero-layout {
    min-height: 800px;
    padding: 110px 0 28px;
  }

  h1 {
    font-size: clamp(34px, 9.5vw, 40px);
    text-align: left;
  }

  .city-name {
    display: block;
    white-space: nowrap;
    font-size: 0.7em;
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-copy {
    text-align: left;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-benefits li {
    min-height: 34px;
    padding-left: 44px;
    font-size: 15px;
  }

  .hero-benefits li::before {
    width: 25px;
    height: 25px;
  }

  .hero-benefits li::after {
    left: 7px;
    top: 11px;
  }

  .form-intro {
    display: block;
  }

  .form-kicker {
    margin-bottom: 6px;
  }

  .lead-form.hero-form {
    padding: 20px 0 0;
  }

  .hero-form .form-intro h2 {
    font-size: clamp(21px, 6.2vw, 26px);
    white-space: normal;
  }

  .form-intro-note {
    margin-top: 10px;
    font-size: 14px;
  }

  .hero-form-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lead-form {
    padding: 22px;
  }

  .device-section-head {
    display: block;
    margin-bottom: 26px;
  }

  .device-section,
  .trust-editorial {
    scroll-margin-top: 84px;
  }

  .device-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .device-card {
    min-height: 260px;
    padding: 18px;
  }

  .device-card h3 {
    min-height: 40px;
    font-size: 17px;
  }

  .device-card-action {
    padding: 0 6px;
    font-size: 10px;
  }

  .device-fallback {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
    padding: 0;
    background-position: 38% center;
  }

  .device-fallback-copy {
    padding: 28px 22px 24px;
  }

  .device-fallback-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .device-fallback-points span {
    min-height: 50px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .device-fallback-points span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .device-fallback-panel {
    margin: 0 14px 14px;
    padding: 24px 20px;
  }

  .device-fallback-phone,
  .device-fallback-button {
    width: 100%;
  }

  .price-modal {
    padding: 12px;
  }

  .price-modal-dialog {
    display: grid;
    grid-template-rows: auto minmax(180px, 1fr) auto;
    height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
    padding: 28px 20px 22px;
    overflow: hidden;
  }

  .price-modal-head {
    padding-right: 42px;
  }

  .price-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .device-price-list {
    grid-template-columns: 1fr;
    column-gap: 0;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .device-price-list div:nth-child(odd),
  .device-price-list div:nth-child(even) {
    padding: 16px 0;
    border-left: 0;
  }

  .device-price-list div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--color-line);
  }

  .device-price-list div:last-child {
    border-bottom: 0;
  }

  .price-modal-footer {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--color-line);
  }

  .price-modal-note {
    padding-left: 14px;
  }

  .price-modal-cta {
    width: 100%;
    min-width: 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    min-height: 0;
  }

  .benefit-card,
  .benefit-card--arrival,
  .benefit-card--price,
  .benefit-card--warranty,
  .benefit-card--parts {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .benefit-card-media {
    min-height: 0;
  }

  .benefit-card-copy {
    padding: 22px 22px 72px;
  }

  .benefit-card h3 {
    font-size: 24px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  .split,
  .onsite-layout {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .proof-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 0 30px;
  }

  .proof-steps::before {
    top: 8px;
    right: auto;
    bottom: 8px;
    left: 4px;
    width: 1px;
    height: auto;
  }

  .proof-steps::after {
    display: none;
  }

  .proof-step {
    min-height: 0;
    padding: 0 0 30px;
  }

  .proof-step:last-child {
    padding-bottom: 0;
  }

  .proof-step::before {
    top: 6px;
    left: -30px;
    width: 9px;
    height: 9px;
  }

  .proof-step p {
    max-width: 36ch;
    font-size: 15px;
  }

  .proof-note {
    margin-top: 40px;
    padding-top: 22px;
  }

  .proof-step p,
  .proof-summary,
  .proof-note p,
  .onsite-note p {
    overflow-wrap: anywhere;
  }

  .final-cta {
    padding: 72px 0 82px;
    background-position: 58% center;
  }

  .final-content h2 {
    max-width: 640px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.04;
  }

  .final-content > p:not(.eyebrow) {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .final-phone {
    min-height: 54px;
    padding: 0;
    font-size: 22px;
  }

  .final-assurance {
    grid-template-columns: 1fr;
    max-width: 680px;
    width: 100%;
  }

  .final-assurance div {
    min-width: 0;
    min-height: 0;
    padding: 20px 18px;
  }

  .final-assurance strong {
    overflow-wrap: anywhere;
  }

  .section-head.compact {
    margin-bottom: 30px;
  }

  .service-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .onsite-heading {
    position: static;
  }

  .onsite-phone {
    font-size: 19px;
  }

  .onsite-decision {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .onsite-decision h3 {
    font-size: 23px;
  }

  .onsite-decision p {
    font-size: 14px;
  }

  .onsite-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .work-flow {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
  }

  .work-step {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    justify-items: start;
    column-gap: 18px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--color-line);
    text-align: left;
  }

  .work-step + .work-step {
    padding-top: 24px;
  }

  .work-step:last-child {
    border-bottom: 0;
  }

  .work-icon {
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    margin-bottom: 0;
  }

  .work-icon svg {
    width: 31px;
    height: 31px;
  }

  .work-step h3 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .work-step > p {
    max-width: none;
    font-size: 15px;
  }

  .final-actions {
    display: grid;
    max-width: 420px;
  }

  .final-phone,
  .final-actions .button {
    width: 100%;
    justify-content: center;
  }

  .service-card {
    min-height: 0;
  }

  .service-code {
    margin-bottom: 24px;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-table strong {
    text-align: left;
  }

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

  .mobile-call {
    display: flex;
  }

  body.show-mobile-call .mobile-call {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-footer {
    padding-bottom: 86px;
  }

  .cookie-notice {
    right: 14px;
    bottom: 76px;
    grid-template-columns: 1fr;
    gap: 16px;
    width: calc(100% - 28px);
    padding: 18px;
  }

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

  .cookie-actions .button,
  .cookie-decline {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .button-small {
    display: none;
  }

  .header-mobile-call {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    background: var(--color-red);
    color: #fff;
    font-size: 13px;
    font-weight: var(--weight-semibold);
  }

  .work-step {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .work-icon {
    grid-row: auto;
  }

  .work-step h3,
  .work-step > p {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 16px);
  }

  .hero-layout {
    padding-top: 96px;
  }

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

  .device-card {
    min-height: 260px;
  }
}

/* Restrained motion system: one-time entrances, no decorative looping. */
.motion-ready .motion-reveal {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, translate;
}

.motion-ready .motion-reveal.is-revealed {
  opacity: 1;
  translate: 0 0;
}

.motion-ready .hero-bg {
  animation: hero-settle 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready .work-flow::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.motion-ready .work-flow.is-motion-active::before {
  transform: scaleX(1);
}

.motion-ready .proof-steps::before,
.motion-ready .proof-steps::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .proof-section.is-motion-active .proof-steps::before,
.motion-ready .proof-section.is-motion-active .proof-steps::after {
  transform: scaleX(1);
}

.motion-ready .proof-step::before {
  opacity: 0;
  scale: 0.4;
  transition:
    opacity 0.42s ease,
    scale 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .proof-step.is-revealed::before {
  opacity: 1;
  scale: 1;
}

.price-modal:not([hidden]) .price-modal-backdrop {
  animation: modal-backdrop-in 0.24s ease both;
}

.price-modal:not([hidden]) .price-modal-dialog {
  animation: modal-dialog-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-settle {
  from {
    scale: 1.035;
  }
  to {
    scale: 1;
  }
}

@keyframes modal-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-dialog-in {
  from {
    opacity: 0;
    translate: 0 18px;
    scale: 0.985;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@media (max-width: 760px) {
  .motion-ready .proof-steps::before {
    transform: scaleY(0);
    transform-origin: top center;
  }

  .motion-ready .proof-section.is-motion-active .proof-steps::before {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-preview) *,
  html:not(.motion-preview) *::before,
  html:not(.motion-preview) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
