:root {
  --milk: #f4f0e8;
  --paper: #fbfaf6;
  --graphite: #111412;
  --graphite-2: #202622;
  --white: #fff;
  --muted: #77736b;
  --line: rgba(17, 20, 18, .14);
  --yellow: #ffd21f;
  --yellow-soft: #fff1a8;
  --radius: 14px;
  --wide: 1440px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 62px; }
body {
  margin: 0;
  color: var(--graphite);
  background: var(--milk);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { z-index: 45; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { border: 0; }
img { display: block; max-width: 100%; }
:where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17,20,18,.72), rgba(17,20,18,0));
  transition: min-height .25s var(--ease), background .25s var(--ease);
}
.site-header.compact {
  min-height: 62px;
  background: rgba(17, 20, 18, .9);
  backdrop-filter: blur(18px);
}
.brand { display: grid; gap: 2px; font-weight: 900; line-height: 1; text-transform: uppercase; }
.brand span { font-size: 18px; }
.brand small { color: var(--yellow); font-size: 11px; }
.desktop-nav { display: flex; justify-content: center; gap: 30px; color: rgba(255,255,255,.78); font-size: 14px; }
.desktop-nav a:hover, .phone-link:hover { color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { color: var(--white); font-weight: 800; font-size: 14px; }
.menu-toggle,
.mobile-phone-action {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
}
.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: top .22s var(--ease), transform .22s var(--ease), opacity .16s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.mobile-phone-action {
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  background: rgba(255,210,31,.16);
  border: 1px solid rgba(255,210,31,.24);
}
.mobile-phone-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-nav { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--yellow); color: var(--graphite); }
.btn-dark { background: var(--graphite); color: var(--white); }
.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: 14px; }
.btn-large { min-height: 64px; padding: 0 32px; font-size: 18px; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}
.hero-media, .hero-media img, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; transform: scale(1.02); }
.hero-scrim {
  background:
    linear-gradient(180deg, rgba(17,20,18,.18), rgba(17,20,18,.08) 38%, rgba(17,20,18,.9)),
    linear-gradient(90deg, rgba(17,20,18,.74), rgba(17,20,18,.2) 52%, rgba(17,20,18,.48));
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--wide), calc(100% - clamp(32px, 7vw, 112px)));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 124px 0 44px;
}
.hero-copy { align-self: end; min-width: 0; margin-bottom: 44px; }
.hero-badge {
  margin: 0 0 20px;
}
.hero-badge span {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid rgba(255,210,31,.46);
  border-radius: 999px;
  color: #ffe46a;
  background: rgba(255,210,31,.11);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-mobile-break { display: none; }
.hero-title-row {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(160px, 210px);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  width: fit-content;
  max-width: 100%;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0;
  font-size: 112px;
  line-height: .86;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}
h1 span {
  display: block;
  max-width: none;
  margin-top: 12px;
  font-size: 48px;
  line-height: 1;
  overflow-wrap: normal;
}
h1 span b { color: var(--yellow); font-weight: 950; }
.hero-mobile-break { display: none; }
.hero-offer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: clamp(24px, 2.8vw, 44px);
  row-gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 28px;
  min-width: 0;
}
.day-price { display: grid; gap: 2px; min-width: 270px; }
.day-price span, .day-price em {
  color: rgba(255,255,255,.66);
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.day-price strong { color: var(--yellow); font-size: 76px; line-height: .9; }
.hero-note {
  display: grid;
  gap: 5px;
  justify-self: start;
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.3);
  font-size: 20px;
  line-height: 1.24;
}
.hero-note strong { color: var(--yellow); font-size: 22px; line-height: 1; }
.hero-note span { color: var(--white); }
.note-mobile-break { display: none; }
.hero-actions { display: flex; gap: 12px; justify-content: flex-end; white-space: nowrap; }
.hero-trims {
  display: grid;
  gap: 7px;
  align-self: center;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.3);
  transition: color .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}
.hero-trims span { color: rgba(255,255,255,.62); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.hero-trims strong { font-size: 22px; }
.hero-trims a { width: fit-content; color: var(--yellow); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.hero-trims a:hover { color: var(--white); }
.hero-trims:has(a:hover) { transform: translateX(4px); border-color: var(--yellow); }

.scenario-section {
  width: min(var(--wide), calc(100% - clamp(32px, 7vw, 112px)));
  margin: 0 auto;
  padding: 118px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(340px, .82fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}
h2 { font-size: 68px; line-height: .96; letter-spacing: 0; }
h3 { font-size: 34px; line-height: 1; letter-spacing: 0; }
p { color: var(--muted); line-height: 1.58; }
.scenario-main { padding: 18px 0; }
.scenario-main h2 { max-width: 760px; margin-bottom: 0; }
.scenario-main p { max-width: 700px; margin: 34px 0 22px; font-size: 20px; }
.scenario-punch {
  display: block;
  max-width: 760px;
  margin-top: 16px;
  color: var(--graphite);
  line-height: 1;
}
.scenario-punch span,
.scenario-punch b { display: block; }
.scenario-punch span {
  margin-bottom: 5px;
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 800;
}
.scenario-punch b {
  color: #9d7b00;
  font-size: clamp(48px, 4.7vw, 72px);
  font-weight: 950;
  line-height: .94;
}
.scenario-benefits,
.starter-benefits {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.scenario-benefits {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  max-width: 760px;
  margin-bottom: 38px;
}
.scenario-benefits li,
.starter-benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--graphite);
  font-weight: 850;
  line-height: 1.32;
}
.scenario-benefits li::before,
.starter-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #9d7b00;
  font-weight: 950;
}
.scenario-side {
  align-self: stretch;
  display: grid;
  align-content: center;
  row-gap: 23px;
  padding: clamp(26px, 2.8vw, 38px);
  color: var(--graphite);
  background: var(--paper);
  border-left: 4px solid var(--yellow);
  box-shadow: 0 28px 80px rgba(17,20,18,.08);
}
.scenario-side h3 { margin: 0; font-size: clamp(34px, 3vw, 48px); }
.scenario-side p { margin: 0; font-size: 17px; }
.starter-benefits { gap: 10px; margin: 0 0 5px; }
.scenario-side .btn-outline-dark {
  justify-self: start;
  width: fit-content;
}
.btn-outline-dark {
  color: var(--graphite);
  background: transparent;
  border: 1px solid rgba(17,20,18,.32);
}
.btn-outline-dark:hover { background: var(--graphite); color: var(--white); }
.scenario-main .btn-dark { min-width: 280px; padding-inline: 30px; }

.trims-section {
  padding: 118px 0 128px;
  background: var(--paper);
  overflow: hidden;
}
.trims-heading {
  width: min(var(--wide), calc(100% - clamp(32px, 7vw, 112px)));
  margin: 0 auto 42px;
}
.trims-heading h2 {
  margin: 0;
  font-size: clamp(50px, 5.2vw, 76px);
  white-space: nowrap;
}
.trims-heading h2 span { white-space: nowrap; }
.trim-gallery-shell { position: relative; }
.trim-gallery-viewport {
  margin-left: max(clamp(16px, 3.5vw, 56px), calc((100vw - var(--wide)) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
}
.trim-gallery-viewport::-webkit-scrollbar,
.trim-choice-viewport::-webkit-scrollbar { display: none; }
.trim-gallery-viewport:active { cursor: grabbing; }
.trim-gallery-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-right: 24vw;
}
.trim-gallery-track figure {
  flex: 0 0 clamp(320px, 31vw, 470px);
  width: clamp(320px, 31vw, 470px);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e7e4dc;
}
.trim-gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform .7s var(--ease);
}
.trim-gallery-track figure:hover img { transform: scale(1.025); }
.trim-gallery-controls {
  position: absolute;
  z-index: 3;
  left: calc(max(clamp(16px, 3.5vw, 56px), calc((100vw - var(--wide)) / 2)) + 16px);
  bottom: 16px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  color: var(--white);
  background: rgba(17,20,18,.78);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}
.trim-gallery-controls button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.trim-gallery-controls button:hover {
  color: var(--graphite);
  background: var(--yellow);
}
.trim-gallery-controls > span {
  min-width: 66px;
  display: inline-flex;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.trim-gallery-controls b,
.trim-gallery-controls em,
.trim-gallery-controls i { font-style: normal; }
.trim-gallery-controls i { color: rgba(255,255,255,.42); }
.trim-mobile-tabs { display: none; }
.trim-choice-viewport {
  width: min(var(--wide), calc(100% - clamp(32px, 7vw, 112px)));
  margin: 62px auto 0;
}
.trim-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.trim-choice-card {
  position: relative;
  min-width: 0;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  background: var(--white);
  border: 1px solid rgba(17,20,18,.1);
  border-top: 5px solid var(--graphite);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(17,20,18,.06);
}
.trim-choice-card-featured { border-top-color: var(--yellow); }
.trim-choice-badge {
  position: absolute;
  z-index: 1;
  top: clamp(28px, 3vw, 44px);
  right: clamp(28px, 3vw, 44px);
  padding: 5px 8px;
  color: #6e5700;
  background: var(--yellow-soft);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.trim-choice-header {
  min-height: 174px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.trim-choice-header span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.trim-choice-header h3 {
  margin: 0;
  font-size: clamp(46px, 4vw, 60px);
  line-height: .9;
}
.trim-choice-header p {
  max-width: 480px;
  margin: 22px 0 0;
  font-size: 16px;
}
.trim-choice-prices {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 0 28px;
  padding: 30px 0 26px;
}
.trim-choice-prices > div:not(.trim-daily) {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.trim-choice-prices span,
.trim-choice-prices em,
.trim-choice-prices small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}
.trim-choice-prices strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1;
}
.trim-choice-prices .trim-daily {
  grid-column: 1 / -1;
  padding-bottom: 28px;
}
.trim-choice-prices .trim-daily strong {
  margin: 5px 0 4px;
  color: #9d7b00;
  font-size: clamp(58px, 6vw, 88px);
  line-height: .88;
}
.trim-choice-prices .trim-daily em { color: var(--graphite); }
.trim-card-section { display: contents; }
.trim-card-section-toggle { display: none; }
.trim-card-discounts {
  display: grid;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
}
.trim-discount {
  min-height: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 42px;
  align-items: center;
  gap: 14px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 850;
}
.trim-discount strong {
  color: var(--graphite);
  font-size: 14px;
  white-space: nowrap;
}
.trim-discount i {
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #d8d2c6;
  transition: background .22s var(--ease);
}
.trim-discount i::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .22s var(--ease), background .22s var(--ease);
}
.trim-discount.active i { background: var(--graphite); }
.trim-discount.active i::after {
  transform: translateX(18px);
  background: var(--yellow);
}
.trim-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}
.trim-card-specs li,
.trim-card-specs button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: #5f5b54;
  background: var(--milk);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}
.trim-card-specs li:has(button) { padding: 0; }
.trim-card-specs button {
  gap: 6px;
  color: var(--graphite);
  background: var(--yellow);
  cursor: pointer;
}
.trim-card-specs button span {
  font-size: 15px;
  transition: transform .2s var(--ease);
}
.trim-card-specs button:hover span { transform: translateX(2px); }
.trim-card-specs button:hover { background: #f3c400; }
.trim-card-cta {
  align-self: flex-start;
  min-width: 220px;
  margin-top: auto;
}
.mini-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #e4ded2;
}
.mini-tabs button {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-weight: 900;
}
.mini-tabs button.active { background: var(--graphite); color: var(--white); }

.included-section {
  padding: 120px 0;
  background: var(--milk);
}
.included-inner {
  width: min(var(--wide), calc(100% - clamp(32px, 7vw, 112px)));
  margin: 0 auto;
}
.included-heading {
  margin-bottom: 46px;
}
.included-heading h2 {
  margin: 0;
  font-size: clamp(54px, 5.2vw, 76px);
  line-height: .94;
  white-space: nowrap;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}
.included-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid rgba(17,20,18,.08);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(17,20,18,.035);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.included-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(17,20,18,.09);
}
.included-card svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.included-card > div {
  width: 100%;
  margin-bottom: 8px;
}
.included-card h3 {
  max-width: 360px;
  min-height: 2.08em;
  margin: 0 0 13px;
  font-size: clamp(26px, 2.15vw, 32px);
  line-height: 1.04;
}
.included-card p {
  max-width: 390px;
  min-height: 2.9em;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.included-card-dark {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}
.included-card-dark svg { color: var(--yellow); }
.included-card-dark p { color: rgba(255,255,255,.67); }
.included-card-accent {
  color: var(--graphite);
  background: var(--yellow);
  border-color: var(--yellow);
}
.included-card-accent p { color: rgba(17,20,18,.68); }
.included-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.included-cta p {
  max-width: none;
  margin: 0;
  color: var(--graphite);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}
.included-cta .btn { flex: 0 0 auto; }

.credit-section {
  padding: 92px 0 96px;
  color: var(--white);
  background: var(--graphite);
}
.credit-shell {
  width: min(var(--wide), calc(100% - clamp(32px, 7vw, 112px)));
  margin: 0 auto;
}
.credit-copy {
  max-width: 790px;
  margin: 0 0 34px;
}
.credit-copy h2 {
  margin: 0;
  font-size: clamp(52px, 4.7vw, 70px);
  line-height: .94;
}
.credit-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 17px;
  line-height: 1.45;
}
.credit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  gap: 24px;
  align-items: stretch;
}
.credit-controls,
.credit-result {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.credit-controls {
  display: grid;
  gap: 22px;
  padding: 28px 30px;
  background: rgba(255,255,255,.045);
}
.credit-control-group {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.credit-control-heading {
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}
.credit-control-heading > span,
.credit-discounts-title {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.credit-control-heading strong {
  color: var(--white);
  font-size: 18px;
}
.credit-trim-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.credit-trim-options button {
  min-width: 0;
  min-height: 70px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 5px;
  padding: 12px 16px;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.055);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}
.credit-trim-options button:hover { color: var(--white); background: rgba(255,255,255,.085); }
.credit-trim-options button.active {
  color: var(--graphite);
  background: var(--yellow);
  border-color: var(--yellow);
}
.credit-trim-options strong { font-size: 17px; }
.credit-trim-options small { font-size: 12px; font-weight: 750; opacity: .72; }
.credit-range {
  --range-progress: 0%;
  width: 100%;
  height: 24px;
  min-height: 24px;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.credit-range::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow) var(--range-progress), rgba(255,255,255,.18) var(--range-progress));
}
.credit-range::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow) var(--range-progress), rgba(255,255,255,.18) var(--range-progress));
}
.credit-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -8.5px;
  border: 5px solid var(--yellow);
  border-radius: 50%;
  background: var(--graphite);
  box-shadow: 0 0 0 4px rgba(255,210,31,.12);
  appearance: none;
  -webkit-appearance: none;
}
.credit-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 5px solid var(--yellow);
  border-radius: 50%;
  background: var(--graphite);
  box-shadow: 0 0 0 4px rgba(255,210,31,.12);
}
.credit-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 5px rgba(255,210,31,.28); }
.credit-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
}
.credit-scale button {
  flex: 0 0 20px;
  width: 20px;
  min-width: 20px;
  min-height: 28px;
  padding: 0;
  color: rgba(255,255,255,.38);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: color .18s var(--ease);
}
.credit-scale button:hover,
.credit-scale button.active { color: var(--yellow); }
.credit-scale-unit {
  display: block;
  margin-top: -2px;
  color: rgba(255,255,255,.34);
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}
.credit-lower-controls {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 12px;
}
.credit-rate-card,
.credit-discounts {
  min-height: 118px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: rgba(0,0,0,.14);
}
.credit-rate-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.credit-rate-card > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.credit-rate-card span {
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.credit-rate-card strong {
  color: var(--white);
  font-size: 27px;
  line-height: 1;
}
.credit-rate-card small {
  color: rgba(255,255,255,.42);
  font-size: 11px;
  line-height: 1.3;
}
.credit-rate-card.installment {
  border-color: rgba(255,210,31,.38);
  background: rgba(255,210,31,.08);
}
.credit-rate-card.installment strong,
.credit-rate-card.installment small { color: var(--yellow); }
.credit-rate-card.rate-changing { animation: rate-change .34s var(--ease); }
@keyframes rate-change {
  50% { transform: translateY(-2px); opacity: .72; }
}
.credit-discounts {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 8px 12px;
}
.credit-discounts-title { grid-column: 1 / -1; margin-bottom: 1px; }
.credit-discounts button {
  grid-column: 1 / -1;
  min-height: 27px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0;
  color: rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
}
.credit-discounts i {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  transition: background .2s var(--ease);
}
.credit-discounts i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.credit-discounts button.active { color: var(--white); }
.credit-discounts button.active i { background: var(--yellow); }
.credit-discounts button.active i::after {
  background: var(--graphite);
  transform: translateX(14px);
}
.credit-result {
  display: flex;
  flex-direction: column;
  padding: 30px 32px 26px;
  background: #191d1a;
}
.credit-configuration {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.credit-model span,
.credit-car-price span {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.credit-model strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 24px;
}
.credit-car-price { text-align: right; }
.credit-car-price strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 18px;
}
.credit-main-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 9px;
  margin-top: 27px;
}
.credit-main-price > span {
  grid-column: 1 / -1;
  margin-bottom: 3px;
  color: rgba(255,255,255,.46);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.credit-main-price strong {
  color: var(--yellow);
  font-size: clamp(64px, 5.7vw, 86px);
  line-height: .82;
  white-space: nowrap;
}
.credit-main-price em {
  padding-bottom: 4px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}
.credit-month-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.credit-month-price strong { color: var(--white); font-size: 28px; }
.credit-month-price span { color: rgba(255,255,255,.48); font-size: 13px; font-weight: 750; }
.credit-form-copy { margin-top: 23px; }
.credit-form-copy h3 { margin: 0; font-size: 25px; line-height: 1.05; }
.credit-form-copy p {
  max-width: 520px;
  margin: 9px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  line-height: 1.4;
}
.credit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 17px;
}
.credit-form input:not([type="hidden"]):not([type="checkbox"]) {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 2px;
  border-bottom-color: rgba(255,255,255,.22);
  color: var(--white);
}
.credit-form input::placeholder { color: rgba(255,255,255,.42); }
.credit-form .btn { grid-column: 1 / -1; min-height: 50px; margin: 3px 0 4px; }
.credit-form > small {
  grid-column: 1 / -1;
  padding-left: 28px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
}
.credit-form [data-form-status] { min-height: 0; font-size: 12px; }
.credit-disclaimer {
  margin: auto 0 0;
  padding-top: 13px;
  color: rgba(255,255,255,.34);
  font-size: 10px;
}
input {
  min-height: 54px;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: inherit;
  background: transparent;
  outline: none;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.captcha-container:empty { display: none; }
.captcha-container:not(:empty) {
  grid-column: 1 / -1;
  margin-top: 4px;
}
.credit-agree {
  grid-column: 1 / -1;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
}
.credit-form .credit-agree input[type="checkbox"] {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.credit-form .credit-agree input[type="checkbox"]::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--graphite);
  border-bottom: 2px solid var(--graphite);
  opacity: 0;
  transform: rotate(-45deg);
}
.credit-form .credit-agree input[type="checkbox"]:checked {
  border-color: var(--yellow);
  background: var(--yellow);
}
.credit-form .credit-agree input[type="checkbox"]:checked::after {
  opacity: 1;
}
.credit-agree a {
  color: rgba(255,255,255,.88);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.demo-form p, .modal-form p { grid-column: 1 / -1; min-height: 20px; margin: 0; color: var(--yellow); }

.contacts {
  width: min(var(--wide), calc(100% - clamp(32px, 7vw, 112px)));
  margin: 0 auto;
  padding: 104px 0;
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: stretch;
}
.contacts-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}
.contacts-copy h2 {
  margin: 0;
  font-size: clamp(52px, 4.7vw, 70px);
  line-height: .94;
}
.contacts-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.contacts-benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
}
.contacts-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #9d7b00;
  font-weight: 950;
}
.contacts-details {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.contact-item {
  display: grid;
  gap: 7px;
}
.contact-item > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.contact-item a {
  width: fit-content;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(27px, 2.35vw, 36px);
  font-weight: 950;
  line-height: 1.3;
  transition: color .2s var(--ease);
}
.contact-item a:hover { color: #9d7b00; }
.contacts-cta {
  width: fit-content;
  min-width: 190px;
  margin-top: 32px;
}
.contacts-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ddd8ce;
}
.contacts-map > ymaps,
.contacts-map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 520px !important;
  display: block;
  border: 0;
}

.site-footer {
  padding: 28px 0 30px;
  color: rgba(255,255,255,.62);
  background: #090b0a;
}
.footer-inner {
  width: min(var(--wide), calc(100% - clamp(32px, 7vw, 112px)));
  margin: 0 auto;
}
.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-copyright {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}
.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.site-footer nav a {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  transition: color .2s var(--ease);
}
.site-footer nav a:hover { color: var(--yellow); }
.footer-top {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--graphite);
  background: var(--yellow);
  border-radius: 6px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.footer-top:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.footer-legal {
  max-width: 1040px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.38);
  font-size: 11px;
  line-height: 1.5;
}
.footer-legal span { display: block; margin-top: 5px; }

.modal { position: fixed; inset: 0; z-index: 80; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.site-toast {
  position: fixed;
  z-index: 100;
  top: max(20px, env(safe-area-inset-top));
  right: 20px;
  width: min(420px, calc(100% - 40px));
  padding: 18px 20px;
  color: var(--graphite);
  background: var(--white);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.site-toast.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.modal-dialog {
  position: relative;
  width: min(620px, calc(100% - 28px));
  margin: 7svh auto;
  padding: 34px;
  background: var(--paper);
}
.modal-dialog h2 { font-size: 42px; }
.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--graphite);
  border-radius: 50%;
  background: var(--milk);
  cursor: pointer;
  font-size: 0;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.modal-form { display: grid; gap: 14px; margin-top: 24px; }
.modal-form input { color: var(--graphite); border-bottom-color: var(--line); }
.agree { display: flex; gap: 10px; align-items: start; color: var(--muted); font-size: 13px; }
.agree input { min-height: auto; width: auto; margin-top: 2px; }
.lead-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100svh - 32px);
  margin: max(16px, 7svh) auto;
  padding: 38px;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.modal.open .lead-dialog { animation: lead-dialog-in .26s var(--ease) both; }
@keyframes lead-dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.lead-dialog h2 {
  margin: 0;
  padding-right: 54px;
  line-height: 1.02;
}
.lead-dialog > p {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.lead-dialog .modal-form {
  gap: 0;
  margin-top: 26px;
}
.lead-dialog .modal-form > input {
  width: 100%;
  min-height: 58px;
  padding-inline: 16px;
}
.lead-dialog .modal-form .btn {
  width: 100%;
  margin-top: 14px;
}
.lead-dialog .agree {
  position: relative;
  gap: 11px;
  margin-top: 16px;
  line-height: 1.45;
  cursor: pointer;
}
.lead-dialog .agree input {
  position: relative;
  appearance: none;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 1px solid rgba(17,20,18,.28);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}
.lead-dialog .agree input::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  left: 4px;
  top: 4px;
  margin: 0;
  border-left: 2px solid var(--graphite);
  border-bottom: 2px solid var(--graphite);
  opacity: 0;
  transform: rotate(-45deg);
}
.lead-dialog .agree input:checked {
  border-color: var(--yellow);
  background: var(--yellow);
}
.lead-dialog .agree input:checked::after { opacity: 1; }
.lead-dialog .agree a {
  color: var(--graphite);
  text-decoration: underline;
  text-decoration-color: rgba(17,20,18,.35);
  text-underline-offset: 3px;
}
.lead-dialog .agree a:hover { text-decoration-color: var(--graphite); }
.lead-dialog [data-form-status] {
  min-height: 0;
  margin-top: 10px;
  font-size: 13px;
}
.lead-dialog [data-form-status]:empty { display: none; }
.details-dialog {
  width: min(900px, calc(100% - 28px));
  max-height: 86svh;
  overflow-y: auto;
}
.details-kicker {
  display: block;
  margin-bottom: 8px;
  color: #8a6e00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.details-dialog h2 { margin: 0; padding-right: 52px; }
.details-dialog > p { margin: 12px 0 24px; }
.options-search {
  display: block;
  margin: -6px 0 18px;
}
.options-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--graphite);
  background: var(--milk);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.options-search input:focus {
  background: var(--white);
  border-color: rgba(17,20,18,.28);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.options-accordion {
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}
.options-accordion details { border-bottom: 1px solid var(--line); }
.options-accordion summary {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}
.options-accordion summary::-webkit-details-marker { display: none; }
.options-accordion summary span {
  color: var(--muted);
  font-size: 12px;
}
.options-accordion summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--graphite);
  background-color: var(--milk);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 2px, 2px 10px;
  font-size: 0;
  transition: transform .22s var(--ease), background .22s var(--ease);
}
.options-accordion details[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--yellow);
}
.options-accordion ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
  padding: 0 0 22px;
  margin: 0;
  list-style: none;
}
.options-accordion li {
  position: relative;
  padding-left: 18px;
  color: #57534d;
  font-size: 14px;
  line-height: 1.4;
}
.options-accordion li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b18b00;
}

.legal-page {
  min-height: 100svh;
  color: var(--graphite);
  background: var(--paper);
}
.legal-header {
  width: min(1120px, calc(100% - 48px));
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.legal-header .brand { color: var(--graphite); }
.legal-back {
  font-size: 14px;
  font-weight: 850;
}
.legal-back:hover,
.legal-document a:hover,
.legal-page-footer a:hover { color: #8a6e00; }
.legal-document {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 90px;
}
.legal-document h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
}
.legal-meta {
  max-width: 720px;
  margin: 24px 0 58px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.legal-document section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.legal-document section:last-child { border-bottom: 1px solid var(--line); }
.legal-document h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
}
.legal-document p {
  margin: 0 0 12px;
  color: #4f4c46;
  font-size: 16px;
  line-height: 1.7;
}
.legal-document p:last-child { margin-bottom: 0; }
.legal-document a {
  color: var(--graphite);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px max(24px, calc((100% - 1120px) / 2));
  color: rgba(255,255,255,.62);
  background: var(--graphite);
  font-size: 13px;
}
.legal-page-footer a { color: var(--white); }

[data-reveal] { opacity: 0; transform: translateY(22px) scale(.99); }
[data-reveal].visible { opacity: 1; transform: none; transition: opacity .75s var(--ease), transform .75s var(--ease); }

@media (min-width: 981px) and (max-width: 1200px) {
  .site-header {
    gap: 18px;
    padding-inline: 28px;
  }
  .brand span { font-size: 16px; }
  .desktop-nav {
    gap: 18px;
    font-size: 13px;
  }
  .phone-link { font-size: 13px; }
  h1 { font-size: 84px; }
  h1 span { font-size: 38px; }
  .hero-title-row {
    grid-template-columns: minmax(0, auto) minmax(145px, 170px);
    gap: 32px;
  }
  .hero-offer { column-gap: 18px; }
  .day-price { min-width: 220px; }
  .day-price strong { font-size: 64px; }
  .hero-note { font-size: 17px; }
  .hero-note strong { font-size: 19px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn {
    padding-inline: 16px;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .site-header { display: flex; min-height: 64px; padding: 0 16px; gap: 14px; width: 100%; }
  .site-header.compact { min-height: 64px; }
  .desktop-nav, .phone-link, .header-actions .btn { display: none; }
  .brand { min-width: 0; }
  .brand span { font-size: 17px; }
  .header-actions {
    position: static;
    z-index: 45;
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 8px;
  }
  .menu-toggle,
  .mobile-phone-action {
    position: fixed;
    top: 10px;
    z-index: 70;
  }
  .menu-toggle { left: calc(100vw - 60px); display: block; padding: 0; cursor: pointer; }
  .mobile-phone-action { left: calc(100vw - 112px); display: inline-flex; }
  .mobile-nav {
    position: fixed;
    z-index: 44;
    inset: 64px 0 0;
    display: flex;
    flex-direction: column;
    padding: 22px 16px max(20px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background: rgba(11,13,12,.985);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
    backdrop-filter: blur(18px);
  }
  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .mobile-nav > a:not(.mobile-nav-phone) {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding-right: 32px;
    border-bottom: 1px solid rgba(255,255,255,.13);
    font-size: 22px;
    font-weight: 850;
  }
  .mobile-nav > a:not(.mobile-nav-phone)::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,.5);
    border-bottom: 2px solid rgba(255,255,255,.5);
    transform: translateY(-50%) rotate(-45deg);
  }
  .mobile-nav-actions {
    display: grid;
    gap: 14px;
    margin-top: auto;
    padding-top: 30px;
  }
  .mobile-nav-phone {
    width: fit-content;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
  }
  .mobile-nav-actions .btn { width: 100%; }
  .hero-inner {
    width: calc(100% - 28px);
    min-height: 100svh;
    padding: 86px 0 max(14px, env(safe-area-inset-bottom));
  }
  .hero-media img { object-position: 60% center; }
  h1 { font-size: 46px; }
  h1 span { font-size: 25px; }
  .hero-mobile-break { display: block; }
  h2 { font-size: 36px; }
  .hero-copy { margin-bottom: 28px; }
  .hero-badge span {
    display: inline-flex;
    max-width: 100%;
    border-radius: 18px;
    font-size: 11px;
    white-space: normal;
  }
  .badge-mobile-break { display: block; }
  .hero-title-row { display: block; width: 100%; }
  .hero-offer { grid-template-columns: auto minmax(132px, 1fr); gap: 18px 14px; }
  .day-price { min-width: 0; }
  .hero-note {
    align-self: center;
    min-width: 0;
    padding-left: 14px;
    font-size: 16px;
    overflow-wrap: normal;
  }
  .hero-note strong { font-size: 18px; }
  .hero-note span { display: block; font-size: 16px; line-height: 1.2; overflow-wrap: normal; }
  .note-mobile-break { display: block; }
  .hero-actions {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    width: 100%;
    white-space: normal;
  }
  .hero-actions .btn { width: 100%; }
  .day-price strong { font-size: 58px; }
  .hero-trims { display: none; }
  .scenario-section, .contacts { grid-template-columns: 1fr; }
  .scenario-section, .contacts, .section-head { width: calc(100% - 28px); }
  .scenario-section, .trims-section, .included-section, .credit-section, .contacts { padding: 72px 0; }
  .scenario-section { gap: 28px; align-items: start; }
  .scenario-main { padding: 0; }
  .scenario-main h2 { font-size: 44px; }
  .scenario-punch { max-width: 100%; margin-top: 13px; }
  .scenario-punch span { margin-bottom: 4px; font-size: 21px; }
  .scenario-punch b { font-size: 38px; }
  .scenario-main p { margin: 28px 0 18px; font-size: 17px; }
  .scenario-benefits { grid-template-columns: 1fr; gap: 9px; margin-bottom: 28px; }
  .scenario-benefits li, .starter-benefits li { font-size: 15px; }
  .scenario-side {
    row-gap: 20px;
    padding: 24px;
    border-left-width: 0;
    border-top: 4px solid var(--yellow);
  }
  .scenario-side h3 { font-size: 32px; }
  .scenario-side p { font-size: 16px; }
  .trims-heading {
    width: calc(100% - 28px);
    margin-bottom: 28px;
  }
  .trims-heading h2 {
    font-size: 44px;
    white-space: normal;
  }
  .trim-gallery-viewport { margin-left: 14px; }
  .trim-gallery-track {
    gap: 10px;
    padding-right: 20vw;
  }
  .trim-gallery-track figure {
    flex-basis: min(76vw, 330px);
    width: min(76vw, 330px);
  }
  .trim-gallery-controls {
    left: 30px;
    min-height: 34px;
    padding: 0 10px;
  }
  .trim-gallery-controls button { display: none; }
  .trim-gallery-controls > span {
    min-width: 58px;
    min-height: 32px;
    align-items: center;
  }
  .trim-mobile-tabs {
    width: calc(100% - 28px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin: 34px auto 0;
    padding: 4px;
    background: #e7e2d8;
    border-radius: 999px;
  }
  .trim-mobile-tabs button {
    min-height: 44px;
    padding: 0 14px;
    color: var(--muted);
    background: transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
  }
  .trim-mobile-tabs button.active {
    color: var(--white);
    background: var(--graphite);
  }
  .trim-choice-viewport {
    width: calc(100% - 28px);
    margin-top: 14px;
    overflow: visible;
  }
  .trim-choice-grid {
    width: 100%;
    display: block;
    padding: 0;
  }
  .trim-choice-card {
    width: 100%;
    min-height: 0;
    padding: 26px;
    animation: trim-card-in .32s var(--ease);
  }
  .trim-choice-card:not(.active-mobile-card) { display: none; }
  @keyframes trim-card-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
  }
  .trim-choice-badge {
    top: 25px;
    right: 25px;
    max-width: 156px;
    padding: 4.5px 7px;
    font-size: 8.5px;
  }
  .trim-choice-header {
    min-height: 0;
    padding: 0 0 20px;
  }
  .trim-choice-header h3 { font-size: 48px; }
  .trim-choice-header p {
    max-width: 100%;
    margin-top: 16px;
  }
  .trim-card-section {
    display: block;
    border-bottom: 1px solid var(--line);
  }
  .trim-card-section-toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: var(--graphite);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
  }
  .trim-card-section-toggle i {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s var(--ease);
  }
  .trim-card-section.open .trim-card-section-toggle i { transform: rotate(225deg); }
  .trim-card-section:not(.open) .trim-card-section-content { display: none; }
  .trim-choice-prices { padding: 4px 0 18px; }
  .trim-choice-prices .trim-daily { padding-bottom: 18px; }
  .trim-choice-prices .trim-daily strong { font-size: 58px; }
  .trim-choice-prices strong { font-size: 23px; }
  .trim-card-discounts {
    margin: 0;
    padding-bottom: 8px;
    border-top: 0;
  }
  .trim-card-specs { margin: 0; padding-bottom: 18px; }
  .trim-card-cta {
    width: 100%;
    margin-top: 20px;
  }
  .credit-shell { width: calc(100% - 28px); }
  .credit-copy {
    max-width: 720px;
    margin-bottom: 30px;
  }
  .credit-copy h2 { font-size: 54px; }
  .credit-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .credit-controls { padding: 28px; }
  .credit-result { min-height: 0; }
  .credit-main-price strong { font-size: 78px; }
  .included-inner { width: calc(100% - 28px); }
  .included-heading {
    margin-bottom: 34px;
  }
  .included-heading h2 {
    font-size: 48px;
    white-space: normal;
  }
  .included-cta p { white-space: normal; }
  .included-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .included-card {
    min-height: 270px;
    padding: 28px;
  }
  .included-card h3 { font-size: 27px; }
  .demo-form { grid-template-columns: 1fr; }
  .contacts {
    gap: 36px;
    align-items: start;
  }
  .contacts-copy {
    max-width: 680px;
    padding: 0;
  }
  .contacts-copy h2 { font-size: 54px; }
  .contacts-map,
  .contacts-map > ymaps,
  .contacts-map iframe {
    min-height: 430px !important;
  }
  .footer-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 24px;
  }
  .footer-copyright { white-space: normal; }
  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
  .footer-top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .credit-section { padding: 68px 0; }
  .credit-copy { margin-bottom: 25px; }
  .credit-copy h2 { font-size: 42px; }
  .credit-copy p { margin-top: 14px; font-size: 15px; }
  .credit-controls {
    gap: 19px;
    padding: 22px 18px;
  }
  .credit-control-group { padding-bottom: 17px; }
  .credit-control-heading { margin-bottom: 12px; }
  .credit-trim-options button {
    min-height: 68px;
    padding: 11px 12px;
  }
  .credit-trim-options strong { font-size: 16px; }
  .credit-trim-options small { font-size: 10px; }
  .credit-scale button {
    min-height: 34px;
    font-size: 10px;
  }
  .credit-lower-controls { grid-template-columns: 1fr; }
  .credit-rate-card,
  .credit-discounts { min-height: 104px; }
  .credit-result { padding: 24px 20px 22px; }
  .credit-configuration {
    align-items: flex-start;
    gap: 16px;
  }
  .credit-model strong { font-size: 21px; }
  .credit-car-price strong { font-size: 16px; }
  .credit-main-price { margin-top: 25px; }
  .credit-main-price strong { font-size: 66px; }
  .credit-main-price em { font-size: 14px; }
  .credit-form { grid-template-columns: 1fr; }
  .credit-form .btn,
  .credit-form > small,
  .credit-form [data-form-status] { grid-column: 1; }
  .contacts { gap: 30px; }
  .contacts-copy h2 { font-size: 42px; }
  .contacts-benefits {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 22px;
  }
  .contacts-details {
    gap: 16px;
    margin-top: 30px;
  }
  .contact-item a { font-size: 29px; }
  .contacts-cta { margin-top: 27px; }
  .contacts-map,
  .contacts-map > ymaps,
  .contacts-map iframe {
    min-height: 360px !important;
  }
  .site-footer { padding: 24px 0 26px; }
  .footer-inner { width: calc(100% - 28px); }
  .footer-main {
    gap: 17px;
    padding-bottom: 20px;
  }
  .footer-copyright {
    max-width: 250px;
    font-size: 13px;
    line-height: 1.35;
  }
  .site-footer nav {
    display: grid;
    gap: 11px;
  }
  .site-footer nav a { font-size: 12px; }
  .footer-top {
    width: 40px;
    height: 40px;
  }
  .footer-legal {
    margin-top: 16px;
    font-size: 11px;
  }
  .included-grid { grid-template-columns: 1fr; }
  .included-card {
    min-height: 238px;
    padding: 28px;
  }
  .included-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
    padding-top: 24px;
  }
  .included-cta p { font-size: 16px; }
  .legal-header {
    width: calc(100% - 28px);
    min-height: 72px;
  }
  .legal-header .brand span { font-size: 15px; }
  .legal-back { font-size: 12px; }
  .legal-document {
    width: calc(100% - 28px);
    padding: 52px 0 64px;
  }
  .legal-document h1 { font-size: 40px; }
  .legal-meta {
    margin: 18px 0 40px;
    font-size: 14px;
  }
  .legal-document section { padding: 23px 0; }
  .legal-document h2 { font-size: 21px; }
  .legal-document p { font-size: 15px; line-height: 1.65; }
  .legal-page-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 24px 14px;
  }
}

@media (max-width: 430px) {
  h1 { font-size: 34px; }
  h1 span { max-width: 340px; font-size: 23px; line-height: 1.08; }
  h1 span b { display: inline; }
  .hero-badge { font-size: 11px; }
  .hero-badge span { padding: 8px 12px; }
  .day-price strong { font-size: 46px; }
  .hero-note { gap: 3px; }
  .hero-note strong { font-size: 17px; }
  .hero-note span { font-size: 15px; }
  .mini-tabs { width: 100%; }
  .mini-tabs button { padding: 0 12px; }
  .details-dialog {
    width: calc(100% - 20px);
    max-height: 92svh;
    margin: 4svh auto;
    padding: 24px 20px;
  }
  .lead-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    margin: 10px auto;
    padding: 28px 20px 24px;
    border-radius: 10px;
  }
  .lead-dialog h2 { font-size: 34px; }
  .lead-dialog > p { margin-top: 16px; font-size: 15px; }
  .lead-dialog .modal-form { margin-top: 20px; }
  .lead-dialog .modal-form > input { min-height: 54px; }
  .lead-dialog .agree { font-size: 12px; }
  .details-dialog h2 { font-size: 36px; }
  .options-accordion summary {
    min-height: 58px;
    font-size: 16px;
  }
  .options-accordion ul { grid-template-columns: 1fr; }
  .scenario-main h2 { font-size: 36px; }
  .scenario-punch span { font-size: 18px; }
  .scenario-punch b { font-size: 34px; }
  .scenario-main .btn-dark { width: 100%; min-width: 0; }
  .scenario-side { padding: 22px; }
  .scenario-side h3 { font-size: 29px; }
  .scenario-side .btn-outline-dark { width: fit-content; }
  .included-heading h2 { font-size: 38px; }
  .included-card h3 { font-size: 26px; }
  .trims-heading h2 { font-size: 36px; }
  .trim-gallery-track figure {
    flex-basis: 74vw;
    width: 74vw;
  }
  .trim-choice-card {
    width: 100%;
    min-height: 0;
    padding: 22px;
  }
  .trim-choice-badge {
    top: 21px;
    right: 21px;
  }
  .trim-choice-header h3 { font-size: 43px; }
  .trim-choice-header p { font-size: 15px; }
  .trim-choice-prices {
    grid-template-columns: .82fr 1.18fr;
    gap: 0 18px;
  }
  .trim-choice-prices .trim-daily strong { font-size: 52px; }
  .trim-choice-prices strong { font-size: 21px; }
  .trim-discount {
    grid-template-columns: minmax(0, 1fr) auto 38px;
    gap: 9px;
    font-size: 13px;
  }
  .trim-discount strong { font-size: 12px; }
  .trim-discount i { transform: scale(.9); transform-origin: right center; }
  .trim-card-specs { margin-bottom: 24px; }
  .credit-main-price strong { font-size: 57px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
