:root {
  --font-base: Inter, Manrope, "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-bg: #0b111b;
  --color-bg-soft: #101827;
  --color-text: #172033;
  --color-muted: #647085;
  --color-light: #f5f7fb;
  --color-white: #ffffff;
  --color-accent: #F97316;
  --color-accent-strong: #EA580C;
  --color-border: rgba(15, 23, 42, .12);
  --shadow-soft: 0 20px 70px rgba(15, 23, 42, .12);
  --shadow-glow: 0 22px 80px rgba(249, 115, 22, .20);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: #b78300; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(247, 201, 72, .65);
  outline-offset: 3px;
}
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.site-main { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }
.skip-link { position: absolute; left: 16px; top: -80px; z-index: 1000; padding: 10px 14px; border-radius: 12px; background: #fff; color: #111827; }
.skip-link:focus { top: 16px; }
.visually-hidden { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(11,17,27,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header.is-scrolled { box-shadow: 0 10px 40px rgba(0,0,0,.18); }
.site-header__inner { min-height: 78px; display: flex; align-items: center; gap: 18px; }
.site-logo img { width: 110px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; color: rgba(255,255,255,.82); font-size: 15px; font-weight: 600; }
.site-nav a:hover { color: var(--color-accent); }
.site-header__contacts { display: flex; align-items: center; gap: 16px; color: #fff; }
.site-header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.icon-box { width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(247,201,72,.16); color: var(--color-accent); }
.icon-box img { width: 18px; height: 18px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.06); color: #fff; }
.nav-toggle span { display:block; width:20px; height:2px; margin:4px auto; background:#fff; border-radius:10px; transition:.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 999px; padding: 13px 22px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { color: #0b111b; background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong)); box-shadow: var(--shadow-glow); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
.btn--outline { color: #111827; border-color: var(--color-border); background: #fff; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 9px 14px; font-size: 14px; }

.section { padding: 92px 0; }
.section--soft { background: #eef2f7; }
.section--dark { background: radial-gradient(circle at top right, rgba(247,201,72,.18), transparent 35%), #0b111b; color: #fff; }
.section--form { background: #0f172a; color: #fff; }
.section-head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2, .page-hero h1, .hero-slide h1 { margin: 0 0 16px; line-height: 1.05; letter-spacing: -.04em; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); }
.section-head p, .page-hero p { margin: 0; color: var(--color-muted); }
.section--dark .section-head p, .section--form p { color: rgba(255,255,255,.72); }
.section-kicker { margin: 0 0 12px; color: var(--color-accent); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.accent, .hero-slide h1 span { color: var(--color-accent); }
.section-action { margin-top: 34px; text-align: center; }

.hero { position: relative; min-height: 720px; background: #0b111b; color: #fff; overflow: hidden; }
.hero-slider { position: relative; min-height: 720px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease, visibility .65s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,14,.9), rgba(5,8,14,.62), rgba(5,8,14,.28)); }
.hero-slide__content { position: relative; z-index: 1; min-height: 720px; display: flex; flex-direction: column; justify-content: center; max-width: var(--container); }
.hero-slide h1 { max-width: 760px; font-size: clamp(42px, 7vw, 82px); }
.hero-slide p:not(.section-kicker) { max-width: 640px; margin: 0 0 30px; color: rgba(255,255,255,.78); font-size: 19px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-controls { position: absolute; z-index: 3; left: 50%; bottom: 34px; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dot.is-active { background: var(--color-accent); width: 34px; border-radius: 20px; }

.calc-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.calc-preview, .feedback-form, .contact-panel, .content-card, .why-card, .detail-card, .article-detail { border: 1px solid var(--color-border); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-soft); }
.calc-preview { padding: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; color: var(--color-text); }
.calc-preview label, .feedback-form__field { display: grid; gap: 7px; font-weight: 700; }
.calc-preview input, .calc-preview select, .feedback-form input, .feedback-form select, .feedback-form textarea { width: 100%; border: 1px solid var(--color-border); border-radius: 16px; padding: 13px 15px; background: #fff; color: var(--color-text); }
.calc-preview button { grid-column: 1 / -1; }
.calc-message { grid-column: 2; padding: 16px 18px; border-radius: 18px; background: rgba(247,201,72,.14); color: #fff; }

.services-grid, .catalog-grid, .news-grid, .content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card, .car-card, .news-card { overflow: hidden; border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--color-border); box-shadow: 0 18px 48px rgba(15,23,42,.08); transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover, .car-card:hover, .news-card:hover { transform: translateY(-4px); box-shadow: 0 24px 80px rgba(15,23,42,.14); }
.service-card__media, .car-card__media, .news-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #182132; }
.service-card__media img, .car-card__media img, .news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover img, .car-card:hover img, .news-card:hover img { transform: scale(1.04); }
.service-card__body, .car-card__body, .news-card__body { padding: 22px; }
.service-card__icon { width: 46px; height: 46px; display: grid; place-items: center; margin: -46px 0 14px; position: relative; border-radius: 16px; background: var(--color-accent); color: #111827; }
.service-card__icon img { width: 24px; height: 24px; }
.service-card h3, .car-card h3, .news-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.15; }
.service-card p, .car-card__text, .news-card p { color: var(--color-muted); margin: 0 0 18px; }
.car-card__top { display: grid; gap: 10px; }
.car-card__top strong, .price-box strong { color: #0b111b; font-size: 22px; }
.car-card__specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0; }
.car-card__specs div { padding: 10px; border-radius: 14px; background: #f4f6fa; }
.car-card__specs dt { color: var(--color-muted); font-size: 12px; }
.car-card__specs dd { margin: 0; font-weight: 800; font-size: 13px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: #b78300; font-weight: 900; }

.category-nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.category-card { display: grid; grid-template-columns: 96px 1fr; min-height: 116px; overflow: hidden; border-radius: 22px; background: #fff; border: 1px solid var(--color-border); box-shadow: 0 14px 42px rgba(15,23,42,.07); }
.category-card--all { display: block; padding: 20px; background: #101827; color: #fff; }
.category-card__image img { width: 100%; height: 100%; object-fit: cover; }
.category-card__body { padding: 18px; }
.category-card__title { display: block; margin-bottom: 6px; font-weight: 900; }
.category-card__text { color: var(--color-muted); font-size: 14px; }
.category-card--all .category-card__text { color: rgba(255,255,255,.7); }
.catalog-spacer { margin-top: 34px; }

.why-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 18px; }
.why-card { padding: 26px; }
.why-card--accent { background: #101827; color: #fff; }
.why-card strong { color: var(--color-accent); font-size: 32px; }
.why-card h2, .why-card h3 { margin: 10px 0; }
.why-card p { margin: 0; color: var(--color-muted); }
.why-card--accent p { color: rgba(255,255,255,.76); }

.page-hero { padding: 100px 0 70px; color: #fff; background: radial-gradient(circle at 20% 20%, rgba(247,201,72,.25), transparent 34%), #0b111b; }
.page-hero--compact { padding: 74px 0 56px; }
.page-hero h1 { max-width: 820px; font-size: clamp(36px, 5vw, 64px); }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.74); font-size: 18px; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.page-hero__image { border-radius: var(--radius-xl); box-shadow: 0 24px 80px rgba(0,0,0,.25); }
.breadcrumbs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; color: rgba(255,255,255,.7); font-size: 14px; }
.breadcrumbs a { color: rgba(255,255,255,.88); }
.detail-card .breadcrumbs, .article-detail .breadcrumbs { color: var(--color-muted); }
.detail-card .breadcrumbs a, .article-detail .breadcrumbs a { color: #b78300; }

.detail-card, .article-detail { padding: 30px; }
.detail-hero { display: grid; grid-template-columns: 1fr .9fr; gap: 34px; align-items: center; }
.detail-hero h1, .article-detail h1 { margin: 0 0 16px; font-size: clamp(34px, 5vw, 60px); line-height: 1.05; letter-spacing: -.04em; }
.lead-text { color: var(--color-muted); font-size: 18px; }
.detail-hero__media { border-radius: var(--radius-xl); overflow: hidden; background: #101827; }
.detail-hero__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.price-box { display: inline-grid; gap: 2px; padding: 14px 18px; margin: 18px 0; border-radius: 18px; background: #fff7d7; }
.price-box span { color: var(--color-muted); font-size: 13px; }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; margin-top: 34px; }
.detail-section, .spec-panel { padding: 24px; border-radius: 22px; background: #f7f9fc; }
.spec-list { display: grid; gap: 10px; }
.spec-list div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--color-border); padding-bottom: 10px; }
.spec-list dt { color: var(--color-muted); }
.spec-list dd { margin: 0; font-weight: 800; text-align: right; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #0a8f4c; font-weight: 900; }
.muted-note { color: var(--color-muted); }
.detail-facts { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.detail-facts div { padding: 14px 18px; border-radius: 18px; background: #f4f6fa; }
.detail-facts b, .detail-facts span { display: block; }
.detail-facts span { color: var(--color-muted); font-size: 13px; }
.article-detail__head { max-width: 860px; }
.article-detail__image { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius-xl); margin: 26px 0; }
.article-body { max-width: 850px; font-size: 18px; }

.feedback-layout, .contacts-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.feedback-form { padding: 26px; color: var(--color-text); }
.feedback-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.feedback-form__field span, .calc-preview label span { color: #273247; font-size: 14px; }
.feedback-form textarea { min-height: 126px; resize: vertical; }
.feedback-form__check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-muted); }
.feedback-form__check input { width: 18px; height: 18px; margin-top: 3px; }
.feedback-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.feedback-form__submit { margin-top: 20px; width: 100%; }
.feedback-form__success, .feedback-form__error { margin-bottom: 16px; padding: 12px 14px; border-radius: 14px; }
.feedback-form__success { background: #e8fff2; color: #086239; }
.feedback-form__error { background: #fff0f0; color: #9f1c1c; }
.contact-panel { padding: 28px; display: grid; gap: 14px; }
.contact-line { display: flex; gap: 10px; align-items: center; color: var(--color-text); font-weight: 700; }
.contact-line img { width: 20px; height: 20px; color: #b78300; }
.legal-content { max-width: 880px; padding: 34px; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-soft); }
.legal-content h2 { margin-top: 32px; }
.empty-state { padding: 42px; text-align: center; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-soft); }

.news-card time { display: block; margin-bottom: 12px; color: #b78300; font-weight: 800; font-size: 14px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.pagination a, .pagination span { min-width: 40px; height: 40px; display: inline-grid; place-items: center; padding: 0 12px; border-radius: 14px; background: #fff; border: 1px solid var(--color-border); font-weight: 800; }
.pagination span { background: #101827; color: #fff; }

.cookie-consent { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 200; }
.cookie-consent__content { max-width: 980px; margin-inline: auto; display: flex; gap: 18px; align-items: center; justify-content: space-between; padding: 18px; border-radius: 22px; background: rgba(11,17,27,.94); color: #fff; box-shadow: 0 24px 80px rgba(0,0,0,.28); }
.cookie-consent p { margin: 0; color: rgba(255,255,255,.78); }
.cookie-consent a { color: var(--color-accent); }
.cookie-consent__actions { display: flex; gap: 10px; flex-shrink: 0; }

.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr 1fr; gap: 34px; padding: 62px 0 38px; }
.site-footer { color: #fff; background: #070b12; }
.footer-logo { width: 176px; height: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.68); max-width: 360px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.08); }
.footer-socials img { width: 22px; height: 22px; }
.footer-nav, .footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h2, .footer-contacts h2 { margin: 0 0 8px; font-size: 16px; color: var(--color-accent); }
.footer-nav a, .footer-contacts a, .footer-contacts span { color: rgba(255,255,255,.72); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 24px 0 34px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.56); font-size: 14px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-contacts a, .contact-link, .phone-link { overflow-wrap: normal; word-break: normal; white-space: nowrap; }

@media (max-width: 1180px) {
  .site-nav, .site-header__contacts { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav.is-open { position: absolute; display: grid; left: 16px; right: 16px; top: 88px; padding: 20px; border-radius: 22px; background: #101827; box-shadow: 0 24px 80px rgba(0,0,0,.32); }
  .calc-card, .feedback-layout, .contacts-layout, .detail-hero, .detail-layout, .page-hero__grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .category-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, var(--container)); }
  .site-header__inner { min-height: 70px; }
  .site-logo img { width: 110px; }
  .hero, .hero-slider, .hero-slide__content { min-height: 640px; }
  .hero-slide__overlay { background: rgba(5,8,14,.74); }
  .hero-slide p:not(.section-kicker) { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 64px 0; }
  .services-grid, .catalog-grid, .news-grid, .content-grid, .calc-preview, .feedback-form__grid, .why-grid, .category-nav { grid-template-columns: 1fr; }
  .category-card { grid-template-columns: 84px 1fr; }
  .car-card__specs { grid-template-columns: 1fr; }
  .detail-card, .article-detail, .feedback-form, .legal-content { padding: 20px; }
  .cookie-consent__content { display: grid; }
  .cookie-consent__actions { justify-content: stretch; }
  .cookie-consent__actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .footer-contacts a, .contact-link, .phone-link { white-space: normal; }
}


/* Theme adjustments */
.content-card { padding: 26px; }
.content-card h2 { margin-top: 0; }
.content-card p:last-child { margin-bottom: 0; }

.detail-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
}
.detail-actions .price-box {
  min-height: 58px;
  margin: 0;
  align-content: center;
}
.detail-actions .btn {
  min-height: 58px;
}
.detail-actions--service {
  margin-top: 20px;
}

.ky6-cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}
.ky6-cookie.ky6-cookie--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ky6-cookie__inner {
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 22px;
  background: rgba(11,17,27,.94);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.ky6-cookie__text { margin: 0; color: rgba(255,255,255,.78); }
.ky6-cookie__text a { color: var(--color-accent); }
.ky6-cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }

.ky6-captcha-wrap { margin-top: 1em; }
.feedback-form__grid label { align-items: start; }

@media (max-width: 760px) {
  .detail-actions { display: grid; }
  .detail-actions .btn { width: 100%; }
  .ky6-cookie__inner { display: grid; }
  .ky6-cookie__actions { justify-content: stretch; }
  .ky6-cookie__actions .btn { width: 100%; }
}

/* Theme refinements */
:root {
  --color-bg: #0c1220;
  --color-bg-soft: #151c2a;
  --color-text: #101827;
  --color-muted: #6b7280;
  --color-light: #f5f6f8;
  --color-accent: #f97316;
  --color-accent-strong: #fbbf24;
  --color-accent-soft: rgba(249, 115, 22, .14);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1280px;
}

body {
  background: #f8fafc;
}

.site-header {
  position: sticky;
  background: rgba(12, 18, 32, .92);
  border-bottom-color: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}

.site-header__inner {
  min-height: 72px;
  gap: 20px;
}

.site-logo img {
  width: 132px;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,.82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.site-header__contacts {
  gap: 14px;
}

.site-header__phone {
  font-size: 16px;
  white-space: nowrap;
}

.icon-box {
  color: #0c1220;
  background: var(--color-accent-strong);
}

.site-header .btn--primary {
  border-radius: 999px;
  padding: 13px 23px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: #111827;
  box-shadow: 0 14px 34px rgba(249,115,22,.24);
}

.btn--ghost {
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.section {
  padding: 88px 0;
}

.section-head h2,
.page-hero h1,
.hero-slide h1 {
  letter-spacing: -.045em;
}

.section-kicker,
.hero-tag {
  color: var(--color-accent);
  letter-spacing: .12em;
}

.accent,
.hero-slide h1 .accent {
  color: var(--color-accent);
}

/* ky6 simple-slider hero template */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  color: #fff;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  height: 68vh;
  max-height: 760px;
}

.hero-slider__track,
.simple-slider-track {
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hero-slider__track::-webkit-scrollbar,
.simple-slider-track::-webkit-scrollbar {
  display: none;
}

.hero-slide,
.simple-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.simple-slide-parallax {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  pointer-events: none;
}

.simple-slide-parallax-bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-slide__overlay,
.simple-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(12,18,32,.94) 0%, rgba(12,18,32,.72) 48%, rgba(12,18,32,.36) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 52px;
}

.hero-tag {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(249,115,22,.36);
  background: rgba(249,115,22,.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-slide h1 {
  max-width: 780px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0,0,0,.42);
}

.hero-slide h1 .accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide p {
  max-width: 620px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 1px 10px rgba(0,0,0,.34);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-messengers {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.messenger {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}

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

.messenger img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.messenger--max { background: rgba(0,136,204,.14); }
.messenger--tg { background: rgba(0,136,204,.14); }
.messenger--wa { background: rgba(37,211,102,.14); }

.hero-dots,
.simple-slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dot,
.simple-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width .2s ease, background .2s ease, border-color .2s ease;
}

.hero-dot.is-active,
.simple-slider-dot.is-active {
  width: 30px;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.hero-arrows {
  position: absolute;
  z-index: 5;
  inset: 50% 24px auto;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease;
}

.hero-arrow span {
  font-size: 34px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #111827;
}

/* Home sections */
.section--dark {
  background: #fff;
  color: var(--color-text);
}

.calc-card {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding: 42px;
  border-radius: 24px;
  background: var(--color-light);
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.section--dark .section-head p,
.section--form p {
  color: var(--color-muted);
}

.services-grid,
.catalog-grid,
.news-grid {
  gap: 22px;
}

.service-card,
.car-card,
.news-card,
.review-card {
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.service-card:hover,
.car-card:hover,
.news-card:hover,
.review-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}

.how {
  background: var(--color-light);
}

.how-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.how-step {
  max-width: 160px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-step__number {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 900;
}

.how-step__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.how-step__icon img {
  width: 28px;
  height: 28px;
}

.how-step span {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.how-line {
  min-width: 30px;
  flex: 1;
  height: 3px;
  margin-top: 18px;
  background: repeating-linear-gradient(90deg, var(--color-accent) 0, var(--color-accent) 8px, transparent 8px, transparent 16px);
}

.why {
  background: var(--color-bg);
  color: #fff;
}

.why .section-head {
  margin-bottom: 42px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.why-card {
  padding: 40px 22px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.07);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  text-align: center;
}

.why-card:last-child {
  border-right: 0;
}

.why-card:hover {
  background: rgba(255,255,255,.035);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(249,115,22,.16);
}

.why-icon img {
  width: 27px;
  height: 27px;
  filter: invert(55%) sepia(93%) saturate(1627%) hue-rotate(350deg) brightness(101%) contrast(95%);
}

.why-stat {
  margin-bottom: 8px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.why-label {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.4;
}

.reviews {
  background: var(--color-light);
}

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.reviews-rating {
  min-width: 180px;
  text-align: right;
}

.rating-score {
  color: var(--color-accent);
  font-size: 72px;
  font-weight: 900;
  line-height: .9;
}

.rating-stars {
  margin: 8px 0;
  color: #fbbf24;
  font-size: 24px;
  letter-spacing: 2px;
}

.reviews-rating span {
  color: var(--color-muted);
  font-size: 14px;
}

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

.review-card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 2px solid transparent;
}

.review-card--featured {
  border-color: var(--color-accent);
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 24px;
  color: rgba(249,115,22,.13);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.review-text {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
}

.review-author strong,
.review-author span {
  display: block;
}

.review-author strong {
  color: var(--color-text);
  font-size: 15px;
}

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

.section--form {
  background: #0c1220;
}

@media (max-width: 1200px) {
  .site-nav,
  .site-header__contacts {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav.is-open {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: grid;
    padding: 18px;
    border-radius: 20px;
    background: var(--color-bg-soft);
    box-shadow: 0 24px 80px rgba(0,0,0,.32);
  }
}

@media (max-width: 980px) {
  .calc-card,
  .reviews-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reviews-rating {
    text-align: left;
  }

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

  .why-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .how-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .how-line {
    display: none;
  }

  .how-step {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-logo img {
    width: 110px;
  }

  .hero-slider {
    min-height: 610px;
    height: 610px;
  }

  .hero-slide__content {
    padding-top: 30px;
  }

  .hero-slide h1 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .hero-slide p {
    font-size: 15px;
  }

  .hero-arrows {
    display: none;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .calc-card {
    padding: 24px;
  }

  .how-track,
  .why-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 28px 18px;
  }
}


/* Component fixes */
.site-header {
  background: rgba(12, 18, 32, .90);
  box-shadow: 0px 12px 67px 36px rgba(255, 170, 0, 0.3);
}
.site-header.is-scrolled {
  background: rgba(12, 18, 32, .97);
}
.site-header__inner {
  min-height: 72px;
}
.site-nav {
  gap: 4px;
  font-size: 16px;
  font-weight: 300;
}
.site-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: #b8c5d6;
}
.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.site-header__phone:hover {
  color: var(--color-accent);
}
.icon-box--phone {
  background: rgba(255,255,255,.08);
  color: var(--color-accent);
}
.icon-box--phone svg {
  width: 16px;
  height: 16px;
}
.btn--primary {
  color: #fff;
  background: var(--color-accent);
  box-shadow: 0 8px 24px rgba(249,115,22,.25);
}
.btn--primary:hover {
  background: var(--color-accent-strong);
}

/* The ky6 simple-slider JS uses horizontal scroll. Earlier legacy opacity styles
   must not hide .simple-slide items. */
.hero-slide,
.simple-slide {
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-slider__track,
.simple-slider-track {
  min-width: 0;
}
.hero-slide,
.simple-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.hero-tag {
  border-color: rgba(249,115,22,.36);
  background: rgba(249,115,22,.18);
}

.catalog-grid {
  align-items: stretch;
}
.car-card,
.service-card,
.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.car-card__media,
.service-card__media,
.news-card__media {
  flex: 0 0 auto;
}
.car-card__body,
.service-card__body,
.news-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.car-card__top {
  min-height: 64px;
}
.car-card__text {
  min-height: 78px;
}
.car-card__specs {
  min-height: 72px;
  align-items: stretch;
}
.car-card__specs div {
  min-height: 60px;
}
.card-link {
  margin-top: auto;
}
.service-card__icon img,
.why-icon img,
.how-step__icon img,
.contact-line img {
  object-fit: contain;
}
.service-card__icon img {
  filter: none;
}

.why-icon {
  background: rgba(249,115,22,.08);
}
.why-icon img {
  filter: invert(52%) sepia(82%) saturate(1601%) hue-rotate(351deg) brightness(100%) contrast(96%);
}

.reviews {
  padding: 100px 0;
  background: var(--color-light);
}
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.reviews-rating {
  min-width: 180px;
  text-align: right;
}
.rating-score {
  color: var(--color-accent);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}
.rating-stars {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin: 8px 0;
  color: #FBBF24;
  letter-spacing: 0;
}
.rating-stars svg {
  width: 28px;
  height: 28px;
}
.reviews-rating > span {
  color: var(--color-muted);
  font-size: 14px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.review-card {
  position: relative;
  padding: 32px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.review-card::before {
  content: none;
}
.review-card--featured {
  border-color: var(--color-accent);
}
.review-card--featured::before {
  content: 'Лучший отзыв';
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}
.review-text {
  margin: 0 0 20px;
  color: var(--color-bg);
  font-size: 15px;
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-author > img {
  display: none;
}
.review-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-avatar--1 { border: 2px solid #3B82F6; }
.review-avatar--2 { border: 2px solid #8B5CF6; }
.review-avatar--3 { border: 2px solid #EC4899; }
.review-avatar--4 { border: 2px solid #14B8A6; }
.review-avatar--5 { border: 2px solid #F59E0B; }
.review-author strong {
  display: block;
  color: var(--color-bg);
  font-size: 14px;
  font-weight: 600;
}
.review-author span {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
}

.reviews-action {
  margin-top: 32px;
}
.price-estimator__cards > strong {
  display: block;
  margin-top: 2px;
  color: #111827;
  font-size: 15px;
}
.price-estimator__card strong {
  color: #111827;
}
.price-estimator__card div,
.price-estimator__card small {
  color: #4b5563;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .site-nav,
  .site-header__contacts {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .site-nav.is-open {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    padding: 18px;
    border-radius: 20px;
    background: var(--color-bg-soft);
    box-shadow: 0 24px 80px rgba(0,0,0,.32);
  }
}
@media (max-width: 980px) {
  .reviews-header {
    flex-direction: column;
    gap: 24px;
  }
  .reviews-rating {
    text-align: left;
  }
  .rating-stars {
    justify-content: flex-start;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .car-card__top,
  .car-card__text,
  .car-card__specs {
    min-height: 0;
  }
}


/* Dynamic reviews catalog */
.reviews--catalog {
  background: var(--color-light);
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}
.review-card--featured::before {
  content: none;
}
.review-badge {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.review-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  font-weight: 900;
}
.rating-stars--small {
  justify-content: flex-start;
  margin: 0;
  gap: 2px;
}
.rating-stars--small svg {
  width: 16px;
  height: 16px;
}
.review-card__link {
  margin-top: auto;
  color: var(--color-accent);
  font-weight: 800;
}
.reviews .pagination {
  margin-top: 34px;
}
.review-detail {
  max-width: 920px;
  margin: 0 auto;
}
.review-detail__head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}
.review-detail__avatar {
  width: 76px;
  height: 76px;
}
.review-detail__head h1 {
  margin: 0 0 6px;
}
.review-detail__car {
  margin: 0 0 12px;
  color: var(--color-muted);
  font-weight: 700;
}
.review-detail__text {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.75;
}
.review-detail__text p:first-child {
  margin-top: 0;
}

@media (max-width: 760px) {
  .review-detail__head {
    align-items: flex-start;
  }
}


/* Price estimator */
.estimator-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(249, 115, 22, .18), transparent 32%),
    linear-gradient(135deg, #111827 0%, #0f172a 58%, #020617 100%);
}

.estimator-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(640px, 1.32fr);
  gap: 34px;
  align-items: start;
}

.estimator-intro h2 {
  color: #fff;
  margin-bottom: 18px;
}

.estimator-intro p {
  color: rgba(255, 255, 255, .74);
  max-width: 620px;
}

.estimator-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .84);
}

.estimator-points li {
  position: relative;
  padding-left: 30px;
}

.estimator-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, .16);
}

.estimator-card,
.price-estimator-form {
  min-width: 0;
}

.price-estimator-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 26px 90px rgba(2, 6, 23, .28);
  color: var(--color-text);
}

.price-estimator-form__form,
.price-estimator-form__step,
.price-estimator-form__lead {
  display: grid;
  gap: 18px;
}

.price-estimator-form__lead {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, .1);
}

.price-estimator-form__lead[hidden] {
  display: none;
}

.price-estimator-form__step-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #111827;
}

.price-estimator-form__step-head span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-estimator-form__step-head strong {
  font-size: 18px;
}

.price-estimator-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.price-estimator-form__grid--lead {
  grid-template-columns: 1fr;
}

.price-estimator-form__field {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.price-estimator-form__field--comment,
.price-estimator-form__check {
  grid-column: 1 / -1;
}

.price-estimator-form__field span,
.price-estimator-form__check span {
  color: #273247;
  font-size: 14px;
}

.price-estimator-form__field em,
.price-estimator-form__check em {
  color: var(--color-accent);
  font-style: normal;
}

.price-estimator-form input,
.price-estimator-form select,
.price-estimator-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 13px 15px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
}

.price-estimator-form textarea {
  min-height: 96px;
  resize: vertical;
}

.price-estimator-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-estimator-form__check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
}

.price-estimator-form__submit {
  width: 100%;
}

.price-estimator-form__error {
  color: #b42318;
  font-size: 13px;
}

.price-estimator-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.price-estimator-form__captcha {
  display: grid;
  gap: 8px;
}

.price-estimator-form__captcha .form-group {
  display: grid;
  gap: 7px;
  margin: 0;
}

.price-estimator-form__captcha label {
  font-size: 14px;
  font-weight: 700;
  color: #273247;
}

.price-estimator__result {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, .28);
}

.price-estimator__result--success {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, .28);
}

.price-estimator__price {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  color: #0f172a;
}

.price-estimator__cards {
  display: grid;
  gap: 10px;
}

.price-estimator__card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .1);
  color: inherit;
  text-decoration: none;
}

.price-estimator.is-loading {
  opacity: .84;
}

@media (max-width: 1180px) {
  .estimator-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .price-estimator-form__grid,
  .price-estimator-form__grid--lead {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .price-estimator-form,
  .estimator-card {
    padding: 20px;
  }
}
