:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --text: #101828;
  --muted: #667085;
  --line: #e5e7eb;
  --primary: #11a539;
  --primary-dark: #0d7d2a;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --container: 1180px;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo,
.header-actions,
.language-switcher,
.contact-line-inner,
.footer-inner {
  display: flex;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.logo-text {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.logo-text::after {
  content: " kiire auto ost";
  display: none;
}

.logo-text span {
  color: var(--primary);
}

.logo:hover .logo-text::before {
  transform: translateY(-50%) scale(1.1);
}

.header-actions {
  gap: 22px;
}

.header-phone {
  font-weight: 800;
}

.language-switcher {
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.language-switcher .active {
  color: var(--primary);
}

.hero {
  padding: 40px 0 70px;

}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
  gap: 24px;
}


.hero-tag {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;
  border-radius: 999px;

  background: #eef6f0;
  color: #0d7d2a;

  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-tag {
  background: transparent;
  color: #101828;
  padding: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
}

.hero-tag .icon {

  font-size: 22px;
}


.performance-icon {
  width: 22px;
  height: 22px;
  display: inline-block;

  background: linear-gradient(
    152deg,
    #11a539 0%,
    #11a539 50%,
    #c64545 50%,
    #c64545 100%
  );

  -webkit-mask: url("/assets/tabler-icons/car.svg") center / contain no-repeat;
  mask: url("/assets/tabler-icons/car.svg") center / contain no-repeat;
}

.fast-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: rgb(228, 228, 5);
  -webkit-mask: url("/assets/tabler-icons/bolt.svg") center / contain no-repeat;
  mask: url("/assets/tabler-icons/bolt.svg") center / contain no-repeat;
}

.area-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: #003399;
  -webkit-mask: url("/assets/tabler-icons/map-pin.svg") center / contain no-repeat;
  mask: url("/assets/tabler-icons/map-pin.svg") center / contain no-repeat;
}


.icon {
  font-size: 22px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;

}

.hero-content {
  max-width: 780px;
}

.hero-content h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.hero-content h1 span {
  color: var(--primary);
  font-weight: 700;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

.hero-form {
  width: min(100%, 360px);
  margin: 42px auto 0;
  display: grid;
  gap: 14px;
}

.hero-form-p{
    text-align: center;
  margin: auto;
  color: #0000008c;
  margin-top: 20px;
  padding: 0 50px;
}

@media (max-width: 780px) {
   .hero-form-p{
  padding: 0 20px;
}
}

.plate-input {
  height: 64px;
  display: grid;
  grid-template-columns: 32px 1fr;
  overflow: hidden;
  border: 2px solid #000000;
  border-radius: 10px;
  background: #ffffff;
}

.plate-country {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  color: #ffffff;
  background: #003399;
  font-size: 12px;
  font-weight: 800;
}

.plate-country img {
  width: 80%;
}

.plate-country strong {
  font-weight: 600;
}

.plate-country span {
  font-size: 18px;
  line-height: 1;
}

.plate-input input {
  width: 100%;
  min-height: 100%;
  border: 0;
  padding: 0 24px;
  color: var(--text);
  font-size: 56px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  outline: none;
}
@media (max-width: 370px) {
    .plate-input input {
        font-size: 48px;
    }
}

@media (max-width: 340px) {
    .plate-input input {
        font-size: 36px;
    }
}


.plate-input input::placeholder {
  color: #7b8490;
  font-weight: 600;
}

.hero-form button {
  min-height: 62px;
  border: 0;
  border-radius: 10px;
  padding: 0 26px;
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.hero-form button:hover {
  background: var(--primary-dark);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

h1 span {
  color: var(--primary);
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
}

.section-text,
.step-card p,
.benefit-card p,
.faq-list p,
.contacts-box p,
.hero-car-card p {
  color: var(--muted);
  font-weight: 500;
}

.plate-form {
  max-width: 560px;
  display: flex;
  gap: 12px;
}

.plate-form input {
  flex: 1;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 22px;
  background: #ffffff;
}

.plate-form button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  color: #ffffff;
  background: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

.plate-form button:hover {
  background: var(--primary-dark);
}

.hero-visual {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-card,
.step-card,
.benefit-card,
.list-box,
details,
.contacts-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-car-card {
  width: 100%;
  max-width: 430px;
  padding: 30px;
}

.car-placeholder {
  height: 190px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: var(--bg-soft);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.contact-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.contact-line-inner {
  min-height: 70px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
}

.contact-line-inner a{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.section {
  padding: 82px 0;
}

.muted {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.steps-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card,
.benefit-card,
.list-box {
  padding: 26px;
}

.step-card {
  position: relative;
  min-height: 270px;
  padding: 34px 26px 30px;
  text-align: center;
  overflow: hidden;
}
.step-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 36px auto 28px;
  display: block;
}

.step-card > span {
  position: absolute;
  top: 22px;
  left: 24px;

  width: auto;
  height: auto;
  margin: 0;

  color: var(--primary);
  background: transparent;

  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.step-icon {
  height: 82px;
  margin: 6px 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon .icon {
  font-size: 64px;
  color: var(--primary);
}

.step-icon img {
  width: 64px;

}

.step-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.step-card p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.two-columns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.list-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}

.list-box li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.list-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.narrow {
  max-width: 860px;
}

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

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 14px 0 0;
}

.contacts-section {
  padding-top: 0;
}

.contacts-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contacts-list {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero-top,
  .hero-inner,
  .two-columns,
  .contacts-box {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    max-width: 360px;
    margin-bottom: 40px;
  }

  .hero-form {
    margin-inline: auto;
  }

  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .header-phone {
    display: none;
  }

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

  .hero-content h1 {
    font-size: clamp(36px, 11vw, 52px);
  }





  .hero-form button {
    font-size: 20px;
  }

  .plate-form {
    flex-direction: column;
  }

  .section {
    padding: 58px 0;
  }

  .steps-grid,
  .benefits-grid,
  .list-box ul {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@media (max-width: 364px) {
    .footer-inner {
    flex-direction: column;
  }
}

/* 📲 ПЛАНШЕТЫ (центрируем) */
@media (max-width: 920px) and (min-width: 501px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-form {
    margin: 42px auto 0;
  }
}

/* 📱 ТЕЛЕФОНЫ (возвращаем влево) */
@media (max-width: 500px) {
  .hero-content {
    text-align: left;
  }

  .hero-tags {
    justify-content: flex-start;
  }

  .hero-form {
    width: 100%;
  }

  .plate-input {
    width: 100%;
  }

  .hero-form button {
    width: 100%;
  }
}

#cars h2 {
  margin-bottom: 48px;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 64px;
}

.cars-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
}

.cars-item img {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.cars-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.cars-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cars-item img {
  width: 48px;   /* было ~24–32 → увеличиваем */
  height: 48px;
  flex: 0 0 48px;
}

.cars-item span {
  font-size: 18px;   /* было ~22–24 → уменьшаем */
  line-height: 1.3;
  font-weight: 500;
  color: #2b2f33;
}

@media (max-width: 900px) {
  .cars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cars-item {
    font-size: 18px;
  }
}

.benefit-card {
  padding: 40px 36px;
  border: 1px solid #e4e7ec;
  border-radius: 24px;
  background: #fff;
}

.benefit-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}

.benefit-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.45;
  color: #667085;
}

/* десктоп оставляем как есть */
.benefit-head {
  display: block;
}

/* мобилка */
@media (max-width: 768px) {
  .benefit-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .benefit-head img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .benefit-head h3 {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
  }

  .benefit-card p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0px;
  }

  .benefit-card img{
    margin-bottom: 0px;
  }
}

.contacts {
  padding: 80px 0;
  text-align: center;
}

.contacts-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 36px;
  font-weight: 500;
 margin-bottom: 6px;
  color: var(--primary);
}

.contacts-phone svg{
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.contacts-phone img {
  width: 28px;
  height: 28px;
}

.contacts-email {
  display: block;
  font-size: 20px;
  color: #667085;
  margin-bottom: 12px;
}

.contacts-messengers {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.messenger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.messenger img {
  width: 100%;
  height: 100%;
}

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

.floating-contact {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.floating-contact.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
}

.floating-contact-button {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  background: #111827;
  box-shadow: 0 18px 45px rgba(22, 163, 74, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.floating-contact-button span {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
}

.floating-contact-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .2s ease;
}

.floating-contact.is-open .floating-contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000a1;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}


.neutral{
    border: 2px solid #000000a1;
}
/* .phone-floating{
    color: var(--primary);
    border: 2px solid var(--primary);
} */


.floating-contact-button{
    color: rgb(255, 255, 255);
}

.floating-contact-button .icon{
    font-size: 32px;
}

.floating-contact-link img {
  width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .floating-contact-button {
    display: none;
  }

  .floating-contact-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .floating-contact {
    right: 18px;
    bottom: 18px;
  }

  .floating-contact-button {
    width: 60px;
    height: 60px;
  }

  .floating-contact-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(8px);
  }
}

.car-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.car-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.car-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(6px);
}

.car-modal-window {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 28px;
  padding: 34px 36px 36px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .22);

  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}

.car-modal.is-open .car-modal-window {
  transform: translateY(0) scale(1);
}

.car-modal-window h2 {
  margin: 0 48px 26px;
  text-align: center;
  font-size: 30px;
  line-height: 1.15;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 22px;
  flex-shrink: 0;

  transition: transform 0.2s ease;
}

.faq-list details[open] .faq-icon {
  transform: rotate(180deg);
}
.car-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid #e4e7ec;
  border-radius: 50%;
  background: #fff;
  color: #101828;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

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

.car-form input,
.file-upload {
  height: 56px;
  border: 1px solid #d8deea;
  border-radius: 14px;
  background: #fff;
  padding: 0 18px;
  font: inherit;
  font-size: 17px;
  color: #101828;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.file-upload input {
  display: none;
}

.file-upload .icon {
  font-size: 26px;
  color: #16a34a;
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.photo-preview-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e4e7ec;
  background: #f8fafc;
}

.photo-preview-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.photo-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, .8);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.car-form-submit {
  width: 100%;
  height: 60px;
  margin-top: 22px;
  border: 0;
  border-radius: 14px;
  background: #16a34a;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.car-modal-content.is-hidden {
  display: none;
}

.car-form-status {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 20px;
  animation: statusFade .25s ease;
}

.car-form-status[hidden] {
  display: none;
}

.car-form-status img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 22px;
  animation: statusIconFloat 1.4s ease-in-out infinite;
}

.car-form-status h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
  color: #0f172a;
}

.car-form-status p {
  max-width: 430px;
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: #667085;
}

.car-form-status.is-success h3 {
  color: #16a34a;
}

.car-form-status.is-error h3 {
  color: #dc2626;
}

.car-form-status.is-success img,
.car-form-status.is-error img {
  animation: statusIconPop .45s ease;
}

@keyframes statusFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statusIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes statusIconPop {
  0% {
    opacity: 0;
    transform: scale(.75);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .car-modal {
    padding: 12px;
    align-items: flex-start;
    padding-top: 18px;
  }

  .car-modal-window {
    width: 100%;
    max-height: calc(100vh - 36px);
    padding: 26px 16px 18px;
    border-radius: 22px;
  }

  .car-modal-window h2 {
    margin: 0 44px 20px 0;
    text-align: left;
    font-size: 26px;
  }

  .car-modal-close {
    top: 18px;
    right: 16px;
  }

  .car-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .car-form input,
  .file-upload {
    height: 54px;
    font-size: 16px;
  }

  .photo-preview {
    grid-template-columns: repeat(3, 1fr);
  }

  .car-form-submit {
    height: 56px;
    font-size: 18px;
  }
}