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

:root {
  --red: #d92027;
  --red-dark: #b91a20;
  --black: #000000;
  --dark: #0e0e0e;
  --nav: #111111;
  --white: #ffffff;
  --gray: #9b9b9b;
  --gray-light: #c4c4c4;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #e6e6e6;
  --bg-gray: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Archivo", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  transition: background 0.25s, color 0.25s;
}

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

.btn__arrow {
  font-size: 20px;
  line-height: 1;
  margin-top: -3px;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--red);
}


.topbar {
  background: var(--nav);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 11px;
  padding-bottom: 11px;
}

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

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: #cfcfcf;
  white-space: nowrap;
  transition: color 0.25s;
}

a.topbar__item:hover {
  color: var(--red);
}

.topbar__item strong {
  color: var(--white);
  font-weight: 600;
}

.topbar__icon {
  width: 15px;
  height: 15px;
  color: var(--red);
  flex-shrink: 0;
}


.header {
  background: var(--nav);
  position: relative;
  z-index: 50;
}

.header__inner {
  display: flex;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  font-size: 34px;
  font-weight: 800;
  font-style: italic;
  color: var(--red);
  line-height: 1;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.logo__sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 40px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.25s;
}

.nav a:hover,
.nav a.is-current {
  color: var(--red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
}


.hero {
  position: relative;
  background: var(--dark);
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__slide-img.is-active {
  opacity: 1;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 10, 0.62);
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__content {
  max-width: 540px;
  padding-top: 40px;
  padding-bottom: 40px;
}


.hero__pagination-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}

.hero__pagination {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 30px;
}

.hero__page {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.hero__page::after {
  content: "";
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.35s ease, background 0.35s ease;
}

.hero__page.is-active {
  color: var(--white);
}

.hero__page.is-active::after {
  width: 58px;
  background: var(--red);
}


.hero__slide {
  display: none;
}

.hero__slide.is-active {
  display: block;
  animation: heroFade 0.8s ease;
}

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

.hero__title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title strong {
  font-weight: 700;
}

.hero__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 420px;
  margin-bottom: 40px;
}

.btn--hero {
  padding: 16px 30px;
}


.banner {
  position: relative;
  background: var(--dark) url("../img/banner.jpg") center/cover no-repeat;
  padding: 90px 0;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
}

.banner__inner {
  position: relative;
  z-index: 2;
}

.banner__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.banner__crumb {
  font-size: 13px;
  color: var(--gray-light);
}

.banner__crumb a {
  color: var(--red);
  font-weight: 600;
}

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


.section {
  padding: 90px 0;
}

.section--gray {
  background: var(--bg-gray);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section__head {
  max-width: 620px;
  margin-bottom: 56px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section__label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}

.section__label::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}

.section__head:not(.section__head--center) .section__label::after {
  display: none;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.section--dark .section__title {
  color: var(--white);
}

.section__sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 16px;
}


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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 38px 32px;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: var(--red);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  margin-bottom: 22px;
}

.service-card__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card__link:hover {
  color: var(--red-dark);
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-grid__media {
  position: relative;
}

.about-grid__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-grid__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--red);
  color: var(--white);
  padding: 22px 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.about-grid__badge strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
}

.about-grid__text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-list {
  list-style: none;
  margin: 26px 0 34px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--red);
}


.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 20px;
  transition: border-color 0.3s, background 0.3s;
}

.stat:hover {
  border-color: var(--red);
  background: rgba(217, 32, 39, 0.08);
}

.stat__number {
  font-size: 44px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}

.stat__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-light);
}


.cta {
  background: var(--red);
  padding: 64px 0;
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.cta__title span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  margin-top: 8px;
  opacity: 0.9;
}


.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 56px 28px 34px;
  transition: border-color 0.3s;
}

.feature:hover {
  border-color: var(--red);
}

.feature__num {
  position: absolute;
  top: -14px;
  right: 12px;
  font-size: 84px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: #f0f0f0;
  transition: color 0.3s;
}

.feature:hover .feature__num {
  color: rgba(217, 32, 39, 0.12);
}

.feature__title {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature__desc {
  position: relative;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
}


.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.brand {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.3s;
}

.brand:hover {
  border-color: var(--red);
}

.brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.35s, opacity 0.35s;
}

.brand:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.brand span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s;
}

.brand:hover span {
  color: var(--text);
}

.brands__note {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 26px;
}


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

.testimonial {
  position: relative;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 36px 32px;
  transition: border-color 0.3s;
}

.testimonial::before {
  content: "\201D";
  position: absolute;
  top: 14px;
  right: 26px;
  font-size: 84px;
  font-weight: 800;
  line-height: 1;
  color: rgba(217, 32, 39, 0.14);
  pointer-events: none;
}

.testimonial:hover {
  border-color: var(--red);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.testimonial__text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.testimonial__avatar {
  width: 46px;
  height: 46px;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.testimonial__car {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 3px;
}


.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border);
  background: var(--white);
  margin-bottom: 14px;
  transition: border-color 0.3s;
}

.faq__item:hover,
.faq__item[open] {
  border-color: var(--red);
}

.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
}

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

.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  padding: 0 26px 24px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
}


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

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.news-card:hover {
  border-color: var(--red);
}

.news-card__img {
  height: 210px;
  overflow: hidden;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card__img img {
  transform: scale(1.06);
}

.news-card__body {
  padding: 26px 26px 30px;
}

.news-card__date {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.news-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.25s;
}

.news-card:hover .news-card__title {
  color: var(--red);
}

.news-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}


.article {
  max-width: 860px;
  margin: 0 auto;
}

.article__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 36px;
}

.article__date {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.article__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 26px;
}

.article p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.article h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--text);
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin-top: 16px;
}

.article__back:hover {
  color: var(--red-dark);
}


.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px 34px;
  margin-bottom: 18px;
  transition: border-color 0.3s;
}

.job:hover {
  border-color: var(--red);
}

.job__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.job__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.job__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job__meta svg {
  width: 14px;
  height: 14px;
  color: var(--red);
}


.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.contact-card {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 36px 30px;
  text-align: center;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: var(--red);
}

.contact-card__icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  margin: 0 auto 18px;
}

.contact-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 1px solid var(--border);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.footer {
  background: var(--nav);
  color: var(--gray-light);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 56px;
}

.footer__about p {
  font-size: 13.5px;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 300px;
}

.footer__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--gray-light);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--red);
}

.footer__contact {
  list-style: none;
}

.footer__contact li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
}


@media (max-width: 1140px) {
  .topbar__item--hide {
    display: none;
  }
}

@media (max-width: 1080px) {
  .services-grid,
  .news-grid,
  .contact-grid,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .features,
  .stats,
  .brands {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .topbar__inner {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .header__inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 8px 40px 20px;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .nav a {
    padding: 12px 0;
    width: 100%;
  }

  .btn--header {
    margin-left: auto;
  }

  .hamburger {
    display: flex;
    margin-left: 14px;
  }

  .hero {
    min-height: 640px;
  }

  .hero__title {
    font-size: 40px;
  }

  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .about-grid__media img {
    height: 380px;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  .topbar__inner {
    justify-content: center;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .topbar__group {
    gap: 14px;
  }

  .topbar__item {
    font-size: 11.5px;
  }

  .header__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .topbar__item--hide-sm {
    display: none;
  }

  .btn--header {
    padding: 11px 16px;
    font-size: 13px;
  }

  .nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: 560px;
  }

  .hero__title {
    font-size: 31px;
  }

  .section {
    padding: 64px 0;
  }

  .section__title {
    font-size: 28px;
  }

  .banner__title {
    font-size: 30px;
  }

  .article__img {
    height: 240px;
  }

  .article__title {
    font-size: 26px;
  }

  .services-grid,
  .news-grid,
  .contact-grid,
  .features,
  .stats,
  .form-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .brands {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .job {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  .topbar__group:first-child {
    display: none;
  }
}
