:root {
  --bg: #f5f0e8;
  --text: #070707;
  --muted: #666666;
  --accent: #ff3c00;
  --white: #ffffff;
  --black: #050505;
  --line: rgba(10, 10, 10, 0.18);
  --max: 1320px;
  --font-display: "Unbounded", "Inter Tight", Arial, sans-serif;
  --font-body: "Inter Tight", Arial, sans-serif;
  --h1-size: clamp(70px, 5.6vw, 82px);
  --h2-size: clamp(46px, 5vw, 68px);
  --h3-size: 26px;
  --body-size: 22px;
  --text-size: 18px;
  --small-size: 13px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

main,
.hero {
  overflow-x: clip;
}

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

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

.mobile-break {
  display: none;
}

.desktop-space {
  display: inline;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  padding: 10px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 16px;
}

.nav a:hover,
.mobile-panel a:hover {
  color: var(--accent);
}

.header-phone {
  margin-left: auto;
  color: var(--muted);
  font-size: 28px;
  font-weight: 800;
  white-space: nowrap;
}

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

.social-icon,
.mobile-top-socials a {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 60, 0, 0.2);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-icon img,
.mobile-top-socials img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.social-icon.large {
  width: 72px;
  height: 72px;
}

.social-icon.large img {
  width: 48px;
  height: 48px;
}

.mobile-top-socials {
  display: none;
}

.primary-btn,
.outline-btn,
.lead-form button {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 2px solid var(--accent);
  border-radius: 0;
  padding: 0 32px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn,
.lead-form button {
  background: var(--accent);
  color: var(--white);
}

.outline-btn {
  background: transparent;
  color: var(--accent);
}

.outline-btn.small {
  width: 64px;
  min-height: 64px;
  padding: 0;
}

.primary-btn:hover,
.outline-btn:hover,
.social-icon:hover,
.mobile-top-socials a:hover,
.lead-form button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 58px;
  height: 58px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 17px;
  width: 24px;
  height: 2px;
  background: var(--bg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) { top: 20px; }
.menu-toggle span:nth-child(2) { top: 28px; }
.menu-toggle span:nth-child(3) { top: 36px; }

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  z-index: 35;
  top: 0;
  right: 0;
  width: min(86vw, 320px);
  min-height: 100svh;
  padding: 96px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bg);
  color: var(--muted);
  font-size: 22px;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.18);
}

.menu-open .mobile-panel {
  transform: translateX(0);
}

.section-inner {
  width: min(var(--max), calc(100vw - 120px));
  margin: 0 auto;
}

.sticky-cta {
  display: none;
}

.hero {
  padding-top: 126px;
  min-height: 865px;
}

.hero-grid {
  position: relative;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 66vw);
}

.kicker {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.kicker span {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
.stats dt,
.header-phone {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: var(--h1-size);
  line-height: 0.98;
  font-weight: 900;
}

h1 strong,
h2 strong {
  color: var(--accent);
  font-weight: 900;
}

h1 strong {
  display: inline-block;
  border-bottom: 5px solid var(--accent);
}

.hero-copy p {
  margin: 34px 0 36px;
  color: var(--muted);
  font-size: var(--body-size);
  line-height: 1.28;
}

.lead-form {
  display: flex;
  gap: 24px;
}

.lead-form input {
  width: 170px;
  height: 74px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 0;
  padding: 0 24px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 72%, #f8f8f8 100%);
  color: var(--text);
  font-size: var(--text-size);
  font-weight: 600;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lead-form input::placeholder {
  color: #6f6f6f;
  opacity: 1;
  font-weight: 500;
}

.lead-form input:focus {
  border-color: rgba(255, 60, 0, 0.75);
  background: #ffffff;
  box-shadow: inset 4px 0 0 var(--accent), 0 0 0 3px rgba(255, 60, 0, 0.12);
}

.lead-form button {
  min-width: 180px;
  height: 74px;
}

.hero-contact {
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--text-size);
}

.hero-contact a {
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

.hero-art {
  position: absolute;
  z-index: 1;
  top: 82px;
  right: -18px;
  width: min(840px, 62vw);
  min-height: 560px;
  pointer-events: none;
}

.hero-art img {
  position: absolute;
  right: -30px;
  bottom: 4px;
  width: 100%;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.16));
}

.market-badge {
  position: absolute;
  top: 18px;
  right: 0;
  width: 168px;
  height: 168px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.45);
}

.market-badge b {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.market-badge span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.stats {
  position: relative;
  z-index: 3;
  margin: 62px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
}

.trust-row {
  position: relative;
  z-index: 3;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.62);
}

.trust-item {
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: var(--small-size);
  text-transform: uppercase;
}

.calculator {
  padding-top: 72px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.calculator-copy {
  position: sticky;
  top: 116px;
}

.calculator-copy h2 {
  margin-bottom: 28px;
  text-align: left;
}

.calculator-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--body-size);
  line-height: 1.34;
}

.calc-promise {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.calc-promise b {
  width: fit-content;
  padding: 11px 15px;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.calculator-panel {
  padding: 34px;
  background: var(--black);
  color: var(--white);
  box-shadow: 18px 18px 0 var(--accent);
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.calculator-form label {
  display: grid;
  gap: 9px;
}

.calculator-form span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.calculator-form input,
.calculator-form select {
  width: 100%;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 0 18px;
  background: #171717;
  color: var(--white);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.calculator-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 22px) 27px, calc(100% - 14px) 27px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.calculator-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.calculator-form input:focus,
.calculator-form select:focus {
  border-color: rgba(255, 60, 0, 0.95);
  background-color: #101010;
  box-shadow: 0 0 0 3px rgba(255, 60, 0, 0.18);
}

.calculator-form button {
  grid-column: 1 / -1;
  min-height: 70px;
  border: 0;
  background: var(--accent);
  color: var(--white);
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.calculator-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.calculator-result {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--white);
  color: var(--text);
}

.calculator-result span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.calculator-result strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.calculator-result p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: var(--text-size);
  line-height: 1.35;
}

.calculator-lead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.calculator-lead input[type="tel"] {
  width: 100%;
}

.stats div {
  min-height: 98px;
  padding: 16px 38px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats dt {
  font-size: clamp(40px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.stats dt span {
  font-family: var(--font-display);
  font-size: 0.58em;
}

.stats dd {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--small-size);
  text-transform: uppercase;
}

.marquee {
  margin: 18px -30px 0;
  height: 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
  transform: rotate(-2deg);
}

.marquee div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 86px 0;
  scroll-margin-top: 104px;
}

.section h2 {
  margin: 0 0 66px;
  text-align: center;
  font-size: var(--h2-size);
  line-height: 1.05;
  font-weight: 900;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.compare-card {
  min-height: 380px;
  padding: 36px;
}

.compare-card.light {
  background: var(--white);
  color: var(--text);
}

.compare-card.dark {
  background: var(--black);
  color: var(--white);
}

.compare-title {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid currentColor;
}

.compare-title h3 {
  margin: 0;
  font-size: var(--h3-size);
  font-weight: 900;
}

.compare-title span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  font-size: 38px;
  line-height: 1;
}

.bad {
  background: #ffc3b8;
  color: var(--accent);
  font-weight: 300;
}

.good {
  background: var(--accent);
  color: var(--muted);
  font-weight: 900;
}

.compare-card ul,
.final-cta ul {
  margin: 42px 0 0;
  padding-left: 22px;
}

.compare-card li {
  margin: 16px 0;
  color: inherit;
  font-size: var(--body-size);
  line-height: 1.25;
}

.compare-card.light li {
  color: var(--muted);
}

.center-btn {
  margin: 52px auto 0;
  width: fit-content;
}

.steps {
  padding-top: 30px;
}

.guarantees {
  background: var(--black);
  color: var(--white);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.guarantees-copy h2 {
  margin: 0 0 24px;
  text-align: left;
}

.guarantees-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--body-size);
  line-height: 1.35;
}

.guarantee-list {
  display: grid;
  gap: 18px;
}

.guarantee-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px 24px;
  padding: 26px;
  background: #111111;
  border-left: 3px solid var(--accent);
}

.guarantee-card span {
  grid-row: span 2;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
}

.guarantee-card h3 {
  margin: 0;
  font-size: var(--h3-size);
}

.guarantee-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--text-size);
  line-height: 1.35;
}

.mini-lead {
  grid-column: 1 / -1;
  padding: 26px;
  background: var(--accent);
}

.mini-lead input {
  flex: 1 1 0;
  height: 62px;
  border-color: rgba(5, 5, 5, 0.16);
  background: #fff;
  color: var(--black);
  font-size: 20px;
}

.mini-lead button {
  border-color: var(--black);
  background: var(--black);
}

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

.steps-grid article {
  padding-top: 18px;
  border-top: 2px solid var(--accent);
}

.steps-grid span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 34px 0 14px;
  font-size: var(--h3-size);
  font-weight: 900;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-size);
  line-height: 1.35;
}

.cars h2 {
  text-align: left;
  width: min(880px, 100%);
  margin-left: 0;
  margin-right: auto;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 54px;
}

.cars-grid article {
  background: var(--white);
  padding: 30px;
}

.cars-grid img {
  width: 100%;
  aspect-ratio: 1.43;
  object-fit: cover;
  margin-bottom: 22px;
}

.cars-grid h3 {
  margin: 0 0 10px;
  font-size: var(--h3-size);
  font-weight: 900;
}

.cars-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-size);
}

.cars-cta {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.cars-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--h3-size);
  font-weight: 800;
}

.stories {
  background: var(--white);
}

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

.story-card {
  padding: 28px;
  background: #f7f3ec;
}

.story-head {
  display: flex;
  gap: 16px;
  align-items: center;
}

.story-head img {
  width: 100px;
  height: 60px;
  object-fit: cover;
}

.story-head h3 {
  margin: 0 0 6px;
  font-size: var(--text-size);
  font-weight: 900;
}

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

.price-box {
  margin: 26px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  padding: 16px;
  background: var(--white);
}

.price-box span {
  color: var(--muted);
  font-size: 13px;
}

.price-box b {
  font-weight: 900;
}

.accent {
  color: var(--accent);
}

blockquote {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-size);
  line-height: 1.35;
  font-style: italic;
}

cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
}

.deals {
  margin-top: 58px;
  background: var(--bg);
}

.deals h3 {
  margin: 0;
  padding: 26px 36px;
  font-size: var(--h3-size);
  font-weight: 900;
}

.deals div {
  display: grid;
  grid-template-columns: 160px 1fr 150px;
  gap: 24px;
  align-items: center;
  padding: 20px 36px;
  border-top: 1px solid var(--line);
}

.deals time,
.deals span {
  color: var(--muted);
  font-size: 16px;
}

.deals p {
  margin: 0;
  font-size: var(--text-size);
  font-weight: 700;
}

.final-cta {
  background: var(--black);
  color: var(--white);
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 90px;
  align-items: start;
}

.final-cta h2 {
  text-align: left;
  margin-bottom: 32px;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--body-size);
  line-height: 1.35;
}

.final-cta li {
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-size);
}

.call-label {
  margin-top: 42px !important;
}

.big-phone {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
}

.messenger-row {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.form-panel {
  position: relative;
  padding: 36px 30px 30px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-panel::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  border: 1px solid rgba(255, 60, 0, 0.9);
}

.form-panel h3 {
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: var(--h3-size);
  line-height: 1.25;
}

.form-panel .lead-form {
  flex-direction: column;
  gap: 15px;
}

.form-panel input,
.form-panel button {
  width: 100%;
  height: 58px;
}

.form-panel input {
  background: #232323;
  color: var(--white);
}

.form-status {
  margin-top: 14px;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.35;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-right {
  transform: translate3d(48px, 18px, 0) scale(0.98);
}

.reveal-scale {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-art.reveal.is-visible img {
  animation: carFloat 7s ease-in-out 0.4s infinite;
}

@keyframes carFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@media (max-width: 1180px) {
  .site-header {
    height: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    pointer-events: none;
  }

  .nav,
  .header-phone,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    z-index: 50;
    top: 18px;
    right: 18px;
    display: block;
    margin: 0;
    pointer-events: auto;
    box-shadow: 0 14px 34px rgba(255, 60, 0, 0.22);
  }

  .mobile-top-socials {
    position: fixed;
    z-index: 50;
    top: 18px;
    right: 88px;
    display: flex;
    gap: 10px;
    pointer-events: auto;
  }

  .mobile-top-socials a {
    width: 58px;
    height: 58px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  }

  .mobile-top-socials img {
    width: 38px;
    height: 38px;
  }

  .section-inner {
    width: min(var(--max), calc(100vw - 40px));
  }

  .hero {
    padding-top: 106px;
    min-height: 0;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    width: min(720px, 100%);
  }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 360px;
  }

  .hero-art img {
    right: -40px;
    width: min(620px, 96vw);
  }

  .market-badge {
    right: 12px;
    top: 14px;
  }

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

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .compare-grid,
  .final-grid,
  .guarantees-grid,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .calculator-copy {
    position: static;
  }

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

@media (max-width: 720px) {
  :root {
    --h1-size: clamp(36px, 10.4vw, 44px);
    --h2-size: clamp(34px, 10vw, 42px);
    --h3-size: 24px;
    --body-size: 19px;
    --text-size: 17px;
    --small-size: 12px;
  }

  .site-header {
    height: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    pointer-events: none;
  }

  .section-inner {
    width: calc(100vw - 40px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  body {
    padding-bottom: 74px;
  }

  .sticky-cta {
    position: fixed;
    z-index: 45;
    left: 50%;
    right: auto;
    bottom: 12px;
    width: min(366px, calc(100vw - 24px));
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
  }

  .sticky-cta a {
    min-height: 50px;
    display: grid;
    place-items: center;
    padding: 0 8px;
    font-size: 15px;
    font-weight: 900;
  }

  .sticky-call {
    background: var(--white);
    color: var(--black);
  }

  .sticky-lead {
    background: var(--accent);
    color: var(--white);
  }

  .hero {
    padding-top: 96px;
  }

  .menu-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    left: auto;
    width: 60px;
    height: 60px;
    margin: 0;
    pointer-events: auto;
    box-shadow: 0 14px 34px rgba(255, 60, 0, 0.22);
  }

  .mobile-top-socials {
    top: 16px;
    right: 84px;
    gap: 8px;
  }

  .mobile-top-socials a {
    width: 60px;
    height: 60px;
  }

  .mobile-top-socials img {
    width: 39px;
    height: 39px;
  }

  .menu-toggle span {
    left: 18px;
  }

  .menu-toggle span:nth-child(1) { top: 21px; }
  .menu-toggle span:nth-child(2) { top: 29px; }
  .menu-toggle span:nth-child(3) { top: 37px; }

  .kicker {
    display: block;
    font-size: 10px;
    letter-spacing: 0.32em;
    line-height: 1.5;
    white-space: normal;
  }

  .kicker span {
    display: block;
    width: 52px;
    margin-bottom: 10px;
  }

  h1 {
    max-width: 100%;
    font-size: var(--h1-size);
    line-height: 1.06;
    overflow-wrap: normal;
  }

  h1 strong {
    display: inline;
    border-bottom-width: 4px;
  }

  .mobile-break {
    display: inline;
  }

  .desktop-space {
    display: none;
  }

  .hero-copy p {
    margin: 28px 0;
    font-size: var(--body-size);
    max-width: 320px;
    overflow-wrap: break-word;
  }

  .lead-form,
  .hero-form {
    flex-direction: column;
    gap: 12px;
  }

  .lead-form input,
  .lead-form button {
    width: 100%;
  }

  .hero-art {
    min-height: 430px;
    margin-top: 34px;
    overflow: visible;
  }

  .hero-art img {
    right: auto;
    left: 50%;
    bottom: -12px;
    width: min(760px, 178vw);
    max-width: none;
    transform: translateX(-44%);
  }

  .hero-art.reveal,
  .hero-art.reveal.is-visible {
    transform: none;
  }

  .market-badge {
    display: none;
  }

  .stats {
    width: 100%;
    margin-top: -72px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
  }

  .stats div {
    min-width: 0;
    min-height: 112px;
    padding: 18px 22px;
  }

  .stats dt {
    font-size: 32px;
    white-space: nowrap;
  }

  .stats dt span {
    font-size: 20px;
  }

  .marquee {
    height: 90px;
    margin-top: 30px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .trust-item {
    padding: 15px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .marquee span {
    font-size: 24px;
  }

  .section {
    padding: 70px 0;
  }

  .section h2 {
    margin-bottom: 42px;
    font-size: var(--h2-size);
  }

  .compare-grid,
  .steps-grid,
  .cars-grid,
  .story-grid,
  .guarantee-list,
  .calculator-form {
    grid-template-columns: 1fr;
  }

  .calculator {
    padding-top: 64px;
  }

  .calculator-grid {
    gap: 28px;
  }

  .calculator-copy h2 {
    text-align: left;
  }

  .calculator-panel {
    padding: 20px;
    box-shadow: 8px 8px 0 var(--accent);
  }

  .calculator-form input,
  .calculator-form select {
    height: 58px;
    font-size: 16px;
  }

  .calculator-form button {
    min-height: 64px;
    font-size: 18px;
    line-height: 1.15;
    padding: 0 18px;
  }

  .calculator-result {
    padding: 20px 20px 92px;
  }

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

  .compare-card {
    padding: 28px;
  }

  .compare-title h3 {
    font-size: var(--h3-size);
  }

  .compare-card li {
    font-size: var(--text-size);
  }

  .cars-cta,
  .messenger-row,
  .mini-lead {
    align-items: stretch;
    flex-direction: column;
  }

  .guarantees-grid {
    gap: 34px;
  }

  .guarantees-copy h2 {
    text-align: left;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .guarantee-card span {
    grid-row: auto;
  }

  .cars-cta p {
    font-size: var(--h3-size);
  }

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

  .final-grid {
    gap: 52px;
  }

  .big-phone {
    font-size: 27px;
  }

  .form-panel {
    padding: 30px 22px 22px;
  }
}

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