:root {
      --bg: #0c0f14;
      --bg-2: #121722;
      --bg-3: #181e2a;
      --card: #ffffff;
      --text: #111318;
      --muted: #636b78;
      --light: #f5f7fb;
      --white: #ffffff;
      --line: rgba(255,255,255,.13);
      --line-dark: rgba(17,19,24,.12);
      --accent: #c9a45c;
      --accent-2: #e8c878;
      --danger: #d83b3b;
      --success: #1c9b61;
      --shadow: 0 24px 80px rgba(0,0,0,.24);
      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1180px;
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    [hidden] {
      display: none !important;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background: var(--light);
      line-height: 1.45;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    button,
    input,
    select {
      font: inherit;
    }

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: #000;
      color: var(--white);
      border-bottom: 1px solid var(--line);
    }

    .topbar__inner {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .brand__mark {
      display: flex;
      align-items: center;
      height: 44px;
      width: auto;
      flex-shrink: 0;
    }

    .brand__logo {
      display: block;
      height: 44px;
      width: auto;
      max-width: 172px;
      object-fit: contain;
    }

    .brand__text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .brand__text strong {
      font-size: 15px;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .brand__text span {
      color: rgba(255,255,255,.64);
      font-size: 12px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      color: rgba(255,255,255,.78);
    }

    .nav a:hover {
      color: var(--white);
    }

    .topbar__actions {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .topbar__actions .btn {
      padding: 12px 20px;
      min-height: 46px;
      font-size: 14px;
      letter-spacing: .01em;
      box-shadow: 0 10px 28px rgba(201,164,92,.35);
    }

    .topbar__actions .btn:hover {
      box-shadow: 0 14px 34px rgba(201,164,92,.45);
    }

    .phone-link {
      color: var(--white);
      font-weight: 750;
      letter-spacing: -.01em;
    }

    .burger {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: transparent;
      color: var(--white);
      cursor: pointer;
    }

    .burger span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--white);
      margin: 4px auto;
      border-radius: 2px;
    }

    .btn {
      border: 0;
      border-radius: 999px;
      padding: 15px 22px;
      background: var(--accent);
      color: #14120c;
      font-weight: 800;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      min-height: 50px;
      box-shadow: 0 14px 34px rgba(201,164,92,.26);
    }

    .btn:hover {
      transform: translateY(-1px);
      background: var(--accent-2);
      box-shadow: 0 18px 44px rgba(201,164,92,.34);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn--dark {
      background: #111318;
      color: var(--white);
      box-shadow: none;
    }

    .btn--dark:hover {
      background: #252b36;
      box-shadow: none;
    }

    .btn--ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--line);
      box-shadow: none;
    }

    .btn--ghost:hover {
      background: rgba(255,255,255,.08);
      box-shadow: none;
    }

    .btn--white {
      background: var(--white);
      color: var(--text);
      box-shadow: none;
    }

    .btn--white:hover {
      background: #f1f3f7;
      box-shadow: none;
    }

    .btn--wide {
      width: 100%;
    }

    .hero {
      scroll-margin-top: 70px;
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 12% 18%, rgba(201,164,92,.30), transparent 34%),
        radial-gradient(circle at 78% 28%, rgba(74,96,139,.34), transparent 30%),
        linear-gradient(135deg, #080a0e 0%, #111722 52%, #05070a 100%);
      padding: 66px 0 78px;
    }

    .hero:before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 86%);
      pointer-events: none;
    }

    .hero__grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) 460px;
      gap: 46px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.82);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.06);
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      margin-bottom: 22px;
    }

    .eyebrow:before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(201,164,92,.18);
    }

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

    h1 {
      font-size: clamp(38px, 5vw, 68px);
      line-height: .98;
      letter-spacing: -.055em;
      margin-bottom: 22px;
      max-width: 790px;
    }

    .hero__lead {
      color: rgba(255,255,255,.76);
      font-size: clamp(18px, 2vw, 22px);
      max-width: 700px;
      margin-bottom: 30px;
    }

    .hero__badges {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      max-width: 680px;
      margin-bottom: 34px;
    }

    .badge {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.07);
      border-radius: 18px;
      padding: 15px 16px;
      color: rgba(255,255,255,.88);
      display: flex;
      gap: 10px;
      align-items: flex-start;
      min-height: 78px;
    }

    .badge__icon {
      color: var(--accent-2);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .quiz {
      scroll-margin-top: 78px;
      background: var(--white);
      color: var(--text);
      border-radius: var(--radius-lg);
      padding: 26px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.12);
    }

    .quiz__head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .quiz__head h2 {
      font-size: 25px;
      line-height: 1.1;
      letter-spacing: -.035em;
      margin-bottom: 8px;
    }

    .quiz__head p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 14px;
    }

    .quiz__step-label {
      white-space: nowrap;
      font-size: 13px;
      color: var(--muted);
      border: 1px solid var(--line-dark);
      border-radius: 999px;
      padding: 7px 10px;
    }

    .quiz-manager {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      padding: 12px 14px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(201,164,92,.12), rgba(248,250,252,.9));
      border: 1px solid rgba(201,164,92,.22);
    }

    .quiz-manager__photo {
      flex-shrink: 0;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(201,164,92,.45);
      box-shadow: 0 8px 20px rgba(201,164,92,.18);
    }

    .quiz-manager__photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 12%;
    }

    .quiz-manager__info {
      min-width: 0;
    }

    .quiz-manager__role {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: #8a6d35;
      margin-bottom: 4px;
    }

    .quiz-manager__name {
      display: block;
      font-size: 17px;
      line-height: 1.2;
      letter-spacing: -.02em;
      color: #171a22;
      margin-bottom: 4px;
    }

    .quiz-manager__note {
      margin: 0;
      font-size: 13px;
      line-height: 1.35;
      color: var(--muted);
    }

    .progress {
      height: 8px;
      background: #edf0f5;
      border-radius: 999px;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .progress__bar {
      height: 100%;
      width: 20%;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      border-radius: inherit;
      transition: width .25s ease;
    }

    .quiz__step {
      display: none;
    }

    .quiz__step.active {
      display: block;
      animation: fadeUp .25s ease both;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(6px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    label {
      display: block;
      font-weight: 750;
      margin-bottom: 9px;
      color: #171a22;
    }

    input,
    select {
      width: 100%;
      border: 1px solid #d8dde6;
      background: #f8fafc;
      border-radius: 14px;
      padding: 15px 15px;
      color: var(--text);
      outline: none;
      transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }

    input:focus,
    select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(201,164,92,.15);
      background: var(--white);
    }

    .field-note {
      font-size: 12px;
      color: var(--muted);
      margin-top: 8px;
    }

    .error {
      color: var(--danger);
      font-size: 13px;
      margin-top: 8px;
      display: none;
    }

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

    .form-grid .wide {
      grid-column: 1 / -1;
    }

    .quiz__actions {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .form-success {
      text-align: center;
      padding: 28px 20px;
      animation: fadeUp .35s ease both;
    }

    .form-success--quiz {
      padding: 36px 24px 28px;
    }

    .form-success__icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 28px;
      font-weight: 900;
      color: var(--success);
      background: linear-gradient(135deg, rgba(28, 155, 97, .14), rgba(28, 155, 97, .06));
      border: 2px solid rgba(28, 155, 97, .28);
      box-shadow: 0 12px 32px rgba(28, 155, 97, .12);
    }

    .form-success__title {
      font-size: 26px;
      letter-spacing: -.03em;
      margin: 0 0 10px;
      color: #171a22;
    }

    .form-success__text {
      margin: 0 auto 16px;
      max-width: 32ch;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.45;
    }

    .form-success__phone {
      margin: 0;
      font-size: 14px;
      color: #171a22;
    }

    .form-success__phone a {
      color: #8a6d35;
      font-weight: 700;
    }

    .quiz--success {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .form-box--success {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 320px;
    }

    .form-box--success > .form-success {
      width: 100%;
    }

    .privacy {
      font-size: 12px;
      color: var(--muted);
      margin: 14px 0 0;
    }

    .privacy a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

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

    .legal-page {
      padding: 48px 0 86px;
    }

    .legal-page__container {
      max-width: 860px;
    }

    .legal-page h1 {
      margin: 0 0 28px;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.15;
    }

    .legal-page__content {
      color: var(--text);
      font-size: 15px;
      line-height: 1.65;
    }

    .legal-page__content h2 {
      margin: 36px 0 16px;
      font-size: 22px;
      line-height: 1.3;
    }

    .legal-page__content h2:first-child {
      margin-top: 0;
      font-size: 20px;
    }

    .legal-page__content h3 {
      margin: 28px 0 12px;
      font-size: 18px;
      line-height: 1.35;
    }

    .legal-page__content p {
      margin: 0 0 12px;
    }

    .legal-page__content ul {
      margin: 0 0 16px;
      padding-left: 1.25rem;
    }

    .legal-page__content li {
      margin-bottom: 8px;
    }

    .legal-page__content a {
      color: var(--accent-2);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    footer a {
      color: rgba(255, 255, 255, 0.78);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

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

    section {
      padding: 86px 0;
    }

    .section-dark {
      background:
        radial-gradient(circle at 85% 10%, rgba(201,164,92,.18), transparent 30%),
        linear-gradient(135deg, var(--bg), var(--bg-2));
      color: var(--white);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: .13em;
      font-weight: 850;
      font-size: 12px;
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(30px, 3.2vw, 48px);
      line-height: 1.06;
      letter-spacing: -.045em;
      margin-bottom: 16px;
    }

    .section-head p,
    .lead {
      font-size: 18px;
      color: var(--muted);
      max-width: 720px;
      margin-bottom: 0;
    }

    .section-dark .section-head p,
    .section-dark .lead {
      color: rgba(255,255,255,.72);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 34px;
      align-items: stretch;
    }

    .panel {
      background: var(--white);
      border: 1px solid #e2e6ef;
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: 0 14px 40px rgba(17,19,24,.06);
    }

    .section-dark .panel {
      background: rgba(255,255,255,.07);
      border-color: var(--line);
      box-shadow: none;
      color: var(--white);
    }

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

    .list li {
      display: flex;
      gap: 12px;
      color: #303641;
    }

    .section-dark .list li {
      color: rgba(255,255,255,.78);
    }

    .list li:before {
      content: "✓";
      color: var(--accent);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .mini-cta {
      border-radius: var(--radius-lg);
      padding: 30px;
      background: linear-gradient(135deg, #111318, #252c38);
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100%;
      overflow: hidden;
      position: relative;
    }

    .mini-cta:before {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: rgba(201,164,92,.25);
    }

    .mini-cta h3 {
      font-size: 27px;
      line-height: 1.12;
      letter-spacing: -.035em;
      margin-bottom: 12px;
      position: relative;
    }

    .mini-cta p {
      color: rgba(255,255,255,.72);
      position: relative;
    }

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

    .card {
      background: var(--white);
      border: 1px solid #e2e6ef;
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: 0 12px 36px rgba(17,19,24,.055);
    }

    .section-dark .card {
      background: rgba(255,255,255,.07);
      border-color: var(--line);
      color: var(--white);
      box-shadow: none;
    }

    .card__icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(201,164,92,.17);
      color: var(--accent);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .card h3 {
      font-size: 21px;
      line-height: 1.18;
      letter-spacing: -.03em;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .section-dark .card p {
      color: rgba(255,255,255,.68);
    }

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

    .brand-pill {
      background: var(--white);
      border: 1px solid #e1e5ed;
      border-radius: 16px;
      padding: 18px 12px;
      text-align: center;
      font-weight: 850;
      box-shadow: 0 10px 28px rgba(17,19,24,.045);
    }

    .note-box {
      margin-top: 18px;
      border-radius: 18px;
      padding: 18px 20px;
      border: 1px solid #e2e6ef;
      background: #fff;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
    }

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

    .compare__col {
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid #e2e6ef;
      padding: 28px;
      box-shadow: 0 14px 40px rgba(17,19,24,.055);
    }

    .compare__col--accent {
      border-color: rgba(201,164,92,.48);
      box-shadow: 0 18px 50px rgba(201,164,92,.12);
    }

    .compare__col h3 {
      font-size: 28px;
      letter-spacing: -.035em;
      margin-bottom: 20px;
    }

    .compare-item {
      display: flex;
      gap: 12px;
      padding: 13px 0;
      border-top: 1px solid #edf0f5;
      color: #303641;
    }

    .compare-item:first-of-type {
      border-top: 0;
    }

    .compare-item:before {
      content: "—";
      color: var(--muted);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .compare__col--accent .compare-item:before {
      content: "✓";
      color: var(--accent);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      counter-reset: step;
    }

    .step {
      position: relative;
      background: rgba(255,255,255,.07);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 24px;
      min-height: 150px;
    }

    .step:before {
      counter-increment: step;
      content: counter(step);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--accent);
      color: #14120c;
      font-weight: 900;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
    }

    .step p {
      color: rgba(255,255,255,.78);
      margin-bottom: 0;
      font-weight: 650;
    }

    .warning {
      background:
        linear-gradient(135deg, rgba(201,164,92,.14), rgba(255,255,255,.03)),
        #111318;
      color: var(--white);
      border-radius: var(--radius-lg);
      padding: 38px;
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 26px;
      align-items: center;
      overflow: hidden;
    }

    .warning p {
      color: rgba(255,255,255,.72);
      margin-bottom: 0;
      font-size: 18px;
    }

    .car-stock {
      background: var(--white);
    }

    #stock {
      scroll-margin-top: 78px;
      padding-top: 58px;
      padding-bottom: 58px;
    }

    #credit {
      scroll-margin-top: 78px;
    }

    .car-stock .section-head {
      margin-bottom: 22px;
    }

    .car-stock__filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .car-stock__filter {
      border: 1px solid #e2e6ef;
      background: var(--light);
      color: var(--text);
      border-radius: 999px;
      padding: 8px 16px;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }

    .car-stock__filter.is-active {
      background: var(--bg);
      border-color: var(--bg);
      color: var(--white);
    }

    .car-stock__list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .car-stock__card {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto 1fr;
      gap: 0;
      background: var(--white);
      border: 1px solid #e2e6ef;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 10px 28px rgba(17,19,24,.05);
    }

    .car-stock__card.is-filtered-out {
      display: none !important;
    }

    .car-stock__card.is-stock-hidden {
      display: none !important;
    }

    .car-stock__more {
      margin-top: 14px;
    }

    .car-stock__media {
      background: #f1f3f7;
      aspect-ratio: 16 / 9;
      min-height: 148px;
      overflow: hidden;
    }

    .car-stock__media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .car-stock__body {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 16px 18px 18px;
    }

    .car-stock__head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }

    .car-stock__head h3 {
      font-size: 20px;
      line-height: 1.1;
      letter-spacing: -.03em;
      margin-bottom: 2px;
    }

    .car-stock__trim {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
    }

    .car-stock__badge {
      flex: 0 0 auto;
      background: rgba(28,155,97,.12);
      color: var(--success);
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .car-stock__specs {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .car-stock__specs li {
      background: var(--light);
      border: 1px solid #e2e6ef;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 12px;
      color: #4b5563;
      font-weight: 650;
    }

    .car-stock__prices {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 8px 12px;
      margin-top: auto;
    }

    .car-stock__price-old {
      color: #9aa3b2;
      font-size: 14px;
      text-decoration: line-through;
    }

    .car-stock__price {
      font-size: 22px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .car-stock__actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .car-stock__actions .btn {
      width: 100%;
      text-align: center;
      justify-content: center;
      padding: 12px 16px;
      font-size: 13px;
    }

    .car-stock__note {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 13px;
    }

    .model-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .model {
      background: var(--white);
      border: 1px solid #e2e6ef;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 14px 40px rgba(17,19,24,.06);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .model__visual {
      height: 190px;
      background:
        radial-gradient(circle at 70% 10%, rgba(201,164,92,.25), transparent 33%),
        linear-gradient(135deg, #151a23, #303846);
      position: relative;
      overflow: hidden;
    }

    .model__visual--photo {
      background: #111318;
    }

    .model__visual--photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 45%;
    }

    .model__visual:not(.model__visual--photo):before,
    .model__visual:not(.model__visual--photo):after {
      content: "";
      position: absolute;
      left: 14%;
      right: 14%;
      border: 1px solid rgba(255,255,255,.22);
    }

    .model__visual:not(.model__visual--photo):before {
      bottom: 54px;
      height: 42px;
      border-radius: 50px 70px 20px 20px;
      background: linear-gradient(90deg, rgba(255,255,255,.36), rgba(255,255,255,.10));
    }

    .model__visual:not(.model__visual--photo):after {
      bottom: 88px;
      left: 31%;
      right: 32%;
      height: 30px;
      border-radius: 40px 40px 8px 8px;
      background: rgba(255,255,255,.16);
    }

    .model__wheel {
      position: absolute;
      bottom: 38px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #07090c;
      border: 7px solid rgba(255,255,255,.25);
      z-index: 2;
    }

    .model__wheel--l {
      left: 25%;
    }

    .model__wheel--r {
      right: 25%;
    }

    .model__body {
      padding: 26px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .model h3 {
      font-size: 29px;
      letter-spacing: -.04em;
      margin-bottom: 10px;
    }

    .model p {
      color: var(--muted);
      margin-bottom: 22px;
      flex: 1;
    }

    .credit {
      display: grid;
      grid-template-columns: 1fr 470px;
      gap: 34px;
      align-items: center;
    }

    .form-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 30px;
      border: 1px solid #e2e6ef;
      box-shadow: var(--shadow);
    }

    .form-box h3 {
      font-size: 28px;
      letter-spacing: -.035em;
      margin-bottom: 8px;
    }

    .form-box p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .faq {
      display: grid;
      gap: 12px;
    }

    details {
      background: var(--white);
      border: 1px solid #e2e6ef;
      border-radius: 18px;
      padding: 0 22px;
      box-shadow: 0 10px 28px rgba(17,19,24,.045);
    }

    summary {
      cursor: pointer;
      padding: 20px 0;
      font-weight: 850;
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

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

    summary:after {
      content: "+";
      color: var(--accent);
      font-size: 24px;
      line-height: 1;
    }

    details[open] summary:after {
      content: "−";
    }

    details p {
      color: var(--muted);
      margin-bottom: 20px;
      padding-right: 40px;
    }

    .dealer {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: stretch;
    }

    .map {
      min-height: 400px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      background: #1b2230;
    }

    .map__frame {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 400px;
      border: 0;
    }

    .dealer-info {
      background: rgba(255,255,255,.07);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 32px;
    }

    .info-list {
      display: grid;
      gap: 16px;
      margin: 26px 0;
    }

    .info-row {
      border-top: 1px solid var(--line);
      padding-top: 16px;
    }

    .info-row span {
      display: block;
      color: rgba(255,255,255,.55);
      font-size: 13px;
      margin-bottom: 5px;
    }

    .info-row strong {
      font-size: 18px;
    }

    .footer-form {
      display: grid;
      grid-template-columns: 1fr 500px;
      gap: 34px;
      align-items: center;
    }

    footer {
      background: #07090c;
      color: rgba(255,255,255,.58);
      padding: 28px 0;
      font-size: 13px;
    }

    .footer__inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: flex-start;
    }

    .footer__legal {
      display: grid;
      gap: 4px;
      line-height: 1.45;
    }

    .footer__notice {
      display: grid;
      gap: 8px;
      line-height: 1.45;
      text-align: right;
    }

    .floating-call {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 70;
      width: 58px;
      height: 58px;
      border: 0;
      border-radius: 50%;
      background: var(--accent);
      color: #111318;
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 16px 36px rgba(201,164,92,.42);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .floating-call:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(201,164,92,.5);
    }

    .floating-call__icon {
      width: 26px;
      height: 26px;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal.is-open {
      display: flex;
    }

    body.modal-open {
      overflow: hidden;
    }

    .modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8,10,14,.62);
      backdrop-filter: blur(4px);
    }

    .modal__dialog {
      position: relative;
      width: min(100%, 440px);
      max-height: calc(100vh - 40px);
      overflow: auto;
    }

    .modal__dialog .form-box {
      margin: 0;
    }

    .modal__close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      width: 36px;
      height: 36px;
      border: 0;
      border-radius: 50%;
      background: #f1f3f7;
      color: var(--text);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }

    .mobile-sticky {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 69;
      background: rgba(12,15,20,.94);
      backdrop-filter: blur(16px);
      padding: 10px 14px;
      border-top: 1px solid var(--line);
    }

    .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;
    }

    @media (max-width: 1060px) {
      .hero__grid,
      .split,
      .credit,
      .footer-form,
      .car-stock__list {
        grid-template-columns: 1fr;
      }

      .car-stock__media {
        min-height: 132px;
      }

      .car-stock__head h3 {
        font-size: 18px;
      }

      .car-stock__price {
        font-size: 20px;
      }

      .quiz {
        max-width: 620px;
        scroll-margin-top: 70px;
      }

      .nav {
        display: none;
        position: fixed;
        inset: 70px 0 auto 0;
        background: rgba(12,15,20,.98);
        border-bottom: 1px solid var(--line);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
      }

      body.menu-open .nav {
        display: flex;
      }

      .burger {
        display: block;
      }

      .topbar__actions .btn {
        display: none;
      }

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

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

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

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

      .topbar__inner {
        min-height: 62px;
      }

      .brand {
        min-width: 0;
      }

      .brand__text span {
        display: none;
      }

      .phone-link {
        display: none;
      }

      .hero {
        padding: 42px 0 54px;
      }

      h1 {
        font-size: 41px;
      }

      .hero__badges,
      .form-grid,
      .compare,
      .model-cards,
      .steps,
      .cards,
      .brand-grid,
      .warning {
        grid-template-columns: 1fr;
      }

      section {
        padding: 58px 0;
      }

      .section-head {
        display: block;
      }

      .panel,
      .form-box,
      .dealer-info,
      .warning {
        padding: 24px;
      }

      .note-box {
        display: block;
      }

      .note-box .btn {
        margin-top: 14px;
        width: 100%;
      }

      .quiz__head {
        display: block;
      }

      .quiz__step-label {
        display: inline-flex;
        margin-top: 12px;
      }

      .quiz__actions {
        flex-direction: column-reverse;
      }

      .floating-call {
        bottom: 78px;
        right: 16px;
      }

      .mobile-sticky {
        display: block;
      }

      body {
        padding-bottom: 74px;
      }

      .footer__inner {
        display: block;
      }

      .footer__notice {
        margin-top: 16px;
        text-align: left;
      }
    }
