    :root {
      --bg-page: #f8f9fa;
      --bg-surface: #fff;
      --bg-dark: #374151;
      --text-primary: #1a1a1a;
      --text-secondary: #6b7280;
      --border: #e5e7eb;
      --accent: #10b981;
      --accent-hover: #059669;
      --accent-hot: #ef4444;
      --accent-hot-hover: #dc2626;
      --warning-soft: #fef3c7;
      --warning-text: #92400e;
      --gradient-fire: linear-gradient(135deg, #ff6b6b, #ff5252, #ff3d00);
      --gradient-success: linear-gradient(135deg, #10b981, #059669);
      --shadow-md: 0 4px 12px rgb(0 0 0 / 0.08);
      --shadow-lg: 0 20px 40px rgb(0 0 0 / 0.12);
      --shadow-xl: 0 25px 50px rgb(0 0 0 / 0.15);
      --radius-xs: 8px;
      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 28px;
      --radius-pill: 999px;
      --section-gap: 80px;
    }

    html {
      scroll-behavior: auto;
      scroll-padding-top: 104px;
    }

    html[data-theme="dark"] {
      --bg-page: #0b1220;
      --bg-surface: #111827;
      --bg-dark: #020617;
      --text-primary: #e5e7eb;
      --text-secondary: #9ca3af;
      --border: #334155;
      --shadow-md: 0 8px 20px rgb(0 0 0 / 0.35);
      --shadow-lg: 0 20px 40px rgb(0 0 0 / 0.45);
      --shadow-xl: 0 28px 55px rgb(0 0 0 / 0.55);

      color-scheme: dark;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Manrope, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-page);
      color: var(--text-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      transition: background-color 0.25s ease, color 0.25s ease;
    }

    .layout-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section[id] {
      scroll-margin-top: 104px;
    }

    .section-reveal {
      opacity: 0;
      transform: translateY(16px);
      transition:
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }

    .section-reveal--visible {
      opacity: 1;
      transform: translateY(0);
    }

    .site-header {
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(
        135deg,
        rgb(255 255 255 / 0.72),
        rgb(255 255 255 / 0.52)
      );
      border: 1px solid rgb(255 255 255 / 0.45);
      border-top: none;
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
      box-shadow:
        0 10px 30px rgb(17 24 39 / 0.08),
        inset 0 1px 0 rgb(255 255 255 / 0.35);
      backdrop-filter: blur(14px) saturate(160%);
    }

    html[data-theme="dark"] .site-header {
      background: linear-gradient(
        135deg,
        rgb(15 23 42 / 0.82),
        rgb(17 24 39 / 0.68)
      );
      border-color: rgb(148 163 184 / 0.24);
      box-shadow:
        0 12px 32px rgb(0 0 0 / 0.35),
        inset 0 1px 0 rgb(255 255 255 / 0.06);
    }

    .brand {
      display: flex;
      align-items: center;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-primary);
      text-decoration: none;
    }

    .site-nav {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .site-nav__link {
      color: var(--text-primary);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: opacity 0.3s ease;
    }

    .site-nav__link:hover {
      opacity: 0.7;
    }

    .site-phone {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
      font-weight: 600;
      color: var(--text-primary);
    }

    .site-phone__main {
      display: flex;
      align-items: center;
      gap: 8px;
      line-height: 1.1;
    }

    .site-phone__status-dot {
      width: 8px;
      height: 8px;
      border-radius: var(--radius-pill);
      background: var(--accent);
      box-shadow: 0 0 0 rgb(16 185 129 / 0.45);
      animation: phone-status-pulse 2s ease-out infinite;
      flex: 0 0 auto;
      font-size: 0;
      line-height: 0;
    }

    .site-phone__note {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-secondary);
      margin-left: 18px;
      line-height: 1.1;
    }

    @keyframes phone-status-pulse {
      0% {
        transform: scale(0.96);
        box-shadow: 0 0 0 0 rgb(16 185 129 / 0.36);
      }

      70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgb(16 185 129 / 0);
      }

      100% {
        transform: scale(0.96);
        box-shadow: 0 0 0 0 rgb(16 185 129 / 0);
      }
    }

    .hero {
      background: var(--bg-surface);
      padding: 80px 40px;
      margin-bottom: var(--section-gap);
      border-radius: 0 0 var(--radius-xl) var(--radius-xl);
      box-shadow: var(--shadow-md);
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .hero__title {
      font-size: 68px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero__metrics {
      display: flex;
      gap: 40px;
      margin: 32px 0;
      flex-wrap: wrap;
    }

    .metric-card {
      background: var(--bg-page);
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      min-width: 240px;
    }

    .metric-card__label {
      font-size: 13px;
      color: var(--text-secondary);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }

    .metric-card__value {
      font-size: 42px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 6px;
    }

    .metric-card__prefix {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-secondary);
      line-height: 1;
      margin-right: 4px;
      text-transform: none;
    }

    .metric-card__period {
      font-size: 16px;
      color: var(--text-secondary);
    }

    .hero__points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 32px 0;
    }

    .hero-point {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 15px;
    }

    .hero__benefits {
      display: grid;
      gap: 12px;
      margin-top: 12px;
    }

    .benefit-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--text-secondary);
      font-size: 15px;
    }

    .hero-form-card {
      background: var(--bg-dark);
      border-radius: var(--radius-lg);
      padding: 32px;
      color: #fff;
      position: sticky;
      top: 24px;
    }

    .hero-form-card__title {
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group__label {
      display: block;
      margin-bottom: 8px;
      font-size: 13px;
      opacity: 0.8;
    }

    .form-control,
    .form-select {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid rgb(255 255 255 / 0.2);
      background: rgb(255 255 255 / 0.1);
      border-radius: var(--radius-sm);
      font-size: 16px;
      color: #fff;
      font-family: inherit;
    }

    .form-control::placeholder {
      color: rgb(255 255 255 / 0.5);
    }

    .form-control:focus,
    .form-select:focus {
      outline: none;
      border-color: #fff;
      background: rgb(255 255 255 / 0.15);
    }

    .form-submit {
      width: 100%;
      margin-top: 8px;
      padding: 18px;
      border: none;
      border-radius: var(--radius-sm);
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      background: #fff;
      color: var(--text-primary);
      transition: all 0.3s ease;
    }

    .form-submit:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 24px rgb(255 255 255 / 0.2);
    }

    .form-note {
      font-size: 12px;
      opacity: 0.7;
      margin-top: 12px;
      text-align: center;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgb(255 255 255 / 0.2);
    }

    .hero-stats__item {
      text-align: center;
    }

    .hero-stats__value {
      display: block;
      margin-bottom: 4px;
      font-size: 24px;
      font-weight: 800;
    }

    .hero-stats__label {
      font-size: 11px;
      opacity: 0.7;
    }

    .section {
      margin-bottom: var(--section-gap);
    }

    .layout-container > .section:last-of-type {
      margin-bottom: 0;
    }

    .calculator-section {
      background: var(--bg-surface);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
      padding: 64px 40px;
    }

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

    .calculator-card {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
    }

    .calculator-card--primary {
      border: 2px solid var(--text-primary);
    }

    .calculator-card--secondary {
      background: var(--bg-page);
    }

    .calculator-card__title {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .calculator-rows {
      display: flex;
      flex-direction: column;
    }

    .calculator-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }

    .calculator-row--total {
      border-bottom: none;
      padding: 18px 0;
    }

    .calculator-label {
      font-size: 16px;
      color: var(--text-secondary);
    }

    .calculator-row--total .calculator-label {
      color: var(--text-primary);
      font-size: 20px;
      font-weight: 700;
    }

    .calculator-value {
      font-size: 20px;
      color: var(--text-primary);
      white-space: nowrap;
    }

    .calculator-value--positive {
      color: var(--accent-hover);
      font-weight: 700;
    }

    .calculator-value--large {
      font-size: 34px;
      font-weight: 800;
      color: var(--text-primary);
    }

    .calculator-summary {
      margin-top: 16px;
      border-radius: var(--radius-md);
      background: #e5e7eb;
      border: 1px solid #d1d5db;
      padding: 16px;
      text-align: center;
    }

    .calculator-summary--secondary {
      background: var(--bg-surface);
      border-color: var(--border);
    }

    html[data-theme="dark"] .calculator-summary {
      background: #1f2937;
      border-color: #374151;
    }

    html[data-theme="dark"] .calculator-summary--secondary {
      background: #0f172a;
      border-color: #334155;
    }

    .calculator-summary__label {
      font-size: 14px;
      color: var(--text-secondary);
      margin-bottom: 4px;
    }

    .calculator-summary__value {
      font-size: 36px;
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.1;
    }

    .section__header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section__title {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .section__subtitle {
      font-size: 18px;
      color: var(--text-secondary);
    }

    .cars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 32px;
    }

    .car-card {
      background: var(--bg-surface);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.4s ease;
    }

    .car-card:hover {
      box-shadow: var(--shadow-xl);
      transform: scale(1.03);
    }

    .car-card__image {
      height: 260px;
      background: linear-gradient(135deg, #e5e7eb, #d1d5db);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--text-secondary);
      font-weight: 600;
      position: relative;
      text-align: center;
      padding: 0 16px;
    }

    .car-card__badge {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 10px 20px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      background: var(--text-primary);
      color: #fff;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
    }

    .car-card__badge--accent {
      background: var(--accent);
    }

    .car-card__content {
      padding: 28px;
    }

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

    .car-card__title {
      font-size: 24px;
      font-weight: 800;
    }

    .car-card__availability {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent);
      background: rgb(16 185 129 / 0.1);
      padding: 6px 12px;
      border-radius: var(--radius-xs);
      white-space: nowrap;
    }

    .car-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 20px 0;
      padding: 20px;
      background: var(--bg-page);
      border-radius: var(--radius-md);
    }

    .car-spec {
      font-size: 13px;
      color: var(--text-secondary);
    }

    .car-spec strong {
      display: block;
      margin-bottom: 2px;
      font-size: 15px;
      color: var(--text-primary);
    }

    .car-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .car-price {
      flex: 1;
    }

    .car-price__value {
      display: block;
      font-size: 32px;
      font-weight: 800;
    }

    .car-price__period {
      color: var(--text-secondary);
    }

    .btn {
      border: none;
      border-radius: var(--radius-sm);
      padding: 16px 32px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      color: #fff;
      background: var(--text-primary);
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

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

    .btn--accent:hover {
      background: var(--accent-hover);
    }

    .included {
      background: var(--bg-dark);
      color: #fff;
      padding: 48px;
      border-radius: var(--radius-lg);
      margin-bottom: var(--section-gap);
      box-shadow: var(--shadow-md);
    }

    .included__title {
      text-align: center;
      margin-bottom: 32px;
      font-size: 24px;
      font-weight: 700;
    }

    .included__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 32px;
    }

    .included__item {
      text-align: center;
    }

    .included__icon {
      width: 56px;
      height: 56px;
      margin-bottom: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #f3f4f6;
      opacity: 0.95;
    }

    .included__icon svg {
      width: 44px;
      height: 44px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .included__name {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .included__desc {
      font-size: 14px;
      color: #d1d5db;
    }

    .hot-offer {
      background: var(--bg-surface);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: start;
    }

    .hot-offer__left {
      padding: 60px;
      background: linear-gradient(135deg, #f9fafb, #f3f4f6);
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    html[data-theme="dark"] .hot-offer__left {
      background: linear-gradient(135deg, #0f172a, #111827);
    }

    html[data-theme="dark"] .form-submit {
      background: #f3f4f6;
      color: #0f172a;
    }

    html[data-theme="dark"] .form-submit:hover {
      background: #e5e7eb;
      box-shadow: 0 8px 24px rgb(0 0 0 / 0.2);
    }

    html[data-theme="dark"] .btn:not(.btn--accent) {
      background: #f3f4f6;
      color: #0f172a;
    }

    html[data-theme="dark"] .hot-offer__submit {
      background: #f3f4f6;
      color: #0f172a;
    }

    html[data-theme="dark"] .hot-offer__submit:hover {
      background: #e5e7eb;
    }

    html[data-theme="dark"] .car-card__badge:not(.car-card__badge--accent) {
      background: #f3f4f6;
      color: #0f172a;
    }

    .hot-offer__title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .hot-offer__comparison {
      display: grid;
      gap: 20px;
      margin-bottom: 16px;
    }

    .hot-offer__comparison-card {
      background: var(--bg-surface);
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      transition: all 0.3s ease;
    }

    .hot-offer__comparison-card--active {
      border-color: var(--accent);
      background: linear-gradient(135deg, rgb(16 185 129 / 0.08), rgb(16 185 129 / 0.03));
      box-shadow: 0 8px 24px rgb(16 185 129 / 0.14);
      transform: scale(1.02);
    }

    .hot-offer__comparison-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      gap: 8px;
    }

    .hot-offer__comparison-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-secondary);
      text-transform: uppercase;
    }

    .hot-offer__comparison-label--hot {
      color: var(--text-primary);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 700;
    }

    .hot-offer__discount-tag {
      background: rgb(16 185 129 / 0.15);
      color: var(--accent-hover);
      padding: 4px 12px;
      border-radius: var(--radius-xs);
      font-size: 12px;
      font-weight: 700;
    }

    .hot-offer__comparison-price {
      font-size: 40px;
      font-weight: 800;
      color: var(--text-primary);
    }

    .hot-offer__comparison-price--discount {
      color: var(--accent-hover);
    }

    .hot-offer__comparison-meta {
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-secondary);
    }

    .hot-offer__benefits {
      list-style: none;
      display: grid;
      gap: 16px;
    }

    .hot-offer__benefit-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
    }

    .hot-offer__benefit-icon {
      width: 24px;
      height: 24px;
      border-radius: var(--radius-pill);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
      background: var(--gradient-success);
      flex-shrink: 0;
    }

    .hot-offer__right {
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      background: var(--bg-surface);
      gap: 16px;
    }

    .hot-offer__social-proof {
      margin-bottom: 16px;
      padding: 24px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 14px;
      font-weight: 600;
      background: var(--bg-page);
      color: var(--text-primary);
    }

    .hot-offer__avatars {
      display: flex;
    }

    .hot-offer__avatar {
      width: 28px;
      height: 28px;
      border-radius: var(--radius-pill);
      background: var(--accent);
      border: 2px solid var(--bg-surface);
      margin-left: -8px;
      font-size: 0;
      line-height: 0;
    }

    .hot-offer__avatar:first-child {
      margin-left: 0;
    }

    .hot-offer__form-title {
      font-size: 28px;
      font-weight: 800;
      margin: 8px 0 16px;
    }

    .hot-offer__form-group {
      margin-bottom: 16px;
    }

    .hot-offer__label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 8px;
    }

    .hot-offer__input {
      width: 100%;
      padding: 16px;
      border: 2px solid var(--border);
      border-radius: var(--radius-sm);
      background: var(--bg-surface);
      color: var(--text-primary);
      font-family: inherit;
      font-size: 16px;
    }

    .hot-offer__input:focus {
      outline: none;
      border-color: var(--accent-hot);
    }

    .hot-offer__submit {
      width: 100%;
      border: none;
      border-radius: var(--radius-md);
      min-height: 88px;
      padding: 24px;
      color: #fff;
      background: var(--text-primary);
      font-size: 22px;
      font-weight: 800;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1.2;
      text-align: center;
    }

    .hot-offer__submit:hover {
      background: #111827;
      transform: translateY(-2px);
    }

    .hot-offer__consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin: 8px 0 16px;
      color: var(--text-secondary);
      font-size: 13px;
      line-height: 1.35;
    }

    .hot-offer__consent input {
      margin-top: 2px;
      accent-color: var(--accent);
      flex: 0 0 auto;
    }

    .hot-offer__messenger-note {
      text-align: center;
      color: var(--text-secondary);
      font-size: 13px;
      margin: 28px 0 16px;
    }

    .hot-offer__messengers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .hot-offer__messenger-link {
      text-decoration: none;
      text-align: center;
      border-radius: var(--radius-sm);
      padding: 10px 12px;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      transition: opacity 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .hot-offer__messenger-link:hover {
      opacity: 0.9;
    }

    .hot-offer__messenger-icon {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      object-fit: contain;
    }

    .hot-offer__messenger-link--telegram {
      background: #229ed9;
    }

    .hot-offer__messenger-link--max {
      background: linear-gradient(135deg, #2bb9ff 0%, #2f5dff 45%, #7f39fb 100%);
    }

    .hot-offer__messenger-link--vk {
      background: #4c75a3;
    }

    .faq-contact {
      background: var(--bg-surface);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
      padding: 56px 40px;
    }

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

    .faq-contact__card {
      background: var(--bg-page);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 22px;
      transition: all 0.25s ease;
    }

    .faq-contact__card:hover {
      transform: translateY(-2px);
      border-color: #cfd4dd;
      box-shadow: var(--shadow-md);
    }

    .faq-contact__card--featured {
      border-color: rgb(16 185 129 / 0.35);
      background: linear-gradient(135deg, rgb(16 185 129 / 0.08), rgb(16 185 129 / 0.03));
      box-shadow: 0 6px 18px rgb(16 185 129 / 0.1);
    }

    .faq-contact__card--featured .faq-contact__icon {
      background: rgb(16 185 129 / 0.14);
      border-color: rgb(16 185 129 / 0.28);
      color: var(--accent-hover);
    }

    .faq-contact__icon {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      opacity: 0.8;
      border-radius: var(--radius-sm);
      background: var(--bg-surface);
      border: 1px solid var(--border);
    }

    .faq-contact__icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .faq-contact__question {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .faq-contact__answer {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .faq-contact__feature {
      grid-column: span 3;
      background: linear-gradient(135deg, #334155, #1f2937);
      border-radius: var(--radius-lg);
      padding: 52px 56px;
      color: #fff;
      display: grid;
      grid-template-columns: 1.35fr 1fr;
      gap: 44px;
      align-items: center;
    }

    .faq-contact__left {
      display: grid;
      gap: 18px;
    }

    .faq-contact__phone {
      text-decoration: none;
      color: #fff;
      font-size: clamp(40px, 4.2vw, 72px);
      font-weight: 800;
      line-height: 1.1;
      border: 1px solid rgb(255 255 255 / 0.2);
      border-radius: var(--radius-lg);
      padding: 28px 34px;
      background: rgb(255 255 255 / 0.08);
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .faq-contact__phone:hover {
      background: rgb(255 255 255 / 0.16);
    }

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

    .faq-contact__detail {
      padding: 16px 20px;
      border-radius: var(--radius-sm);
      background: rgb(255 255 255 / 0.1);
      border: 1px solid rgb(255 255 255 / 0.14);
      font-size: 17px;
      display: flex;
      gap: 8px;
      align-items: center;
      min-height: 74px;
    }

    .faq-contact__detail-icon {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
      opacity: 0.95;
    }

    .faq-contact__right {
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .faq-contact__messenger {
      text-decoration: none;
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      text-align: center;
      border-radius: var(--radius-sm);
      padding: 22px 18px;
      background: rgb(255 255 255 / 0.14);
      border: 1px solid rgb(255 255 255 / 0.24);
      transition: all 0.25s ease;
      min-height: 96px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .faq-contact__messenger:hover {
      background: rgb(255 255 255 / 0.22);
      transform: translateX(2px);
    }

    .site-footer {
      margin: 0 0 20px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      padding: 18px 22px;
      color: var(--text-secondary);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .footer-container {
      margin-top: 12px;
    }

    .site-footer__text {
      color: var(--text-secondary);
      font-weight: 500;
      opacity: 0.85;
    }

    .theme-toggle {
      width: 40px;
      height: 40px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      background: var(--bg-page);
      color: var(--text-primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
      flex: 0 0 auto;
    }

    .theme-toggle:hover {
      transform: translateY(-1px);
      border-color: var(--accent);
    }

    .theme-toggle__icon {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .theme-toggle__icon--moon {
      display: none;
    }

    html[data-theme="dark"] .theme-toggle__icon--sun {
      display: none;
    }

    html[data-theme="dark"] .theme-toggle__icon--moon {
      display: block;
    }

    @media (max-width: 1024px) {
      .hero__grid,
      .hero__points {
        grid-template-columns: 1fr;
      }

      .hero__title {
        font-size: 48px;
      }

      .site-header {
        padding: 20px;
      }

      .site-nav {
        display: none;
      }

      .hero-form-card {
        margin-top: 40px;
      }

      .hot-offer {
        grid-template-columns: 1fr;
      }

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

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

      .faq-contact__feature {
        grid-column: span 2;
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    @media (max-width: 968px) {
      .hero {
        padding: 56px 20px;
      }

      .section__title {
        font-size: 32px;
      }

      .calculator-section {
        padding: 40px 24px;
      }

      .calculator-card {
        padding: 24px 20px;
      }

      .calculator-card__title {
        font-size: 22px;
      }

      .calculator-row {
        gap: 10px;
      }

      .calculator-row--total .calculator-label {
        font-size: 18px;
      }

      .calculator-value--large {
        font-size: 30px;
      }

      .calculator-summary__value {
        font-size: 32px;
      }

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

      .car-specs {
        grid-template-columns: 1fr;
      }

      .car-card__footer {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .included {
        padding: 32px 24px;
      }

      .hot-offer__left,
      .hot-offer__right {
        padding: 40px 24px;
      }

      .hot-offer__title {
        font-size: 36px;
      }

      .hot-offer__submit {
        min-height: 72px;
        font-size: 20px;
        padding: 18px 20px;
      }

      .faq-contact {
        padding: 40px 24px;
      }

      .faq-contact__grid {
        grid-template-columns: 1fr;
      }

      .faq-contact__feature {
        grid-column: span 1;
        padding: 28px 24px;
      }

      .faq-contact__phone {
        font-size: 32px;
        padding: 20px 22px;
      }

      .site-footer {
        margin: 0 0 20px;
        justify-content: space-between;
      }
    }

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

      .section-reveal,
      .section-reveal--visible {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
