    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html, body {
      overflow-x: hidden;
    }
    :root {
      /* Палитра референса https://goroddorog-avto.ru */
      --accent-red: #ff1e48;
      --accent-red-dark: #e50030;
      --accent-red-deep: #cc002d;
      --accent-red-deeper: #be123c;
      --accent-red-darkest: #9f1239;

      --navy-black: #020617;
      --navy-dark: #0f172a;
      --navy-mid: #1e293b;
      --slate-600: #334155;
      --slate-500: #475569;

      --white: #ffffff;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-400: #94a3b8;
      --gray-500: #64748b;

      --promo-yellow: #ffda00;
      --promo-orange: #ff7f00;
      --success-green: #22c55e;

      /* Семантические токены (светлая тема) */
      --bg: var(--gray-50);
      --surface: var(--white);
      --fg: var(--navy-black);
      --muted: var(--gray-500);
      --border: var(--gray-200);
      --hero-bg: var(--navy-dark);
      --hero-fg: var(--white);
    }
    [data-theme="dark"] {
      --bg: var(--navy-black);
      --surface: var(--navy-mid);
      --fg: var(--white);
      --muted: var(--gray-400);
      --border: var(--slate-600);
      --hero-bg: var(--navy-black);
    }
    body {
      font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.6;
      overflow-x: hidden;
      transition: background 0.3s, color 0.3s;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    button {
      font-family: inherit;
      border: none;
      cursor: pointer;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section {
      padding: 80px 0;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s, transform 0.6s;
      scroll-margin-top: 90px;
    }
    .section.visible {
      opacity: 1;
      transform: translateY(0);
    }
    @media (max-width: 768px) {
      .section {
        padding: 50px 0;
        scroll-margin-top: 80px;
      }
    }

    /* === ШАПКА === */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s, border-color 0.3s;
    }
    body {
      padding-top: 80px;
    }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      gap: 20px;
    }
    .header__burger {
      display: none;
      background: none;
      width: 32px;
      height: 32px;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
    }
    .header__burger span {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--fg);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .header__burger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .header__burger.active span:nth-child(2) {
      opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    .header__logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 18px;
      letter-spacing: -0.02em;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .header__logo-icon {
      width: 40px;
      height: 40px;
      background: var(--accent-red);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 800;
      font-size: 20px;
    }
    .header__nav {
      display: flex;
      gap: 30px;
      flex: 1;
      justify-content: center;
    }
    .header__nav a {
      font-weight: 600;
      font-size: 15px;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .header__nav a:hover {
      color: var(--accent-red);
    }
    .header__phone {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      flex-shrink: 0;
    }
    .header__phone-number {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .header__phone-time {
      font-size: 13px;
      color: var(--muted);
      white-space: nowrap;
    }
    .header__cta {
      background: var(--accent-red);
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      transition: background 0.2s, transform 0.1s;
      white-space: nowrap;
    }
    .header__cta:hover {
      background: var(--accent-red-dark);
      transform: translateY(-1px);
    }
    .header__cta-text-full {
      display: inline;
    }
    .header__cta-text-short {
      display: none;
    }
    .theme-toggle {
      width: 50px;
      height: 50px;
      background: var(--surface);
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      flex-shrink: 0;
      cursor: pointer;
      color: var(--fg);
    }
    .theme-toggle:hover {
      border-color: var(--accent-red);
    }
    .theme-toggle svg {
      width: 20px;
      height: 20px;
    }
    @media (max-width: 1024px) {
      .header__nav {
        display: none;
      }
      .header__burger {
        display: flex;
      }
      .header .theme-toggle {
        display: none;
      }
    }
    @media (max-width: 640px) {
      .header__inner {
        height: 70px;
      }
      body {
        padding-top: 70px;
      }
      .header__phone {
        display: none;
      }
      .header__cta {
        padding: 10px 16px;
        font-size: 14px;
      }
      .header__cta-text-full {
        display: none;
      }
      .header__cta-text-short {
        display: inline;
      }
    }

    /* === MOBILE MENU === */
    .mobile-menu {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 20px;
      transform: translateY(-100%);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
      z-index: 99;
    }
    .mobile-menu.active {
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-menu a {
      display: block;
      padding: 12px 0;
      font-weight: 600;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu a:last-of-type {
      border-bottom: none;
    }
    .mobile-menu__bottom {
      display: none;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    @media (max-width: 1024px) {
      .mobile-menu__bottom {
        display: flex;
      }
    }
    .mobile-menu__theme-label {
      font-weight: 600;
      font-size: 15px;
    }
    @media (max-width: 640px) {
      .mobile-menu {
        top: 70px;
      }
    }

    /* === HERO === */
    .hero {
      background:
        linear-gradient(135deg, rgba(2, 6, 23, 0.93) 0%, rgba(15, 23, 42, 0.80) 100%),
        url('../img/hero.jpg') center/cover no-repeat;
      color: var(--hero-fg);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero__grid {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 60px;
      align-items: start;
      position: relative;
      z-index: 1;
    }
    .hero__badges {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .hero__badge {
      background: var(--accent-red);
      color: white;
      padding: 8px 16px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      position: relative;
      overflow: hidden;
    }
    .hero__badge::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: shimmer 3s infinite;
    }
    @keyframes shimmer {
      100% { left: 100%; }
    }
    .hero__badge--yellow {
      background: var(--promo-yellow);
      color: var(--navy-black);
    }
    .hero__badge--link {
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.2s;
    }
    .hero__badge--link:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 30, 72, 0.4);
    }
    .hero__title {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 800;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }
    .hero__title span {
      color: var(--accent-red);
    }
    .hero__subtitle {
      font-size: 18px;
      color: var(--gray-300);
      margin-bottom: 32px;
      max-width: 600px;
    }
    .hero__chips {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .hero__chip {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 10px 16px;
      border-radius: 24px;
      font-size: 14px;
      font-weight: 600;
      backdrop-filter: blur(10px);
    }
    .hero__features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-bottom: 40px;
    }
    .hero__feature {
      display: flex;
      align-items: start;
      gap: 12px;
    }
    .hero__feature-icon {
      width: 24px;
      height: 24px;
      background: var(--accent-red);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: white;
    }
    .hero__feature-text {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.4;
    }
    .hero__ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero__cta {
      padding: 16px 32px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 16px;
      transition: all 0.2s;
    }
    .hero__cta--primary {
      background: var(--accent-red);
      color: white;
    }
    .hero__cta--primary:hover {
      background: var(--accent-red-dark);
      transform: translateY(-2px);
    }
    .hero__cta--secondary {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
    }
    .hero__cta--secondary:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    /* === КОНСУЛЬТАНТ === */
    .consultant {
      background: var(--surface);
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
      position: sticky;
      top: 100px;
    }
    .consultant__status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--success-green);
      color: white;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 16px;
    }
    .consultant__status::before {
      content: '';
      width: 8px;
      height: 8px;
      background: white;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }
    .consultant__avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--gray-200);
      margin-bottom: 16px;
      overflow: hidden;
    }
    .consultant__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .consultant__name {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--fg);
    }
    .consultant__role {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .consultant__btn {
      width: 100%;
      background: var(--accent-red);
      color: white;
      padding: 14px;
      border-radius: 10px;
      font-weight: 700;
      text-align: center;
      transition: background 0.2s;
    }
    .consultant__btn:hover {
      background: var(--accent-red-dark);
    }
    @media (max-width: 1024px) {
      .hero__grid {
        grid-template-columns: 1fr;
      }
      .consultant {
        position: static;
        max-width: 400px;
        margin: 40px auto 0;
      }
    }
    @media (max-width: 640px) {
      .hero {
        padding: 60px 0 50px;
      }
    }
  
  .stats {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
  }
  .stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
  }
  .stats__number {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .stats__label {
    font-size: 16px;
    color: var(--muted);
    font-weight: 600;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
  }
  .section-title span {
    color: var(--accent-red);
  }
  .why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  .why__card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .why__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 30, 72, 0.15);
  }
  .why__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
  }
  .why__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .why__text {
    color: var(--muted);
    line-height: 1.6;
  }
  .about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
  }
  .about__text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
  }
  .about__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  }
  .about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .licenses {
    background: var(--surface);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--border);
  }
  .licenses__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
  }
  .licenses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .licenses__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  .licenses__icon {
    width: 56px;
    height: 56px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
  }
  .licenses__name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .about__content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .licenses {
      padding: 30px 20px;
    }
  }
  .steps {
    background: var(--surface);
  }
  .steps__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
  }
  .steps__item {
    position: relative;
    padding: 32px;
    background: var(--bg);
    border-radius: 16px;
    border: 2px solid var(--border);
  }
  .steps__number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
  }
  .steps__title {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 12px;
  }
  .steps__text {
    color: var(--muted);
    line-height: 1.6;
  }
  .prices__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  .price-card {
    position: relative;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 30, 72, 0.15);
  }
  .price-card--popular {
    border-color: var(--accent-red);
    box-shadow: 0 8px 30px rgba(255, 30, 72, 0.2);
  }
  .price-card__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .price-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }
  .price-card__price {
    text-align: center;
    margin-bottom: 32px;
  }
  .price-card__amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: -0.02em;
  }
  .price-card__period {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
  }
  .price-card__features {
    list-style: none;
    margin-bottom: 32px;
  }
  .price-card__features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    line-height: 1.5;
  }
  .price-card__features li:last-child {
    border-bottom: none;
  }
  .price-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
  }
  .price-card__btn {
    width: 100%;
    background: var(--accent-red);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s;
  }
  .price-card__btn:hover {
    background: var(--accent-red-dark);
  }
  @media (max-width: 640px) {
    .prices__grid {
      grid-template-columns: 1fr;
    }
  }
  .quadropromo__banner {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #ff1e48 0%, #cc002d 100%);
    color: #fff;
    padding: 36px 40px 36px 300px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(255, 30, 72, 0.35);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .quadropromo__banner::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 100%;
    background: url('../img/quadro.png') center / contain no-repeat;
    pointer-events: none;
  }
  .quadropromo__content,
  .quadropromo__btn {
    position: relative;
    z-index: 1;
  }
  .quadropromo__content {
    flex: 1 1 320px;
  }
  .quadropromo__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  .quadropromo__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .quadropromo__title span {
    color: #fff;
    background: rgba(0, 0, 0, 0.22);
    padding: 0 10px;
    border-radius: 6px;
  }
  .quadropromo__br {
    display: none;
  }
  @media (max-width: 640px) {
    .quadropromo__br {
      display: inline;
    }
  }
  .quadropromo__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
  }
  .quadropromo__btn {
    flex-shrink: 0;
    background: #fff;
    color: var(--accent-red);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    transition: transform 0.15s, box-shadow 0.2s;
  }
  .quadropromo__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 768px) {
    .quadropromo__banner {
      padding: 28px 24px;
      gap: 20px;
    }
    .quadropromo__banner::before {
      display: none;
    }
    .quadropromo__title {
      font-size: 22px;
    }
    .quadropromo__btn {
      width: 100%;
      text-align: center;
    }
  }
  .noperesec {
    padding: 90px 0;
    background: var(--bg);
  }
  .noperesec__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
    padding: 0 20px;
  }
  .noperesec__title {
    font-size: clamp(28px, 4.6vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .noperesec__title span {
    color: var(--accent-red);
  }
  .noperesec__subtitle {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
  }
  .noprice-table {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  }
  .noprice-table__row {
    display: contents;
  }
  .noprice-table__cell {
    padding: 18px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    min-height: 64px;
  }
  .noprice-table__row--head .noprice-table__cell {
    border-top: none;
    background: var(--bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
    color: var(--muted);
    justify-content: center;
    padding: 20px 24px;
    min-height: 0;
  }
  .noprice-table__cell--head-ours {
    color: var(--accent-red);
    font-weight: 800;
  }
  .noprice-table__cell--price {
    background: rgba(255, 30, 72, 0.05);
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #cc002d;
    font-variant-numeric: tabular-nums;
  }
  .noprice-table__cell--price-value {
    text-decoration: line-through;
    text-decoration-color: rgba(204, 0, 45, 0.45);
  }
  .noprice-table__cell--price-label {
    display: none;
  }
  .noprice-table__cell--included {
    background: linear-gradient(135deg, rgba(255, 30, 72, 0.04), rgba(255, 30, 72, 0.10));
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent-red);
  }
  .noprice-table__cell--included svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .noprice-table__item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--fg);
    line-height: 1.4;
  }
  .noprice-table__item svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--accent-red);
  }
  .noprice-table__bottom {
    margin: 36px auto 0;
    width: 100%;
    max-width: 1200px;
    padding: 32px 36px;
    background: #0f172a;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
  }
  .noprice-table__bottom-text {
    flex: 1 1 320px;
  }
  .noprice-table__bottom-headline {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .noprice-table__bottom-headline span {
    color: var(--accent-red);
  }
  .noprice-table__bottom p {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    margin: 0;
  }
  .noprice-table__btn {
    background: var(--accent-red);
    color: #fff;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    text-decoration: none;
  }
  .noprice-table__btn:hover {
    background: var(--accent-red-dark);
    transform: translateY(-1px);
  }
  @media (max-width: 860px) {
    .noprice-table {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .noprice-table__cell {
      border-top: none;
      padding: 12px 16px;
      min-height: 0;
    }
    .noprice-table__row {
      display: flex;
      flex-direction: column;
      gap: 8px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px 20px;
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }
    .noprice-table__row--head {
      display: none;
    }
    .noprice-table__item {
      font-size: 16px;
      font-weight: 600;
    }
    .noprice-table__cell--price,
    .noprice-table__cell--included {
      justify-content: flex-start;
      background: transparent;
      padding: 6px 0;
    }
    .noprice-table__cell--price {
      font-size: 15px;
    }
    .noprice-table__cell--price-value {
      text-decoration: line-through;
      text-decoration-color: rgba(204, 0, 45, 0.45);
    }
    .noprice-table__cell--price-label {
      display: inline;
      color: var(--muted);
      font-weight: 600;
      margin-right: 6px;
    }
    .noprice-table__cell--included::before {
      content: "У нас: ";
      color: var(--accent-red);
      margin-right: 6px;
    }
    .noprice-table__cell--included svg {
      width: 18px;
      height: 18px;
    }
    .noprice-table__bottom {
      flex-direction: column;
      text-align: center;
      padding: 28px 24px;
      gap: 16px;
    }
    .noprice-table__bottom-text {
      flex: 1 1 100%;
    }
    .noprice-table__bottom-headline {
      font-size: 18px;
    }
    .noprice-table__bottom p {
      font-size: 14px;
    }
  }
  @media (max-width: 480px) {
    .noprice-table {
      gap: 10px;
    }
    .noprice-table__row {
      padding: 14px 16px;
    }
    .noprice-table__item {
      font-size: 15px;
    }
  }
  .offers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  .offer-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 30, 72, 0.15);
  }
  .offer-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-200);
  }
  .offer-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  .offer-card:hover .offer-card__image img {
    transform: scale(1.05);
  }
  .offer-card__content {
    padding: 24px;
  }
  .offer-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .offer-card__text {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .offer-card__btn {
    width: 100%;
    background: var(--accent-red);
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.2s;
  }
  .offer-card__btn:hover {
    background: var(--accent-red-dark);
  }
  @media (max-width: 640px) {
    .offers__grid {
      grid-template-columns: 1fr;
    }
  }
  .reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  .review-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
  }
  .review-card__stars {
    color: var(--promo-yellow);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .review-card__text {
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--fg);
  }
  .review-card__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .review-card__author strong {
    font-weight: 700;
    font-size: 16px;
  }
  .review-card__author span {
    font-size: 14px;
    color: var(--muted);
  }
  .faq__list {
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
  }
  .faq-item__question {
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 700;
    background: none;
    color: var(--fg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background 0.2s;
  }
  .faq-item__question:hover {
    background: var(--bg);
  }
  .faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-item.active .faq-item__icon {
    transform: rotate(180deg);
  }
  .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
  }
  .faq-item.active .faq-item__answer {
    max-height: 2000px;
    padding: 0 28px 24px;
  }
  .faq-item__answer p {
    line-height: 1.7;
    color: var(--muted);
  }
  .faq-item__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
  }
  .faq-item__gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: block;
  }
  @media (max-width: 768px) {
    .faq-item__gallery {
      grid-template-columns: 1fr;
    }
    .faq-item__gallery img {
      height: 220px;
    }
  }
  .contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .contacts__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .contacts__item {
    display: flex;
    gap: 20px;
    align-items: start;
  }
  .contacts__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: var(--accent-red);
    color: white;
    border-radius: 12px;
  }
  .contacts__item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .contacts__item p {
    color: var(--muted);
    line-height: 1.6;
  }
  .contacts__item a {
    color: var(--accent-red);
    font-weight: 600;
    transition: color 0.2s;
  }
  .contacts__item a:hover {
    color: var(--accent-red-dark);
  }
  .contacts__map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    aspect-ratio: 16 / 12;
    min-height: 360px;
  }
  .contacts__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  @media (max-width: 768px) {
    .contacts__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .contacts__map {
      aspect-ratio: 4 / 3;
      min-height: 0;
      max-width: 100%;
    }
  }
  @media (max-width: 640px) {
    .contacts__map {
      aspect-ratio: 1 / 1;
    }
  }
  .footer {
    background: var(--navy-dark);
    color: white;
    padding: 60px 0 30px;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  .footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .footer__logo-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  .footer__desc {
    line-height: 1.7;
    color: var(--gray-300);
  }
  .footer__title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer__nav a {
    color: var(--gray-300);
    transition: color 0.2s;
  }
  .footer__nav a:hover {
    color: var(--accent-red);
  }
  .footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.6;
  }
  .footer__list a {
    color: var(--accent-red);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__list a:hover {
    color: var(--accent-red-dark);
  }
  .footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--gray-400);
    font-size: 14px;
  }
  @media (max-width: 1024px) {
    .footer__grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  }
  @media (max-width: 640px) {
    .footer__grid {
      grid-template-columns: 1fr;
    }
  }
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal.active {
    display: flex;
  }
  .modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
  }
  .modal__content {
    position: relative;
    background: var(--surface);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  .modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .modal__close:hover {
    background: var(--accent-red);
    color: white;
  }
  .modal__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
  .modal__subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.5;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
  }
  .form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg);
    color: var(--fg);
    transition: border-color 0.2s;
  }
  .form-group input:focus {
    outline: none;
    border-color: var(--accent-red);
  }
  .modal__submit {
    width: 100%;
    background: var(--accent-red);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    transition: background 0.2s;
  }
  .modal__submit:hover {
    background: var(--accent-red-dark);
  }
  .modal__privacy {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 20px;
    line-height: 1.4;
  }
  .modal__success {
    text-align: center;
  }
  .modal__success svg {
    margin: 0 auto 24px;
  }
  .modal__success h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
  }
  .modal__success p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .modal__success-btn {
    background: var(--accent-red);
    color: white;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.2s;
  }
  .modal__success-btn:hover {
    background: var(--accent-red-dark);
  }
  @media (max-width: 640px) {
    .modal__content {
      padding: 40px 24px;
    }
  }

  /* === ЛАЙТБОКС === */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    padding: 40px;
  }
  .lightbox.active {
    opacity: 1;
    visibility: visible;
  }
  .lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.25s;
  }
  .lightbox.active .lightbox__img {
    transform: scale(1);
  }
  .lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
  }
  .lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
  }
  .faq-item__gallery img {
    cursor: zoom-in;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .faq-item__gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
