:root {
  --ink: #0b1220;
  --ink-2: #121b2d;
  --ink-3: #1c2638;
  --text: #172033;
  --muted: #687287;
  --line: #e6e9ef;
  --surface: #ffffff;
  --surface-soft: #f6f7f9;
  --accent: #dc6b0e;
  --accent-dark: #b95408;
  --accent-soft: #fff2e6;
  --success: #197a4a;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 24px 70px rgba(3, 8, 18, 0.22);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a,
summary,
input {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(220, 107, 14, 0.36);
  outline-offset: 3px;
}

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

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

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 78px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 118px;
  height: auto;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover img,
.brand:focus-visible img {
  transform: scale(0.9);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.main-nav > a:not(.main-nav-phone) {
  position: relative;
  color: #3d4658;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav > a:not(.main-nav-phone)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
}

.main-nav > a:not(.main-nav-phone):hover,
.main-nav > a:not(.main-nav-phone):focus-visible,
.main-nav > a:not(.main-nav-phone).is-active {
  color: var(--accent);
}

.main-nav-phone {
  display: none;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-phone > span {
  position: relative;
  display: inline-block;
}

.header-phone > span::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--accent);
}

.header-phone:hover > span::after,
.header-phone:focus-visible > span::after {
  transform: scaleX(1);
}

.header-phone img {
  width: 18px;
  filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
    brightness(91%) contrast(92%);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 20px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transform: translateZ(0);
  transition:
    min-height 0.25s ease,
    padding 0.25s ease,
    transform 0.32s cubic-bezier(0.2, 0.75, 0.2, 1),
    background-position 0.58s cubic-bezier(0.2, 0.75, 0.2, 1),
    border-color 0.32s ease,
    box-shadow 0.34s ease,
    color 0.25s ease;
}

.button::before {
  position: absolute;
  top: -42%;
  bottom: -42%;
  left: -48%;
  width: 28%;
  content: "";
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.025) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.025) 70%,
    transparent 100%
  );
  transform: translateX(-170%) skewX(-18deg);
  transition: transform 1.22s cubic-bezier(0.2, 0.68, 0.22, 1);
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px) scale(1.012);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(620%) skewX(-18deg);
}

.button:active {
  transform: translateY(0) scale(0.985);
  transition-duration: 0.12s;
}

.button:focus-visible {
  outline: 3px solid rgba(236, 118, 18, 0.26);
  outline-offset: 3px;
}

.button--accent {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    110deg,
    #f08a2c 0%,
    var(--accent) 38%,
    var(--accent-dark) 70%,
    #f08a2c 100%
  );
  background-size: 220% 100%;
  background-position: 0 50%;
  box-shadow:
    0 12px 26px rgba(220, 107, 14, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button--accent:hover,
.button--accent:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  background-position: 100% 50%;
  box-shadow:
    0 18px 34px rgba(220, 107, 14, 0.34),
    0 0 0 4px rgba(236, 118, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
}

.button--outline-light img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.button--dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    110deg,
    #07101f 0%,
    #111d31 42%,
    #1b2940 68%,
    #07101f 100%
  );
  background-size: 230% 100%;
  background-position: 0 50%;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button--dark::before {
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(236, 118, 18, 0.015) 26%,
    rgba(236, 118, 18, 0.18) 50%,
    rgba(255, 255, 255, 0.055) 66%,
    transparent 100%
  );
}

.button--dark:hover,
.button--dark:focus-visible {
  color: #fff;
  border-color: rgba(236, 118, 18, 0.62);
  background-position: 100% 50%;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.28),
    0 0 0 4px rgba(236, 118, 18, 0.07),
    inset 0 0 0 1px rgba(236, 118, 18, 0.12);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button--full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  z-index: 10;
  min-height: 710px;
  overflow: visible;
  color: #fff;
  background: var(--ink);
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual picture,
.final-cta-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual img {
  display: block;
  width: 114%;
  max-width: none;
  height: 100%;
  margin-left: -14%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 12, 23, 0.99) 0%,
      rgba(6, 12, 23, 0.94) 38%,
      rgba(6, 12, 23, 0.56) 66%,
      rgba(6, 12, 23, 0.38) 100%
    ),
    linear-gradient(0deg, rgba(6, 12, 23, 0.58), transparent 48%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 710px;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 54px;
  padding-block: 54px;
}

.hero-copy {
  max-width: 690px;
  padding-block: 26px;
}

.eyebrow,
.section-kicker,
.lead-card-kicker,
.contact-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  content: "";
  background: rgba(220, 107, 14, 0.78);
  transform: none;
}

.hero h1 {
  max-width: 720px;
  margin: 14px 0 20px;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: #f4f6fa;
  font-size: 0.62em;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-lead {
  max-width: 640px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.62;
}

.hero-price {
  position: relative;
  isolation: isolate;
  width: fit-content;
  max-width: 100%;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(220, 107, 14, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.hero-price::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(220, 107, 14, 0) 0%,
    rgba(220, 107, 14, 0) 35%,
    rgba(220, 107, 14, 0.26) 48%,
    rgba(255, 155, 69, 0.62) 50%,
    rgba(220, 107, 14, 0.26) 52%,
    rgba(220, 107, 14, 0) 65%,
    rgba(220, 107, 14, 0) 100%
  );
  background-position: 180% 0%;
  background-size: 220% 220%;
  pointer-events: none;
  animation: heroPriceBorderSweep 5.5s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-price > * {
  position: relative;
  z-index: 1;
}

.hero-price-label {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.hero-price-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-price-value strong {
  color: #ff9b45;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero-price-value span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.hero-price p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

@keyframes heroPriceBorderSweep {
  0% {
    background-position: 180% 0%;
    opacity: 0;
  }

  8% {
    opacity: 0.82;
  }

  45% {
    opacity: 1;
  }

  60% {
    opacity: 0.68;
  }

  100% {
    background-position: -40% 100%;
    opacity: 0;
  }
}

@keyframes motopatentBorderSweep {
  0% {
    background-position: 180% 0%;
    opacity: 0;
  }

  8% {
    opacity: 0.82;
  }

  45% {
    opacity: 1;
  }

  62% {
    opacity: 0.7;
  }

  100% {
    background-position: -40% 100%;
    opacity: 0;
  }
}

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

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

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.hero-proof img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  filter: invert(51%) sepia(95%) saturate(1505%) hue-rotate(354deg)
    brightness(95%) contrast(90%);
}

/* Forms */
.lead-card,
.final-form {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
}

.lead-card::before,
.final-form::before {
  position: absolute;
  top: -1px;
  right: 30px;
  left: 30px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 0 0 10px 10px;
}

.lead-card-kicker {
  margin-bottom: 8px;
  color: var(--accent);
}

.lead-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.lead-card > p {
  margin: 10px 0 21px;
  color: var(--muted);
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 13px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-label {
  color: #3b4659;
  font-size: 12px;
  font-weight: 800;
}

.field-label small {
  color: #8a93a4;
  font-size: 10px;
  font-weight: 600;
}

.field-control {
  display: grid;
  min-height: 48px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  padding-inline: 13px;
  border: 1px solid #dce1e9;
  border-radius: 10px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field-control:focus-within {
  border-color: rgba(220, 107, 14, 0.7);
  box-shadow: 0 0 0 4px rgba(220, 107, 14, 0.1);
}

.field.is-invalid .field-control {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.field-control img {
  width: 18px;
  opacity: 0.58;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.field-control:focus-within img,
.field-control:has(input:not(:placeholder-shown)) img {
  opacity: 1;
  filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
    brightness(91%) contrast(92%);
  transform: scale(1.08);
}

.field-control input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  color: var(--accent-dark);
  caret-color: var(--accent-dark);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.field-control input::placeholder {
  color: #9ba3b1;
}

.field-control input:-webkit-autofill,
.field-control input:-webkit-autofill:hover,
.field-control input:-webkit-autofill:focus,
.field-control input:autofill {
  color: var(--accent-dark);
  -webkit-text-fill-color: var(--accent-dark);
  caret-color: var(--accent-dark);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out 0s;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: #667084;
  font-size: 10px;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #dce1e9;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 0 transparent;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.consent input:hover {
  border-color: #cfd7e3;
}

.consent input:focus-visible {
  outline: none;
  border-color: rgba(220, 107, 14, 0.72);
  box-shadow: 0 0 0 4px rgba(220, 107, 14, 0.12);
}

.consent input:checked {
  border-color: rgba(220, 107, 14, 0.9);
  background: radial-gradient(
    circle at center,
    rgba(220, 107, 14, 0.95) 0 42%,
    transparent 46% 100%
  );
}

.consent a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 8px 0 0;
  color: #7b8494;
  font-size: 10px;
  text-align: center;
}

.form-microcopy img {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  align-self: center;
  opacity: 1;
  filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
    brightness(91%) contrast(92%);
  transform: translateY(-0.5px);
}

.form-status {
  min-height: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.form-status:not(:empty) {
  min-height: 18px;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

/* Quick facts */
.quick-facts {
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 8px 30px rgba(11, 18, 32, 0.04);
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  align-items: center;
  justify-content: space-between;
  column-gap: clamp(18px, 2.2vw, 34px);
  padding-block: 16px;
}

.quick-facts article {
  position: relative;
  display: grid;
  min-height: 70px;
  grid-template-columns: 32px minmax(0, auto);
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  transition: transform 0.22s ease;
}

.quick-facts img {
  width: 32px;
  height: 32px;
  opacity: 1;
  filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
    brightness(91%) contrast(92%);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.quick-facts div {
  display: grid;
  justify-items: start;
  text-align: left;
}

.quick-facts strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition: color 0.22s ease;
}

.quick-facts span {
  color: var(--muted);
  font-size: 10px;
  transition: color 0.22s ease, transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .quick-facts article:hover {
    transform: translateY(-2px);
  }

  .quick-facts article:hover img {
    transform: translateY(-2px) scale(1.08);
    filter: invert(43%) sepia(92%) saturate(2085%) hue-rotate(359deg)
      brightness(94%) contrast(96%);
  }

  .quick-facts article:hover strong {
    color: var(--accent);
  }

  .quick-facts article:hover span {
    color: color-mix(in srgb, var(--muted) 72%, var(--ink) 28%);
    transform: translateX(1px);
  }
}

/* Generic sections */
.section {
  padding-block: 92px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-kicker {
  justify-content: center;
}

.section-heading--light {
  color: #fff;
}

.section-heading h2,
.split-copy h2,
.specs-copy h2,
.trust-layout h2,
.faq-intro h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-heading p,
.section-lead,
.specs-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.65);
}

.split-layout,
.specs-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: 72px;
}

.image-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(220, 107, 14, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.image-frame img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--large {
  aspect-ratio: 0.92;
}

.image-badge {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  isolation: isolate;
  overflow: hidden;
  padding: 16px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(220, 107, 14, 0.55);
  backdrop-filter: blur(10px) opacity(55%);
}

.image-badge::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.3) 48%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.3) 52%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  background-position: 180% 0%;
  background-size: 220% 220%;
  pointer-events: none;
  animation: motopatentBorderSweep 5.8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.image-badge > * {
  position: relative;
  z-index: 1;
}

.image-badge strong {
  font-size: 17px;
}

.image-badge span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.45;
}

/* Applications */
.section--applications {
  background: var(--surface-soft);
}

.audience-grid {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.audience-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e5e8ee;
  border-radius: 14px;
  background: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.audience-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
}

.feature-icon img {
  width: 25px;
  height: 25px;
  filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
    brightness(91%) contrast(92%);
}

.audience-grid h3 {
  margin: 1px 0 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 23px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.text-link-label {
  position: relative;
  display: inline-block;
}

.text-link-label::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.text-link-arrow {
  display: inline-flex;
  width: 19.2px;
  height: 12.8px;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.text-link-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link:hover .text-link-label::after {
  transform: scaleX(1);
}

.text-link:hover .text-link-arrow {
  transform: translateX(4px);
}

/* Specs */
.section--specs {
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(220, 107, 14, 0.12),
      transparent 30%
    ),
    linear-gradient(145deg, #0b1220, #111b2d);
}

.specs-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.specs-copy h2,
.specs-copy > p {
  color: #fff;
}

.specs-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 27px 0 19px;
}

.specs-grid article {
  display: grid;
  min-height: 124px;
  align-content: center;
  gap: 6px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.specs-grid img {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  filter: invert(49%) sepia(94%) saturate(1453%) hue-rotate(354deg)
    brightness(95%) contrast(91%);
}

.specs-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.specs-grid strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.32;
}

.specs-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.specs-copy > .button {
  margin-top: 30px;
}

.specs-image {
  aspect-ratio: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

/* Finance */
.section--finance {
  position: relative;
  overflow: hidden;
  background: #0a111e;
}

.section--finance::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(220, 107, 14, 0.13),
      transparent 28%
    ),
    radial-gradient(circle at 87% 60%, rgba(52, 84, 132, 0.13), transparent 30%);
  pointer-events: none;
}

.section--finance > .container {
  position: relative;
  z-index: 1;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 17px;
}

.finance-card {
  position: relative;
  display: flex;
  min-height: 500px;
  min-width: 0;
  flex-direction: column;
  padding: 28px 24px 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #151f30;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}

.finance-card--featured {
  color: var(--text);
  border-color: rgba(220, 107, 14, 0.5);
  background: #fff;
  transform: none;
}

.finance-ribbon {
  position: absolute;
  top: -12px;
  left: 23px;
  padding: 6px 11px;
  color: #fff;
  border-radius: 50px;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finance-type {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finance-card h3 {
  margin: 8px 0 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.finance-card--featured h3 {
  color: var(--ink);
}

.finance-price {
  display: grid;
  margin-bottom: 19px;
}

.finance-price > span,
.finance-price small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.finance-card--featured .finance-price > span,
.finance-card--featured .finance-price small {
  color: var(--muted);
}

.finance-price strong {
  color: #fff;
  font-size: 33px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.finance-card--featured .finance-price strong {
  color: var(--accent-dark);
}

.finance-details {
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.finance-details li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.finance-card--featured .finance-details li {
  border-color: var(--line);
}

.finance-details span {
  color: rgba(255, 255, 255, 0.5);
}

.finance-card--featured .finance-details span {
  color: var(--muted);
}

.finance-details strong {
  color: #fff;
  font-size: 11px;
  text-align: right;
}

.finance-card--featured .finance-details strong {
  color: var(--ink);
}

.finance-for {
  flex: 0 0 auto;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.finance-card .button {
  margin-top: 8px;
}

.finance-card--featured .finance-for {
  color: var(--muted);
}

.comparison-details {
  position: relative;
  isolation: isolate;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.comparison-details::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(220, 107, 14, 0) 0%,
    rgba(220, 107, 14, 0) 35%,
    rgba(220, 107, 14, 0.28) 48%,
    rgba(255, 155, 69, 0.72) 50%,
    rgba(220, 107, 14, 0.28) 52%,
    rgba(220, 107, 14, 0) 65%,
    rgba(220, 107, 14, 0) 100%
  );
  background-position: 180% 0%;
  background-size: 220% 220%;
  pointer-events: none;
  animation: motopatentBorderSweep 6.1s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.comparison-details[open],
.comparison-details:has(summary:focus-visible) {
  border-color: rgba(220, 107, 14, 0.82);
  box-shadow: 0 0 0 3px rgba(220, 107, 14, 0.09);
}

.comparison-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

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

.comparison-details summary > span:first-child {
  display: grid;
  font-size: 14px;
  font-weight: 800;
}

.comparison-details summary small {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-toggle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.comparison-details[open] .summary-toggle {
  font-size: 0;
}

.comparison-details[open] .summary-toggle::after {
  content: "Zwiń";
  color: var(--accent);
  font-size: 10px;
}

.table-scroll {
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.comparison-table th,
.comparison-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.comparison-table tbody th {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 600;
}

.legal-disclaimer {
  max-width: 1010px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.65;
  text-align: center;
}

/* Process */
.section--process {
  padding-block: 76px;
  background: var(--surface-soft);
}

.steps-grid {
  display: grid;
  gap: 15px;
}

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

.step-card {
  position: relative;
  min-height: 215px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(11, 18, 32, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.step-number {
  position: absolute;
  top: 17px;
  right: 19px;
  color: #edf0f4;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.05em;
  transition: color 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 13px;
  background: var(--accent-soft);
}

.step-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
    brightness(91%) contrast(92%);
}

.step-icon--vehicle img {
  width: 27px;
  height: 27px;
}

.step-icon--document img {
  width: 30px;
  height: 30px;
}

.step-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Gallery */
.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 40px;
}

.section-heading--split p {
  padding-bottom: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 250px);
  gap: 14px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 17px;
  background: #dfe3e8;
}

.gallery-card--wide {
  grid-row: 1 / span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(5, 10, 19, 0.8));
  pointer-events: none;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: grid;
  color: #fff;
}

.gallery-card figcaption strong {
  font-size: 14px;
  font-weight: 900;
}

.gallery-card figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.gallery-note {
  margin: 14px 0 0;
  color: #8a92a1;
  font-size: 10px;
  line-height: 1.55;
}

/* Trust and contact */
.section--trust {
  background: var(--surface-soft);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: center;
  gap: 60px;
}

.trust-layout > div > h2 {
  max-width: 720px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 28px;
}

.trust-grid article {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.trust-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 11px;
  background: var(--accent-soft);
}

.trust-icon img {
  width: 24px;
  height: 24px;
  filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
    brightness(91%) contrast(92%);
}

.trust-grid h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.contact-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 27px;
  color: #fff;
  border: 1px solid rgba(220, 107, 14, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(220, 107, 14, 0.2), transparent 30%),
    var(--ink);
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.18);
}

.contact-card::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(220, 107, 14, 0) 0%,
    rgba(220, 107, 14, 0) 35%,
    rgba(220, 107, 14, 0.3) 48%,
    rgba(255, 155, 69, 0.76) 50%,
    rgba(220, 107, 14, 0.3) 52%,
    rgba(220, 107, 14, 0) 65%,
    rgba(220, 107, 14, 0) 100%
  );
  background-position: 180% 0%;
  background-size: 220% 220%;
  pointer-events: none;
  animation: motopatentBorderSweep 6.4s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.contact-card-kicker {
  color: #ff9b45;
}

.contact-card h3 {
  margin: 8px 0 10px;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.contact-card-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  transition: color 0.2s ease;
}

.contact-card-phone > span {
  position: relative;
  display: inline-block;
  transition: color 0.22s ease;
}

.contact-card-phone > span::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.contact-card-phone:hover,
.contact-card-phone:focus-visible {
  color: var(--accent);
}

.contact-card-phone:hover > span::after,
.contact-card-phone:focus-visible > span::after {
  transform: scaleX(1);
}

.contact-card-phone img {
  width: 25px;
  filter: invert(55%) sepia(99%) saturate(1537%) hue-rotate(351deg)
    brightness(99%) contrast(91%);
}

.contact-card ul {
  display: grid;
  gap: 15px;
  padding: 17px 0;
  margin: 0 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.contact-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
}

.contact-card li > img {
  width: 19px;
  margin-top: 2px;
  filter: brightness(0) invert(1);
  opacity: 0.56;
}

.contact-card li span {
  display: grid;
  gap: 2px;
}

.contact-card li strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-style: normal;
  line-height: 1.3;
}

.contact-card li small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-style: normal;
  line-height: 1.3;
  transition: color 0.22s ease;
}

.contact-card li a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-top: -1px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.contact-card li a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.contact-card li a:hover,
.contact-card li a:focus-visible,
.contact-card li a:hover small,
.contact-card li a:focus-visible small {
  color: var(--accent);
}

.contact-card li a:hover::after,
.contact-card li a:focus-visible::after {
  transform: scaleX(1);
}

.contact-card-cta > img,
.contact-card-cta > span {
  position: relative;
  z-index: 1;
}

.contact-card-cta > img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  transform-origin: 50% 42%;
  animation: contactCtaPhoneRing 2.8s ease-in-out -0.12s infinite;
}

@keyframes contactCtaPhoneRing {
  0%,
  22%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  0.8% {
    transform: rotate(15deg) scale(1.06);
  }
  4% {
    transform: rotate(-13deg) scale(1.06);
  }
  7.2% {
    transform: rotate(10deg) scale(1.04);
  }
  10.4% {
    transform: rotate(-7deg) scale(1.03);
  }
  13.6% {
    transform: rotate(4deg) scale(1.01);
  }
  17% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes mobileStickyPhoneRing {
  0%,
  24%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  0.5% {
    transform: rotate(16deg) scale(1.08);
  }
  3.4% {
    transform: rotate(-14deg) scale(1.08);
  }
  6.3% {
    transform: rotate(11deg) scale(1.06);
  }
  9.2% {
    transform: rotate(-8deg) scale(1.04);
  }
  12.1% {
    transform: rotate(5deg) scale(1.02);
  }
  15.5% {
    transform: rotate(-3deg) scale(1.01);
  }
  19% {
    transform: rotate(0deg) scale(1);
  }
}

/* FAQ */
.section--faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 70px;
}

.faq-intro {
  position: sticky;
  top: 115px;
}

.faq-intro .button {
  margin-top: 24px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-more-toggle {
  display: none;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #dfe3e9;
  border-radius: 13px;
  background: var(--surface-soft);
  box-shadow: 0 7px 20px rgba(11, 18, 32, 0.035);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.faq-list summary {
  position: relative;
  padding: 17px 52px 17px 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: translateY(-50%);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list p {
  padding: 0 18px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

/* Final CTA */
.final-cta {
  position: relative;
  z-index: 2;
  overflow: visible;
  color: #fff;
  background: var(--ink);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}

.final-cta-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(5, 10, 18, 0.63),
    rgba(5, 10, 18, 0.88) 44%,
    rgba(5, 10, 18, 0.98) 65%
  );
}

.final-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(450px, 0.78fr);
  align-items: center;
  gap: 64px;
  padding-block: 76px;
}

.final-cta-copy {
  align-self: center;
}

.final-cta-copy h2 {
  max-width: 670px;
  margin: 13px 0 16px;
  font-size: clamp(39px, 4vw, 57px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.final-cta-copy > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

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

.final-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 13px;
  font-weight: 700;
}

.final-benefits img {
  width: 18px;
  filter: invert(55%) sepia(99%) saturate(1537%) hue-rotate(351deg)
    brightness(99%) contrast(91%);
}

.final-form-nudge {
  position: relative;
  display: grid;
  width: min(100%, 650px);
  min-height: 52px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px 0 8px 0;
  margin: -2px 0 24px;
}

.final-form-nudge-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(236, 118, 18, 0.32);
  border-radius: 11px;
  background: rgba(236, 118, 18, 0.12);
}

.final-form-nudge-icon img {
  width: 20px;
  height: 20px;
  filter: invert(55%) sepia(99%) saturate(1537%) hue-rotate(351deg)
    brightness(99%) contrast(91%);
}

.final-form-nudge-copy {
  display: grid;
  gap: 3px;
}

.final-form-nudge-copy strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.final-form-nudge-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.45;
}

.final-form-nudge-arrow {
  position: absolute;
  top: -17px;
  left: 272px;
  width: 366px;
  height: auto;
  max-width: none;
  opacity: 0.98;
  filter: drop-shadow(0 8px 14px rgba(220, 107, 14, 0.2));
  pointer-events: none;
}

.final-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.final-phone img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.final-phone a {
  position: relative;
  display: inline-flex;
  color: #fff;
  transition: color 0.24s ease;
}

.final-phone a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.final-phone a:hover,
.final-phone a:focus-visible {
  color: var(--accent);
}

.final-phone a:hover::after,
.final-phone a:focus-visible::after {
  transform: scaleX(1);
}

.final-phone strong {
  color: inherit;
  font-size: 15px;
}

.final-form {
  color: var(--text);
}

.final-form-head {
  margin-bottom: 19px;
}

.final-form-head span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-form-head h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.final-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  margin-bottom: 13px;
}

.final-form-grid > .field {
  min-width: 0;
}

.consent--light {
  margin-bottom: 13px;
  color: #667084;
}

.form-microcopy--light {
  margin-top: 10px;
  color: #7b8494;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  color: #d9dee8;
  background: #080e18;
  border-top: 1px solid rgba(232, 125, 25, 0.28);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 42vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(232, 125, 25, 0.72), transparent);
  transform: translateX(-50%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 1.15fr 0.75fr;
  gap: 56px;
  padding-block: 54px 40px;
}

.footer-brand {
  display: inline-flex;
}

.footer-brand img {
  width: 148px;
  height: auto;
  filter: none;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-brand:hover img,
.footer-brand:focus-visible img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(87%) saturate(1775%)
    hue-rotate(359deg) brightness(91%) contrast(92%);
  transform: scale(0.9);
}

.footer-about p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 0;
  font-style: normal;
}

.footer-column h2 {
  position: relative;
  margin: 0 0 10px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
}

.footer-office address {
  display: grid;
  gap: 14px;
  margin: 0;
  font-style: normal;
}

.footer-column > a,
.footer-office address > p {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.5;
}

.footer-column > a {
  width: fit-content;
}

.footer-column > a img,
.footer-office address > p > img {
  width: 17px;
  margin-top: 1px;
  filter: brightness(0) invert(1);
  opacity: 0.52;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-column strong,
.footer-column small {
  display: block;
  font-style: normal;
}

.footer-column strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 10.5px;
  font-weight: 700;
}

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

.footer-column > a,
.footer-legal > a {
  transition: color 0.2s ease;
}

.footer-column > a > span,
.footer-legal > a > span {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-column > a > span::after,
.footer-legal > a > span::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.footer-column > a:hover,
.footer-legal > a:hover {
  color: var(--accent);
}

.footer-column > a:hover > span::after,
.footer-legal > a:hover > span::after {
  transform: scaleX(1);
}

.footer-column > a:hover img {
  opacity: 0.9;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal > a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-credit {
  font-weight: 700;
}

.footer-link-label {
  position: relative;
}

.footer-link-label::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.footer-bottom a:hover .footer-link-label::after {
  transform: scaleX(1);
}

.footer-back-to-top-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.footer-back-to-top:hover .footer-back-to-top-arrow {
  transform: translateY(-1px);
}

/* Mobile sticky */
.mobile-sticky {
  display: none;
}

/* Form controls and financing selector */
.optional-contact {
  min-width: 0;
}

.optional-contact > summary {
  display: none;
}

.optional-contact > .field {
  display: grid;
}

.finance-field,
.financing-picker {
  min-width: 0;
  width: 100%;
}

.financing-picker > summary {
  display: grid;
  min-height: 52px;
  grid-template-columns: 19px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  color: var(--text);
  border: 1px solid #dce1e9;
  border-radius: 10px;
  background: #fff;
  list-style: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.financing-picker > summary::-webkit-details-marker {
  display: none;
}

.financing-picker > summary:hover,
.financing-picker[open] > summary {
  border-color: rgba(220, 107, 14, 0.75);
  box-shadow: 0 0 0 4px rgba(220, 107, 14, 0.1);
}

.financing-picker > summary > img {
  width: 18px;
  height: 18px;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(25%) sepia(11%) saturate(932%)
    hue-rotate(178deg) brightness(93%) contrast(86%);
  transition: filter 0.22s ease, transform 0.22s ease;
}

.financing-selected {
  min-width: 0;
  color: #3b4659;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.28;
  transition: color 0.22s ease;
}

.financing-picker.has-selection .financing-selected {
  color: var(--accent-dark);
}

.financing-picker.has-selection > summary > img {
  filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
    brightness(91%) contrast(92%);
  transform: scale(1.04);
}

.financing-picker.has-selection .financing-chevron {
  border-color: var(--accent-dark);
}

.financing-chevron {
  width: 8px;
  height: 8px;
  justify-self: end;
  border-right: 2px solid #7c8798;
  border-bottom: 2px solid #7c8798;
  transform: rotate(45deg) translateY(-2px);
  transition: border-color 0.22s ease, transform 0.2s ease;
}

.financing-picker[open] .financing-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

/* Financing menus: both form selectors open as overlays over their cards. */
.financing-menu {
  display: grid;
  width: 100%;
  gap: 2px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(220, 107, 14, 0.25);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.14);
}

.lead-card {
  z-index: 20;
}

.lead-card .finance-field,
.lead-card .financing-picker,
.final-form .finance-field,
.final-form .financing-picker {
  position: relative;
}

.lead-card .financing-picker[open],
.final-form .financing-picker[open] {
  z-index: 120;
}

.lead-card .financing-menu,
.final-form .financing-menu {
  position: absolute;
  z-index: 130;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  width: 100%;
  max-height: 360px;
  margin-top: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 24px 64px rgba(11, 18, 32, 0.24);
}

.lead-card .financing-picker[data-placement="top"] .financing-menu,
.final-form .financing-picker[data-placement="top"] .financing-menu {
  top: auto;
  bottom: calc(100% + 8px);
}

.financing-option {
  position: relative;
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: flex-start;
  gap: 11px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease;
}

.financing-option:hover,
.financing-option.is-selected {
  border-color: rgba(220, 107, 14, 0.35);
  background: var(--accent-soft);
}

.financing-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.financing-option-mark {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid #a7b0be;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.financing-option.is-selected .financing-option-mark {
  border-color: var(--accent);
  background: var(--accent);
}

.financing-option:has(input:focus-visible) {
  outline: 3px solid rgba(220, 107, 14, 0.28);
  outline-offset: 1px;
}

.financing-option-copy strong,
.financing-option-copy small {
  display: block;
}

.financing-option-copy strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.28;
}

.financing-option-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.48;
}

.financing-option--help {
  border-top-color: var(--line);
  border-radius: 4px 4px 11px 11px;
}

.final-form .financing-picker > summary {
  min-height: 48px;
}

.finance-more,
.finance-more-grid {
  display: contents;
}

.finance-more-toggle,
.gallery-swipe-hint {
  display: none;
}

/* Interactions */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.09);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.site-header.is-menu-open,
.site-header:focus-within {
  transform: translateY(0);
}

.has-interactions .hero-copy {
  animation: hero-copy-in 0.65s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.has-interactions .lead-card {
  animation: hero-card-in 0.72s 0.08s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.reveal--scale {
  transform: translateY(12px) scale(0.985);
}

.reveal.reveal--from-left {
  transform: translateX(-24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.finance-card.is-selected {
  border-color: rgba(236, 121, 25, 0.9);
  box-shadow: 0 20px 52px rgba(220, 107, 14, 0.2);
}

.finance-card.is-selected:not(.finance-card--featured) {
  background: #19263a;
}

.faq-list details[open] {
  border-color: rgba(220, 107, 14, 0.35);
  background: #fffaf5;
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.07);
}

.faq-list details[open] p {
  animation: faq-answer-in 0.24s ease both;
}

@media (hover: hover) and (pointer: fine) {
  .specs-grid article:hover {
    border-color: rgba(220, 107, 14, 0.42);
    background: rgba(255, 255, 255, 0.085);
    transform: translateY(-3px);
  }

  .finance-card:hover {
    border-color: rgba(220, 107, 14, 0.82);
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  }

  .step-card:hover .step-number {
    color: var(--accent);
  }

  .step-card:hover,
  .trust-grid article:hover {
    border-color: rgba(220, 107, 14, 0.28);
    box-shadow: 0 18px 38px rgba(11, 18, 32, 0.08);
    transform: translateY(-3px);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */

@media (max-width: 1120px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav > a:not(.main-nav-phone) {
    font-size: 12px;
  }

  .header-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.78fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .split-layout,
  .specs-layout {
    gap: 48px;
  }

  .final-cta-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.82fr 1fr 0.82fr;
    gap: 34px;
  }
}

@media (min-width: 921px) {
  .faq-layout {
    grid-template-columns: minmax(470px, 0.92fr) minmax(0, 1.08fr);
    gap: 52px;
  }

  .faq-intro h2 {
    font-size: 35px;
  }

  .financing-option {
    padding: 8px 11px;
  }

  .financing-option-copy strong {
    font-size: 12px;
  }

  .financing-option-copy small {
    margin-top: 2px;
    font-size: 9.5px;
    line-height: 1.38;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    height: 68px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 105px;
  }

  .menu-button {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(11, 18, 32, 0.12);
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.25s ease,
      padding 0.25s ease,
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .main-nav.is-open {
    max-height: 500px;
    padding-block: 12px 18px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav > a:not(.main-nav-phone) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 4px 5px;
    color: var(--accent-dark);
    font-size: 15px;
    font-weight: 900;
  }

  .main-nav-phone img {
    width: 19px;
    filter: invert(43%) sepia(87%) saturate(1775%) hue-rotate(359deg)
      brightness(91%) contrast(92%);
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    inset: 0;
  }

  .hero-visual img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    object-position: center center;
  }

  .final-cta-bg img {
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(5, 11, 21, 0.82),
        rgba(5, 11, 21, 0.97) 60%,
        rgba(5, 11, 21, 1)
      ),
      linear-gradient(90deg, rgba(5, 11, 21, 0.9), rgba(5, 11, 21, 0.5));
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 55px 60px;
  }

  .hero-copy {
    max-width: 740px;
    padding: 0;
  }

  .lead-card {
    max-width: 680px;
  }

  .quick-facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px 30px;
    padding-block: 16px;
  }

  .quick-facts article {
    justify-content: center;
  }

  .section {
    padding-block: 72px;
  }

  .section--process {
    padding-block: 60px;
  }

  .split-layout,
  .specs-layout,
  .trust-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .image-frame--large {
    aspect-ratio: 1.35;
  }

  .specs-image {
    max-height: 560px;
    aspect-ratio: 1.35;
  }

  .finance-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

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

  .gallery-grid {
    grid-template-rows: repeat(2, 210px);
  }

  .contact-card {
    max-width: 600px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta::after {
    background: linear-gradient(
      180deg,
      rgba(5, 10, 18, 0.72),
      rgba(5, 10, 18, 0.98) 47%
    );
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 65px;
  }

  .final-form {
    max-width: 700px;
  }

  .final-form-nudge {
    width: min(100%, 610px);
    padding-right: 0;
    margin-bottom: 34px;
  }

  .final-form-nudge-arrow {
    top: 12px;
    left: 248px;
    width: 174px;
    height: auto;
    transform: rotate(12deg);
    transform-origin: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
  }
}

@media (min-width: 921px) and (max-height: 920px) {
  .hero,
  .hero-grid {
    min-height: calc(100svh - 74px);
  }

  .hero-grid {
    gap: 42px;
    padding-block: 28px;
  }

  .hero-copy {
    padding-block: 0;
  }

  .hero h1 {
    margin: 10px 0 14px;
    font-size: clamp(43px, 4vw, 58px);
  }

  .hero h1 span {
    margin-top: 6px;
  }

  .hero-lead {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-price {
    padding: 13px 16px;
    border-radius: 13px;
  }

  .hero-price-label {
    font-size: 10px;
  }

  .hero-price-value strong {
    font-size: 34px;
  }

  .hero-price-value span,
  .hero-price p {
    font-size: 10px;
  }

  .hero-actions {
    margin-top: 15px;
  }

  .hero-proof {
    gap: 7px 14px;
    margin-top: 14px;
  }

  .hero-proof li {
    font-size: 10px;
  }

  .hero-proof img {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .lead-card {
    padding: 20px 22px;
  }

  .lead-card h2 {
    font-size: 23px;
  }

  .lead-card > p {
    margin: 7px 0 13px;
    font-size: 12px;
    line-height: 1.45;
  }

  .lead-form {
    gap: 8px;
  }

  .field {
    gap: 4px;
  }

  .field-label {
    font-size: 10px;
  }

  .field-control {
    min-height: 42px;
  }

  .field-control input {
    height: 40px;
    font-size: 13px;
  }

  .financing-picker > summary {
    min-height: 45px;
    padding: 7px 11px;
  }

  .financing-selected {
    font-size: 11px;
  }

  .consent {
    font-size: 9px;
  }

  .lead-card .button--full {
    min-height: 45px;
  }

  .form-microcopy {
    margin-top: 3px;
    font-size: 9px;
  }
}

@media (min-width: 921px) and (max-height: 790px) {
  .lead-card > p {
    display: none;
  }

  .hero-grid {
    padding-block: 20px;
  }

  .hero h1 {
    font-size: clamp(40px, 3.8vw, 53px);
  }

  .hero-lead {
    max-width: 590px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 0;
  }

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

  .hero-grid {
    gap: 22px;
    padding-block: 30px 38px;
  }

  .hero-visual,
  .final-cta-bg {
    overflow: hidden;
    background: #050b15;
  }

  .hero-visual img,
  .final-cta-bg img {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    object-fit: contain;
    object-position: center top;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(5, 11, 21, 0.38) 0%,
        rgba(5, 11, 21, 0.58) 30%,
        rgba(5, 11, 21, 0.86) 66%,
        rgba(5, 11, 21, 0.98) 100%
      ),
      linear-gradient(90deg, rgba(5, 11, 21, 0.58), rgba(5, 11, 21, 0.16));
  }

  .final-cta::after {
    background: linear-gradient(
      180deg,
      rgba(5, 10, 18, 0.38) 0%,
      rgba(5, 10, 18, 0.62) 34%,
      rgba(5, 10, 18, 0.9) 70%,
      rgba(5, 10, 18, 0.99) 100%
    );
  }

  .hero h1 {
    margin-top: 9px;
    font-size: clamp(35px, 10vw, 43px);
    line-height: 1;
  }

  .hero h1 span {
    margin-top: 6px;
    font-size: 0.56em;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .hero-price {
    width: 100%;
    padding: 14px 15px;
  }

  .hero-price-value {
    display: grid;
    gap: 2px;
  }

  .hero-price-value strong {
    font-size: 32px;
  }

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

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-proof {
    display: grid;
    gap: 7px;
    margin-top: 18px;
  }

  .hero-proof li {
    font-size: 11px;
  }

  .hero-proof li:nth-child(3) {
    display: none;
  }

  .lead-card,
  .final-form {
    padding: 20px 16px;
    border-radius: 19px;
  }

  .lead-card h2 {
    font-size: 23px;
  }

  .lead-card > p {
    margin-bottom: 17px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .field-control {
    min-height: 50px;
  }

  .field-control input {
    height: 48px;
    font-size: 16px;
  }

  .form-microcopy,
  .consent {
    font-size: 10.5px;
    line-height: 1.45;
  }

  .quick-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
    padding-block: 11px;
  }

  .quick-facts article {
    min-height: 60px;
    grid-template-columns: 26px minmax(0, auto);
    justify-content: start;
    gap: 9px;
    padding: 6px 2px;
  }


  .quick-facts img {
    width: 26px;
    height: 26px;
  }

  .quick-facts strong {
    font-size: 12px;
  }

  .quick-facts span {
    font-size: 9.5px;
  }

  .section {
    padding-block: 48px;
  }

  .section--process,
  .section--faq {
    padding-block: 44px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .split-copy h2,
  .specs-copy h2,
  .trust-layout h2,
  .faq-intro h2 {
    font-size: 32px;
    line-height: 1.06;
  }

  .section-heading p,
  .section-lead,
  .specs-copy > p,
  .faq-intro > p {
    font-size: 13.5px;
    line-height: 1.56;
  }

  .split-layout,
  .specs-layout,
  .trust-layout,
  .faq-layout {
    gap: 27px;
  }

  .image-frame--large,
  .specs-image {
    aspect-ratio: 1.04;
  }

  .audience-grid {
    gap: 10px;
    margin-top: 22px;
  }

  .audience-grid article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 13px;
  }

  .audience-grid h3 {
    font-size: 14px;
  }

  .audience-grid p {
    font-size: 12px;
    line-height: 1.45;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
  }

  .feature-icon img {
    width: 22px;
    height: 22px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-block: 22px 17px;
  }

  .specs-grid article {
    min-height: 100px;
    padding: 13px;
  }

  .specs-grid img {
    width: 23px;
    height: 23px;
  }

  .specs-grid span {
    font-size: 10px;
  }

  .specs-grid strong {
    font-size: 12.5px;
  }

  .specs-note {
    font-size: 11px;
    line-height: 1.5;
  }

  .finance-card {
    min-height: auto;
    padding: 24px 17px 18px;
  }

  .finance-card h3 {
    margin-bottom: 15px;
    font-size: 21px;
  }

  .finance-price {
    margin-bottom: 15px;
  }

  .finance-price strong {
    font-size: 29px;
  }

  .finance-details {
    margin-bottom: 15px;
  }

  .finance-details li {
    min-height: 38px;
    padding: 8px 0;
    font-size: 12px;
  }

  .finance-details strong {
    font-size: 12px;
  }

  .finance-for {
    margin-bottom: 19px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .finance-card .button {
    min-height: 48px;
    font-size: 13px;
  }

  .comparison-details {
    margin-top: 18px;
  }

  .comparison-details summary {
    padding: 14px;
  }

  .legal-disclaimer {
    margin-top: 16px;
    font-size: 10.5px;
    line-height: 1.55;
  }

  .steps-grid--three {
    position: relative;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .step-card {
    display: grid;
    min-height: auto;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 4px;
    padding: 17px 16px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step-number {
    top: 12px;
    right: 15px;
    font-size: 28px;
  }

  .step-card h3 {
    align-self: end;
    padding-right: 42px;
    margin: 0;
    font-size: 16px;
  }

  .step-card p {
    padding-right: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .gallery-card,
  .gallery-card--wide {
    width: 82vw;
    min-width: 82vw;
    height: 300px;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .gallery-swipe-hint {
    display: block;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 700;
    text-align: right;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 22px;
  }

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

  .trust-icon {
    width: 44px;
    height: 44px;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .trust-icon img {
    width: 22px;
    height: 22px;
  }

  .trust-grid h3 {
    align-self: end;
    margin: 0;
    font-size: 14px;
  }

  .trust-grid p {
    font-size: 11.5px;
    line-height: 1.45;
  }

  .contact-card {
    padding: 22px 18px;
  }

  .contact-card h3 {
    margin-bottom: 9px;
    font-size: 23px;
  }

  .contact-card-phone {
    margin-bottom: 16px;
    font-size: 21px;
  }

  .faq-intro .button {
    display: none;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-list:not(.is-expanded) details:nth-of-type(n + 6) {
    display: none;
  }

  .faq-list summary {
    min-height: 54px;
    padding: 14px 44px 14px 14px;
    font-size: 12.5px;
    line-height: 1.35;
  }

  .faq-list p {
    padding: 0 14px 15px;
    font-size: 12px;
    line-height: 1.55;
  }

  .faq-more-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    color: var(--accent-dark);
    border: 1px solid rgba(220, 107, 14, 0.28);
    border-radius: 12px;
    background: rgba(220, 107, 14, 0.08);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
  }

  .final-cta-grid {
    gap: 28px;
    padding-block: 48px;
  }

  .final-cta-copy h2 {
    font-size: 36px;
  }

  .final-benefits {
    gap: 8px;
    margin-block: 20px;
  }

  .final-benefits li {
    font-size: 12px;
  }

  .final-form-nudge {
    width: 100%;
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 5px 0;
    margin: 0 0 22px;
  }

  .final-form-nudge-icon {
    width: 36px;
    height: 36px;
  }

  .final-form-nudge-copy strong {
    font-size: 12px;
  }

  .final-form-nudge-copy small {
    font-size: 9.5px;
  }

  .final-form-nudge-arrow {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 38px 26px;
  }

  .footer-about p {
    max-width: 320px;
  }

  .footer-column h2 {
    margin-bottom: 8px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding-block: 20px 18px;
    font-size: 10px;
    line-height: 1.55;
  }

  .footer-bottom p {
    max-width: 100%;
  }

  .footer-back-to-top {
    width: fit-content;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
  }

  .mobile-sticky {
    position: fixed;
    z-index: 1100;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    min-height: 66px;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(8, 14, 24, 0.92);
    box-shadow: 0 16px 38px rgba(5, 10, 18, 0.34);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(calc(100% + 22px));
    visibility: hidden;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.32s ease;
  }

  .mobile-sticky.is-visible {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-sticky a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    overflow: hidden;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 11.5px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      background-position 0.45s ease;
  }

  .mobile-sticky a:active {
    transform: scale(0.98);
  }

  .mobile-sticky a:first-child {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.055);
  }

  .mobile-sticky a:first-child img {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    filter: brightness(0) invert(1);
    transform-origin: 50% 42%;
  }

  .mobile-sticky.is-visible a:first-child img {
    animation: mobileStickyPhoneRing 2.35s ease-in-out -0.12s infinite;
  }

  .mobile-sticky a:last-child {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(120deg, #f58b22 0%, var(--accent) 52%, #d85d05 100%);
    background-size: 160% 100%;
    box-shadow: 0 10px 22px rgba(220, 107, 14, 0.26);
    font-size: 11px;
  }

  .mobile-sticky a:last-child:active {
    background-position: 100% center;
  }

  .optional-contact {
    display: grid;
    gap: 7px;
  }

  .optional-contact > summary {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px;
    color: #657084;
    font-size: 11px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
  }

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

  .optional-contact > summary::after {
    content: "+";
    color: var(--accent);
    font-size: 18px;
    font-weight: 900;
  }

  .optional-contact[open] > summary::after {
    content: "-";
  }

  .optional-contact:not([open]) > .field {
    display: none;
  }

  .financing-menu {
    gap: 2px;
    padding: 7px;
  }

  .financing-option {
    padding: 9px 10px;
  }

  .financing-option-copy strong {
    font-size: 12px;
  }

  .financing-option-copy small {
    font-size: 10px;
  }

  .finance-grid {
    display: block;
    max-width: 100%;
  }

  .finance-more,
  .finance-more-grid {
    display: block;
  }

  .finance-more {
    margin-top: 12px;
  }

  .finance-more-toggle {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    font: inherit;
    font-size: 12.5px;
    font-weight: 900;
    cursor: pointer;
  }

  .finance-more-toggle span {
    padding: 4px 8px;
    color: #ffc58f;
    border-radius: 999px;
    background: rgba(220, 107, 14, 0.15);
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .finance-more-grid {
    display: none;
    gap: 12px;
    margin-top: 12px;
  }

  .finance-more.is-open .finance-more-grid {
    display: grid;
  }

  .finance-more.is-open .finance-more-toggle {
    border-color: rgba(220, 107, 14, 0.5);
    background: rgba(220, 107, 14, 0.1);
  }

  .image-badge {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 13px 15px;
  }

  .image-badge strong {
    font-size: 15px;
  }

  .image-badge span {
    font-size: 11px;
  }

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

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

  .hero h1 {
    font-size: 35px;
  }

  .hero-price-value strong {
    font-size: 31px;
  }

  .section-heading h2,
  .split-copy h2,
  .specs-copy h2,
  .trust-layout h2,
  .faq-intro h2,
  .final-cta-copy h2 {
    font-size: 31px;
  }

  .specs-grid article {
    min-height: 102px;
  }

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

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

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