.home-hero {
  position: relative;
  padding: calc(var(--header-h) + 5.375rem) 0 0;
  overflow: hidden;
}
@media (max-width: 1179px) {
  .home-hero {
    padding-top: calc(var(--header-h) + 2.875rem);
  }
}
@media (max-width: 899px) {
  .home-hero {
    padding-top: calc(var(--header-h) + 1.75rem);
  }
}
.home-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(1100px 600px at 78% 34%, rgba(227, 6, 19, 0.16), transparent 70%);
  pointer-events: none;
}
.home-hero__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.07), transparent);
}
.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 28.75rem) minmax(0, 1fr);
  gap: 4.5rem;
  align-items: center;
}
@media (max-width: 1479px) {
  .home-hero__grid {
    gap: 2.5rem;
  }
}
@media (max-width: 1179px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }
}
.home-hero__content {
  padding-bottom: 2.5rem;
}
.home-hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.875rem;
}
.home-hero__kicker-line {
  width: 1.625rem;
  height: 1px;
  background: var(--clr-red);
}
.home-hero__title {
  text-wrap: balance;
}
.home-hero__title span {
  display: inline;
}
.home-hero__title-sub {
  display: block !important;
  font-size: clamp(1.75rem, 2.29vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--clr-white);
  margin-top: 0.75rem;
}
.home-hero__lead {
  margin-top: 1.125rem;
  max-width: 26.25rem;
}
.home-hero__text {
  margin-top: 1.75rem;
  max-width: 30rem;
  color: var(--clr-muted);
}
.home-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 2.75rem;
}
.home-hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 1.875rem;
  border-top: 1px solid var(--clr-line);
}
.home-hero__stat-value {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.18em;
  color: var(--clr-muted);
  margin-top: 0.4375rem;
}
.home-hero__visual {
  position: relative;
  height: 41.25rem;
}
@media (max-width: 1179px) {
  .home-hero__visual {
    height: 28.75rem;
  }
}
@media (max-width: 899px) {
  .home-hero__visual {
    height: 23.75rem;
  }
}
.home-hero__orb {
  position: absolute;
  right: -5.625rem;
  top: -1.875rem;
  width: 32.5rem;
  height: 32.5rem;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.28), transparent 65%);
  pointer-events: none;
  will-change: auto;
}
.home-hero__beam {
  position: absolute;
  transform: skewX(-16deg);
  pointer-events: none;
}
.home-hero__beam--1 {
  right: 3.75rem;
  top: 1.25rem;
  width: 0.5rem;
  height: 26.25rem;
  background: linear-gradient(180deg, transparent, var(--clr-red), transparent);
  opacity: 0.85;
}
.home-hero__beam--2 {
  right: 10rem;
  top: 4.375rem;
  width: 0.3125rem;
  height: 20.625rem;
  background: linear-gradient(180deg, transparent, rgba(227, 6, 19, 0.75), transparent);
  opacity: 0.7;
}
.home-hero__beam--3 {
  right: 15.625rem;
  top: 7.5rem;
  width: 0.1875rem;
  height: 15rem;
  background: linear-gradient(180deg, transparent, rgba(227, 6, 19, 0.5), transparent);
}
.home-hero__frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-line);
  box-shadow: 0 3.125rem 7.5rem rgba(0, 0, 0, 0.75);
}
.home-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 13.125rem;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.85) 70%, var(--clr-bg));
  pointer-events: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.home-hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8125rem 1.125rem;
  border-radius: 1rem;
  background: rgba(12, 12, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
@media (min-width: 1180px) {
  .home-hero__chip:hover {
    transform: translateY(-0.25rem);
  }
}
.home-hero__chip--1 {
  left: 2.125rem;
  top: 3.25rem;
}
.home-hero__chip--2 {
  right: 3rem;
  top: 13.125rem;
}
.home-hero__chip--3 {
  left: 5.625rem;
  bottom: 7.5rem;
}
.home-hero__chip-icon {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 0.6875rem;
  background: rgba(227, 6, 19, 0.14);
  border: 1px solid rgba(227, 6, 19, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-red);
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.home-hero__chip-title {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
}
.home-hero__chip-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  color: var(--clr-muted);
  margin-top: 0.1875rem;
}

@media (max-width: 899px) {
  .home-categories {
    overflow: hidden;
  }
}
.home-categories__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3.25rem;
}
@media (max-width: 899px) {
  .home-categories__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }
}
.home-categories__eyebrow {
  margin-bottom: 1.25rem;
}
@media (max-width: 899px) {
  .home-categories__eyebrow {
    margin-bottom: 0.75rem;
  }
}
.home-categories__more {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-muted);
  padding-bottom: 0.5rem;
  transition: color 0.25s ease;
}
@media (min-width: 1180px) {
  .home-categories__more:hover {
    color: var(--clr-white);
  }
}
.home-categories__more span {
  color: var(--clr-red);
}
@media (min-width: 900px) {
  .home-categories__slider {
    overflow: visible !important;
  }
  .home-categories__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    transform: none !important;
    overflow: visible !important;
  }
  .home-categories__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
    height: auto;
    overflow: visible !important;
  }
  .home-categories__slider .swiper-pagination {
    display: none;
  }
}
@media (max-width: 1479px) and (min-width: 900px) {
  .home-categories__slider .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) {
  .home-categories__slider {
    overflow: visible !important;
    width: calc(100vw - var(--gutter));
    max-width: calc(100vw - var(--gutter));
    margin-left: calc(var(--gutter) * -1);
    padding-left: var(--gutter);
    box-sizing: border-box;
  }
  .home-categories__slider .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.75rem;
  }
  .home-categories__slider .swiper-pagination .swiper-pagination-bullet {
    width: 1.125rem;
    height: 0.375rem;
    margin: 0 !important;
    border-radius: 4.5rem;
    background: rgba(227, 6, 19, 0.22);
    opacity: 1;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
  }
  .home-categories__slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 3rem;
    background: var(--clr-red);
  }
}
.home-categories__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 11.25rem;
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: rgba(24, 24, 24, 0.7);
  border: 1px solid var(--clr-line);
  color: var(--clr-white);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 899px) {
  .home-categories__card {
    padding: 1.375rem;
    min-height: 10.5rem;
  }
}
@media (min-width: 1180px) {
  .home-categories__card:hover {
    transform: translateY(-0.375rem);
    border-color: rgba(227, 6, 19, 0.4);
    box-shadow: 0 1.5rem 3.125rem rgba(0, 0, 0, 0.55);
    color: var(--clr-white);
  }
  .home-categories__card:hover .home-categories__arrow {
    background: var(--clr-red);
    border-color: var(--clr-red);
    transform: translateX(0.1875rem);
  }
  .home-categories__card:hover .home-categories__icon {
    color: var(--clr-red);
  }
}
.home-categories__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 6, 19, 0.1);
  border: 1px solid rgba(227, 6, 19, 0.28);
  color: var(--clr-red);
  margin-bottom: 0.5rem;
}
.home-categories__name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.home-categories__desc {
  font-size: 0.84375rem;
  line-height: 1.55;
  color: var(--clr-muted);
  max-width: 13.75rem;
  padding-right: 2.75rem;
}
.home-categories__arrow {
  position: absolute;
  right: 1.375rem;
  bottom: 1.375rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

@media (max-width: 899px) {
  .home-products {
    overflow: hidden;
  }
}
.home-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3.25rem;
}
@media (max-width: 899px) {
  .home-products__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }
}
.home-products__eyebrow {
  margin-bottom: 1.25rem;
}
@media (max-width: 899px) {
  .home-products__eyebrow {
    margin-bottom: 0.75rem;
  }
}
.home-products__more {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-muted);
}
.home-products__more span {
  color: var(--clr-red);
}
@media (min-width: 1180px) {
  .home-products__more:hover {
    color: var(--clr-white);
  }
}
@media (min-width: 900px) {
  .home-products__slider {
    overflow: visible !important;
  }
  .home-products__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    transform: none !important;
    overflow: visible !important;
  }
  .home-products__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
    height: auto;
    overflow: visible !important;
  }
  .home-products__slider .swiper-pagination {
    display: none;
  }
}
@media (max-width: 1479px) and (min-width: 900px) {
  .home-products__slider .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) {
  .home-products__slider {
    overflow: visible !important;
    width: calc(100vw - var(--gutter));
    max-width: calc(100vw - var(--gutter));
    margin-left: calc(var(--gutter) * -1);
    padding-left: var(--gutter);
    box-sizing: border-box;
  }
  .home-products__slider .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.75rem;
  }
  .home-products__slider .swiper-pagination .swiper-pagination-bullet {
    width: 1.125rem;
    height: 0.375rem;
    margin: 0 !important;
    border-radius: 4.5rem;
    background: rgba(227, 6, 19, 0.22);
    opacity: 1;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
  }
  .home-products__slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 3rem;
    background: var(--clr-red);
  }
}
.home-products__card {
  position: relative;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-line);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1180px) {
  .home-products__card:hover {
    transform: translateY(-0.375rem);
    border-color: rgba(227, 6, 19, 0.35);
    box-shadow: 0 1.875rem 4.125rem rgba(0, 0, 0, 0.65);
  }
  .home-products__card:hover .home-products__img {
    transform: scale(1.08);
  }
  .home-products__card:hover .home-products__btn {
    background: var(--clr-red);
    border-color: var(--clr-red);
    box-shadow: 0 0.875rem 2.125rem rgba(227, 6, 19, 0.35);
  }
}
.home-products__media {
  position: relative;
  height: 13.75rem;
  background: var(--clr-surface);
  overflow: hidden;
}
.home-products__img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.home-products__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-products__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4375rem 0.75rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  background: var(--clr-red);
  border: 1px solid var(--clr-red);
  color: var(--clr-white);
}
.home-products__badge--soft {
  background: rgba(10, 10, 10, 0.7);
  border-color: rgba(255, 255, 255, 0.16);
}
.home-products__body {
  padding: 1.375rem 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.home-products__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.home-products__cat, .home-products__brand {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--clr-muted);
}
.home-products__brand {
  color: var(--clr-red);
}
.home-products__name {
  font-size: 1.03125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  min-height: 2.75rem;
}
.home-products__stock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--clr-stock);
}
.home-products__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--clr-stock);
}
.home-products__actions {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.375rem;
}
.home-products__btn {
  flex: 1;
  height: 2.875rem;
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@media (min-width: 1180px) {
  .home-products__btn:hover {
    color: var(--clr-white);
  }
}
.home-products__wa {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
@media (min-width: 1180px) {
  .home-products__wa:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
  }
}

.home-wholesale__card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-line);
  background: var(--clr-surface);
  padding: 4.5rem 4rem;
  overflow: hidden;
}
@media (max-width: 899px) {
  .home-wholesale__card {
    padding: 2.5rem 1.5rem;
  }
}
.home-wholesale__glow {
  position: absolute;
  left: -7.5rem;
  bottom: -8.75rem;
  width: 26.25rem;
  height: 26.25rem;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.2), transparent 65%);
  pointer-events: none;
}
.home-wholesale__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 1179px) {
  .home-wholesale__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}
.home-wholesale__eyebrow {
  margin-bottom: 1.125rem;
}
.home-wholesale__title {
  max-width: 35rem;
}
.home-wholesale__text {
  margin-top: 1.125rem;
  max-width: 30rem;
}
.home-wholesale__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
}
.home-wholesale__list li {
  padding: 0.625rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--clr-line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.84375rem;
  font-weight: 600;
  color: var(--clr-muted);
}
.home-wholesale__side {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.home-wholesale__points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.home-wholesale__point {
  padding: 1.125rem 1.25rem;
  border-radius: 1rem;
  background: var(--clr-bg);
  border: 1px solid var(--clr-line);
  font-size: 0.9375rem;
  font-weight: 600;
}

.home-why {
  position: relative;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-line-soft);
  border-bottom: 1px solid var(--clr-line-soft);
  padding-block: 6.875rem;
}
@media (max-width: 899px) {
  .home-why {
    padding-block: 4rem;
    overflow: hidden;
  }
}
.home-why__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 340px at 12% 10%, rgba(227, 6, 19, 0.1), transparent 70%);
  pointer-events: none;
}
.home-why__intro {
  position: relative;
  max-width: 45rem;
  margin-bottom: 3.25rem;
}
@media (max-width: 899px) {
  .home-why__intro {
    margin-bottom: 1.75rem;
  }
}
.home-why__eyebrow {
  margin-bottom: 1.25rem;
}
@media (max-width: 899px) {
  .home-why__eyebrow {
    margin-bottom: 0.75rem;
  }
}
.home-why__text {
  margin-top: 1.125rem;
}
.home-why__slider {
  position: relative;
}
@media (min-width: 900px) {
  .home-why__slider {
    overflow: visible !important;
  }
  .home-why__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    transform: none !important;
    overflow: visible !important;
  }
  .home-why__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
    height: auto;
    overflow: visible !important;
  }
  .home-why__slider .swiper-pagination {
    display: none;
  }
}
@media (max-width: 1179px) and (min-width: 900px) {
  .home-why__slider .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) {
  .home-why__slider {
    overflow: visible !important;
    width: calc(100vw - var(--gutter));
    max-width: calc(100vw - var(--gutter));
    margin-left: calc(var(--gutter) * -1);
    padding-left: var(--gutter);
    box-sizing: border-box;
  }
  .home-why__slider .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.75rem;
  }
  .home-why__slider .swiper-pagination .swiper-pagination-bullet {
    width: 1.125rem;
    height: 0.375rem;
    margin: 0 !important;
    border-radius: 4.5rem;
    background: rgba(227, 6, 19, 0.22);
    opacity: 1;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
  }
  .home-why__slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 3rem;
    background: var(--clr-red);
  }
}
.home-why__card {
  padding: 1.875rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-line);
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 899px) {
  .home-why__card {
    padding: 1.5rem 1.25rem;
  }
}
@media (min-width: 1180px) {
  .home-why__card:hover {
    transform: translateY(-0.3125rem);
    border-color: rgba(227, 6, 19, 0.3);
  }
}
.home-why__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--clr-red);
  margin-bottom: 1.125rem;
}
.home-why__card-title {
  font-size: 1.125rem;
  font-weight: 700;
}
.home-why__card-text {
  margin-top: 0.625rem;
}

.home-brands__head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}
.home-brands__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--clr-muted);
  white-space: nowrap;
}
.home-brands__line {
  flex: 1;
  height: 1px;
  background: var(--clr-line);
}
.home-brands__more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-muted);
  white-space: nowrap;
}
.home-brands__more span {
  color: var(--clr-red);
}
@media (min-width: 1180px) {
  .home-brands__more:hover {
    color: var(--clr-white);
  }
}
.home-brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 1479px) {
  .home-brands__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 899px) {
  .home-brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-brands__item {
  height: 6.5rem;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6a6a6a;
  transition: all 0.3s ease;
}
@media (min-width: 1180px) {
  .home-brands__item:hover {
    color: var(--clr-white);
    background: var(--clr-surface);
  }
}

.home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1179px) {
  .home-about__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}
.home-about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-line);
  min-height: 26.25rem;
}
.home-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 26.25rem;
}
.home-about__note {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-line);
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
}
.home-about__eyebrow {
  margin-bottom: 1.25rem;
}
.home-about__text {
  margin-top: 1.25rem;
  max-width: 32.5rem;
}
.home-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

@media (max-width: 899px) {
  .home-reviews {
    overflow: hidden;
  }
}
.home-reviews__eyebrow {
  margin-bottom: 1.25rem;
}
@media (max-width: 899px) {
  .home-reviews__eyebrow {
    margin-bottom: 0.75rem;
  }
}
.home-reviews__title {
  margin-bottom: 3.25rem;
}
@media (max-width: 899px) {
  .home-reviews__title {
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 900px) {
  .home-reviews__slider {
    overflow: visible !important;
  }
  .home-reviews__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    transform: none !important;
    overflow: visible !important;
  }
  .home-reviews__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
    height: auto;
    display: flex;
    overflow: visible !important;
  }
  .home-reviews__slider .swiper-pagination {
    display: none;
  }
}
@media (max-width: 1179px) and (min-width: 900px) {
  .home-reviews__slider .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 899px) {
  .home-reviews__slider {
    overflow: visible !important;
    width: calc(100vw - var(--gutter));
    max-width: calc(100vw - var(--gutter));
    margin-left: calc(var(--gutter) * -1);
    padding-left: var(--gutter);
    box-sizing: border-box;
  }
  .home-reviews__slider .swiper-slide {
    height: auto;
    display: flex;
  }
  .home-reviews__slider .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.75rem;
  }
  .home-reviews__slider .swiper-pagination .swiper-pagination-bullet {
    width: 1.125rem;
    height: 0.375rem;
    margin: 0 !important;
    border-radius: 4.5rem;
    background: rgba(227, 6, 19, 0.22);
    opacity: 1;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
  }
  .home-reviews__slider .swiper-pagination .swiper-pagination-bullet-active {
    width: 3rem;
    background: var(--clr-red);
  }
}
.home-reviews__card {
  padding: 2.375rem 2.125rem;
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 899px) {
  .home-reviews__card {
    padding: 1.75rem 1.375rem;
  }
}
@media (min-width: 1180px) {
  .home-reviews__card:hover {
    transform: translateY(-0.375rem);
    border-color: rgba(227, 6, 19, 0.3);
    box-shadow: 0 1.625rem 3.75rem rgba(0, 0, 0, 0.55);
  }
}
.home-reviews__stars {
  color: var(--clr-red);
  font-size: 0.875rem;
  letter-spacing: 0.24em;
}
.home-reviews__text {
  margin-top: 1.375rem;
  font-size: 0.96875rem;
  line-height: 1.75;
  color: #e6e6e6;
  text-wrap: pretty;
  flex: 1;
}
.home-reviews__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.875rem;
  padding-top: 1.625rem;
  border-top: 1px solid var(--clr-line);
}
.home-reviews__name {
  font-size: 0.90625rem;
  font-weight: 700;
}
.home-reviews__car {
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.14em;
  color: var(--clr-muted);
  margin-top: 0.3125rem;
}

.home-contacts__head {
  margin-bottom: 3.25rem;
}
@media (max-width: 899px) {
  .home-contacts__head {
    margin-bottom: 1.75rem;
  }
}
.home-contacts__eyebrow {
  margin-bottom: 1.25rem;
}
@media (max-width: 899px) {
  .home-contacts__eyebrow {
    margin-bottom: 0.75rem;
  }
}
.home-contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.75rem;
}
@media (max-width: 1179px) {
  .home-contacts__grid {
    grid-template-columns: 1fr;
  }
}
.home-contacts__info {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  background: var(--clr-surface);
  border: 1px solid var(--clr-line);
}
@media (max-width: 899px) {
  .home-contacts__info {
    padding: 1.125rem;
    gap: 0.375rem;
    border-radius: 1.125rem;
  }
}
.home-contacts__row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
  color: inherit;
}
@media (max-width: 899px) {
  .home-contacts__row {
    padding: 0.625rem 0.5rem;
    gap: 0.75rem;
    border-radius: 0.75rem;
  }
}
@media (min-width: 1180px) {
  .home-contacts__row:hover {
    border-color: var(--clr-line);
    background: rgba(255, 255, 255, 0.02);
    color: inherit;
  }
}
.home-contacts__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 6, 19, 0.1);
  border: 1px solid rgba(227, 6, 19, 0.28);
  color: var(--clr-red);
  flex-shrink: 0;
}
@media (max-width: 899px) {
  .home-contacts__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
  }
}
.home-contacts__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65625rem;
  letter-spacing: 0.18em;
  color: var(--clr-muted);
  margin-bottom: 0.375rem;
}
.home-contacts__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}
@media (max-width: 899px) {
  .home-contacts__value {
    font-size: 0.9375rem;
  }
}
.home-contacts__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
@media (max-width: 899px) {
  .home-contacts__actions {
    margin-top: 0.5rem;
  }
  .home-contacts__actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    height: 3rem;
    padding: 0 1rem;
    font-size: 0.875rem;
  }
}
.home-contacts__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-line);
  min-height: 28.75rem;
  background: #111;
}
.home-contacts__map-frame {
  width: 100%;
  min-height: 28.75rem;
}
.home-contacts__map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 28.75rem;
  border: 0;
  display: block;
}
.home-contacts__map-link {
  position: absolute;
  right: 1.125rem;
  bottom: 1.125rem;
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid var(--clr-line);
  backdrop-filter: blur(10px);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-white);
}
@media (min-width: 1180px) {
  .home-contacts__map-link:hover {
    border-color: rgba(227, 6, 19, 0.45);
    color: var(--clr-white);
  }
}

.home-request__card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-line);
  background: var(--clr-surface);
  padding: 4.875rem 4rem;
  overflow: hidden;
}
@media (max-width: 899px) {
  .home-request__card {
    padding: 2.5rem 1.5rem;
  }
}
.home-request__glow {
  position: absolute;
  right: -8.75rem;
  top: -8.75rem;
  width: 26.25rem;
  height: 26.25rem;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.22), transparent 65%);
  pointer-events: none;
}
.home-request__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 32.5rem);
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1179px) {
  .home-request__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}
.home-request__eyebrow {
  margin-bottom: 1.125rem;
}
.home-request__text {
  margin-top: 1rem;
  font-size: 0.96875rem;
  line-height: 1.7;
  color: var(--clr-muted);
  max-width: 26.25rem;
}
.home-request__wa {
  margin-top: 1.75rem;
}
.home-request__form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.home-request__field {
  height: 3.625rem;
  padding: 0 1.375rem;
  border-radius: 1rem;
  background: var(--clr-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.25s ease;
}
.home-request__field::placeholder {
  color: var(--clr-dim);
}
.home-request__field:focus {
  border-color: rgba(227, 6, 19, 0.6);
}
.home-request__field.is-error {
  border-color: rgba(255, 107, 107, 0.7);
}
.home-request__textarea {
  height: auto;
  padding: 1rem 1.375rem;
  resize: none;
  min-height: 6rem;
}
.home-request__submit {
  height: 3.625rem;
  border: none;
  border-radius: 1rem;
  background: var(--clr-red);
  color: var(--clr-white);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0.875rem 2.25rem rgba(227, 6, 19, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.2s ease;
}
.home-request__submit:disabled, .home-request__submit.is-loading {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
@media (min-width: 1180px) {
  .home-request__submit:hover:not(:disabled) {
    transform: translateY(-0.1875rem);
    box-shadow: 0 1.25rem 3rem rgba(227, 6, 19, 0.48);
  }
}
.home-request__status {
  min-height: 1.375rem;
  margin: 0;
  font-size: 0.84375rem;
  line-height: 1.4;
}
.home-request__status.is-ok {
  color: var(--clr-stock);
}
.home-request__status.is-error {
  color: #ff6b6b;
}

.page-stub {
  padding: calc(var(--header-h) + 5rem) 0 7.5rem;
}
.page-stub__inner {
  max-width: 45rem;
}
.page-stub .eyebrow {
  margin-bottom: 1.25rem;
}
.page-stub__text {
  margin-top: 1.5rem;
}
.page-stub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.25rem;
}
