:root {
  --red: #e30613;
  --yellow: #ffc400;
  --green: #25d366;
  --green-dark: #14a84c;
  --ink: #1a1a1a;
  --muted: #4d4d4d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(26, 26, 26, .14);
  --max: 1220px;
  --hero-max: 1560px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .86) 32%, rgba(255, 255, 255, .06) 63%),
    image-set(
      url("assets/optimized/banner-hero-960.jpg") 1x,
      url("assets/optimized/banner-hero-1920.jpg") 2x
    ) center right / cover no-repeat;
  background-position: center center, center calc(50% + var(--hero-parallax, 0px));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .36));
}

.hero-nav {
  position: relative;
  z-index: 5;
  width: min(var(--hero-max), calc(100% - 80px));
  min-height: 164px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: clamp(22px, 4vw, 58px);
  padding-top: 28px;
}

.brand {
  justify-self: start;
}

.brand img {
  width: auto;
  height: clamp(96px, 10vw, 132px);
  max-width: min(30vw, 218px);
  object-fit: contain;
}

.nav-links {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-cta {
  margin-top: 22px;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  transition: color .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(37, 211, 102, .32);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(37, 211, 102, .4);
}

.whatsapp svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--hero-max), calc(100% - 80px));
  min-height: calc(100svh - 164px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 660px) 1fr;
  align-items: center;
  gap: 32px;
  padding: 20px 0 78px;
}

.copy {
  animation: showUp .7s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.reviews-eyebrow::before,
.reviews-eyebrow::after {
  content: "";
  width: 114px;
  height: 9px;
  background: var(--yellow);
  border-radius: 999px;
}

h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(68px, 8vw, 118px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: .4px;
  text-transform: uppercase;
}

h1 span {
  color: var(--red);
  font-style: italic;
}

h1 .title-place {
  color: var(--ink);
  font-style: normal;
  white-space: nowrap;
}

.lead {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-benefits {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 610px;
  margin-top: 30px;
  padding: 6px 0;
}

.hero-benefits span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
  max-width: 190px;
}

.hero-benefits span:first-child {
  padding-left: 0;
}

.hero-benefits span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 32px;
  background: rgba(227, 6, 19, .2);
}

.hero-benefits svg {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  padding: 6px;
  color: var(--red);
  border: 2px solid rgba(227, 6, 19, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
}

.hero-cta {
  width: fit-content;
  min-height: 64px;
  margin-top: 30px;
  padding-inline: 30px;
  font-size: 15px;
}

.copy small {
  display: block;
  margin: 12px 0 0 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
  text-align: center;
}

.section-head h2 span {
  color: var(--red);
}

.reviews-section .section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.reviews-section .section-head h2 {
  white-space: nowrap;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-section {
  padding: 48px 0 56px;
}

.benefits-section .section-head {
  max-width: none;
  margin-bottom: 28px;
  text-align: center;
}

.benefits-section .eyebrow {
  display: none;
}

.benefits-section .section-head h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(34px, 3.4vw, 48px);
}

.benefits-section .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 42px;
  height: 3px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.info-card,
.category-card,
.review-card,
.steps-grid article {
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, .08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(26, 26, 26, .07);
  transition: transform .24s ease, box-shadow .24s ease;
}

.info-card:hover,
.category-card:hover,
.review-card:hover,
.steps-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 26px;
}

.benefits-section .benefits-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.benefits-section .info-card {
  position: relative;
  padding: 0 26px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.benefits-section .info-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 1px;
  height: calc(100% - 24px);
  background: rgba(227, 6, 19, .22);
}

.benefits-section .info-card:hover {
  transform: none;
  box-shadow: none;
}

.info-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(227, 6, 19, .08);
  border-radius: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.benefits-section .info-card i {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  color: var(--red);
  background: transparent;
  border-radius: 0;
}

.benefits-section .info-card i svg {
  width: 52px;
  height: 52px;
}

.info-card h3,
.steps-grid h3 {
  margin: 18px 0 0;
  font-size: 17px;
  font-weight: 900;
}

.benefits-section .info-card h3 {
  min-height: 42px;
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.info-card p,
.review-card p,
.steps-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.benefits-section .info-card p {
  margin-top: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.categories-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, .06) 0 18%, transparent 18% 100%),
    linear-gradient(315deg, rgba(255, 196, 0, .18) 0 16%, transparent 16% 100%),
    #fafafa;
  background-position:
    left var(--section-shift-left, 0px) top,
    right var(--section-shift-right, 0px) bottom,
    center;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.category-card {
  position: relative;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #111;
  border: 0;
  border-radius: 18px;
  color: var(--white);
}

.category-card.featured {
  grid-column: span 2;
  min-height: 500px;
  box-shadow: 0 34px 90px rgba(227, 6, 19, .22);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .03) 0%, rgba(0, 0, 0, .26) 42%, rgba(0, 0, 0, .88) 100%),
    linear-gradient(90deg, rgba(227, 6, 19, .68), transparent 52%);
  opacity: .92;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.04) translateY(var(--card-parallax, 0px));
  transition: transform .7s ease, filter .7s ease;
  filter: saturate(1.08) contrast(1.04);
}

.category-card:hover img {
  transform: scale(1.11) translateY(var(--card-parallax, 0px));
}

.category-content {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 310px;
}

.car-focus .category-content {
  inset: auto 28px 28px;
  max-width: 380px;
}

.car-focus::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .18) 38%, rgba(0, 0, 0, .9) 100%),
    linear-gradient(90deg, rgba(227, 6, 19, .78), rgba(227, 6, 19, .18) 52%, transparent 76%);
}

.car-focus::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 2px solid rgba(255, 196, 0, .82);
  border-radius: 14px;
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  padding: 9px 13px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
}

.category-content>p {
  margin: 0;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-content h3 {
  margin: 4px 0 0;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(68px, 6vw, 112px);
  font-weight: 400;
  line-height: .85;
  text-shadow: 0 16px 42px rgba(0, 0, 0, .36);
}

.service-card h3 {
  font-size: clamp(56px, 4.6vw, 74px);
}

.category-content strong {
  display: block;
  margin-top: -2px;
  color: var(--white);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 900;
}

.category-card ul {
  display: none;
}

.category-card li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.category-card li::before,
.cta-points span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--red);
  font-weight: 900;
}

.category-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.category-button.yellow {
  border-color: transparent;
  background: var(--yellow);
  color: var(--ink);
}

.category-button {
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}


.category-button:hover {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

.categories-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(227, 6, 19, .1), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(255, 196, 0, .22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.categories-section .section-head {
  max-width: 620px;
  margin-bottom: 42px;
}

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

.category-card {
  grid-column: span 6;
  min-height: 420px;
  overflow: visible;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(246, 246, 246, .92)),
    var(--white);
  border: 1px solid rgba(26, 26, 26, .08);
  border-radius: 18px;
  color: var(--ink);
  box-shadow: 0 18px 55px rgba(26, 26, 26, .08);
}

.category-card:first-child {
  grid-column: span 5;
}

.category-card.featured {
  grid-column: span 7;
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, .1), transparent 38%),
    linear-gradient(315deg, rgba(255, 196, 0, .2), transparent 34%),
    var(--white);
  box-shadow: 0 34px 90px rgba(227, 6, 19, .18);
}

.category-card::before {
  display: none;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 22px -10px;
  height: 52px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(26, 26, 26, .12);
  filter: blur(18px);
  opacity: .65;
}

.category-card img {
  position: absolute;
  right: -7%;
  bottom: -5%;
  width: min(68%, 420px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(26, 26, 26, .2)) saturate(1.05);
  transform: translateY(var(--card-parallax, 0px)) scale(1);
}

.category-card:hover img {
  transform: translateY(var(--card-parallax, 0px)) scale(1.03);
}

.category-content,
.car-focus .category-content {
  position: relative;
  inset: auto;
  min-height: inherit;
  max-width: 52%;
  padding: 34px;
  align-content: start;
  gap: 10px;
}

.category-content>p {
  color: var(--red);
  letter-spacing: .08em;
}

.category-content h3 {
  color: var(--red);
  font-size: clamp(86px, 9vw, 148px);
  text-shadow: none;
}

.category-content strong {
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 34px);
}

.category-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 4px;
  padding: 0;
  list-style: none;
}

.category-content li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.category-content li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--red);
  font-weight: 900;
}

.category-button {
  min-height: 48px;
  margin-top: 14px;
  border-color: rgba(227, 6, 19, .2);
  background: var(--white);
  color: var(--red);
  box-shadow: 0 12px 24px rgba(227, 6, 19, .08);
  backdrop-filter: none;
}

.category-button.yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 16px 32px rgba(255, 196, 0, .28);
}

.badge {
  background: var(--yellow);
  color: var(--ink);
}

.car-focus img {
  right: -5%;
  bottom: -8%;
  width: min(74%, 560px);
}

.car-focus .category-content {
  max-width: 46%;
  padding: 42px;
}

.pro-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, .42), transparent 46%),
    linear-gradient(180deg, #252525 0%, #111111 100%);
  color: var(--white);
}

.pro-card .category-content>p,
.pro-card .category-content h3 {
  color: var(--yellow);
}

.pro-card .category-content strong,
.pro-card .category-content li {
  color: var(--white);
}

.pro-card .category-content>strong:nth-of-type(2),
.service-card {
  display: none;
}

.pro-card img {
  right: -10%;
  width: min(72%, 480px);
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, .38)) saturate(1.05);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}.reviews-section {
  background: #F7F7F7;
}

.reviews-carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 38px;
}

.reviews-section .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.review-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.review-grid {
  display: flex;
  gap: 0;
  transition: transform .45s ease;
}

.review-card {
  flex: 0 0 100%;
  min-height: 245px;
  padding: 22px;
  border-radius: 14px;
}

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

.review-head span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.review-head strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.review-head small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.stars {
  margin-top: 16px;
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 1px;
}

.review-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
}

.review-card img {
  display: block;
  width: clamp(600px, 18vw, 160px);
  height: auto;
  margin: 10px auto;
  border-radius: 12px;
  object-fit: cover;
}

.approved-carousel {
  position: relative;
  max-width: 560px;
  margin: 0 auto 52px;
  padding-bottom: 34px;
}

.approved-carousel .review-viewport {
  border-radius: 0;
}

.approved-carousel .review-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  transition: none;
}

.approved-carousel .review-card:hover {
  transform: none;
  box-shadow: none;
}

.approved-carousel .review-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: contain;
}

.review-control {
  position: absolute;
  top: calc(50% - 21px);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(227, 6, 19, .18);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(26, 26, 26, .1);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}

.review-control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.review-control.prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.review-control.next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.review-control:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(26, 26, 26, .14);
}

.review-control.prev {
  left: -70px;
}

.review-control.next {
  right: -70px;
}

.review-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.review-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(227, 6, 19, .22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.review-dots button.active {
  width: 24px;
  background: var(--red);
  border-radius: 999px;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, .35), transparent);
}

.steps-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  padding: 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.steps-grid article:not(:last-child)::after {
  content: none;
}

.steps-grid article:hover {
  transform: none;
  box-shadow: none;
}

.steps-grid i {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--white);
  border: 2px solid rgba(227, 6, 19, .2);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(26, 26, 26, .08);
  font-style: normal;
}

.steps-grid i svg {
  width: 36px;
  height: 36px;
}

.step-copy {
  min-width: 0;
}

.step-copy strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  margin-bottom: 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.steps-grid h3 {
  margin: 0;
  max-width: none;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.steps-grid p {
  max-width: 230px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.steps-section {
  padding: 72px 0 76px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-bottom: 1px solid rgba(227, 6, 19, .18);
}

.steps-section .section-head {
  max-width: none;
  margin-bottom: 42px;
  text-align: center;
}

.steps-section .eyebrow {
  display: none;
}

.steps-section .section-head h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(38px, 3.6vw, 54px);
}

.steps-section .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 44px;
  height: 3px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.final-cta {
  position: relative;
  padding: 54px 0;
  color: var(--white);
  background: url("assets/optimized/banner-legacy-1400.jpg") center / cover no-repeat;
  overflow: hidden;
}

.final-cta::after {
  content: none;
}

.final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(300px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta p {
  max-width: 520px;
  margin: 12px 0 0;
  line-height: 1.6;
}

.final-actions {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.cta-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.cta-points span::before {
  color: var(--yellow);
}

.final-button {
  width: 100%;
  min-width: 340px;
  min-height: 66px;
  padding-inline: 34px;
  font-size: 15px;
}

.footer {
  padding: 38px 0;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, .06), transparent 38%),
    linear-gradient(315deg, rgba(255, 196, 0, .18), transparent 34%),
    #ffffff;
  border-top: 1px solid rgba(26, 26, 26, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, .86fr) minmax(250px, .9fr) auto auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: auto;
  height: 88px;
  object-fit: contain;
}

.footer-brand p,
.footer-address {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a,
.footer-address {
  position: relative;
  padding-left: 18px;
}

.footer-contact a::before,
.footer-address::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .1);
}

.footer-contact a {
  display: grid;
  gap: 2px;
  color: var(--ink);
}

.footer-contact span,
.footer-address span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-contact strong {
  font-size: 16px;
  font-weight: 900;
}

.footer-address {
  font-style: normal;
  font-weight: 700;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #ffffff;
  border: 1px solid rgba(227, 6, 19, .16);
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(26, 26, 26, .08);
  transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

.footer-social a:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(227, 6, 19, .22);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-online {
  justify-self: end;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(255, 196, 0, .85);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(255, 196, 0, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.footer-online:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(227, 6, 19, .22);
}

.footer-copy {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  white-space: normal;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: calc(22px + env(safe-area-inset-right, 0px));
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 20;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(37, 211, 102, .4);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 22px 52px rgba(37, 211, 102, .55);
  filter: brightness(1.15);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

@keyframes showUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 1020px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 45%, rgba(255, 255, 255, .28) 100%),
      image-set(
        url("assets/optimized/banner-hero-960.jpg") 1x,
        url("assets/optimized/banner-hero-1920.jpg") 2x
      ) 62% center / cover no-repeat;
    background-position: center center, 62% calc(50% + var(--hero-parallax, 0px));
  }

  .hero-nav {
    min-height: 118px;
    grid-template-columns: auto auto;
    padding-top: 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-self: end;
    margin-top: 16px;
    min-width: 52px;
    min-height: 52px;
    padding: 0 14px;
    font-size: 0;
    border-radius: 50%;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta svg {
    margin: 0;
  }

  .hero-content {
    min-height: calc(100svh - 118px);
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 28px;
  }

}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 50%, rgba(255, 255, 255, .4) 100%),
      image-set(
        url("assets/optimized/banner-hero-960.jpg") 1x,
        url("assets/optimized/banner-hero-1920.jpg") 2x
      ) 68% 170px / auto 62% no-repeat;
    background-position: center center, 68% calc(170px + var(--hero-parallax, 0px));
  }

  .hero-nav,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .hero-nav {
    min-height: 90px;
    gap: 12px;
    padding-top: 10px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand img {
    width: auto;
    height: 86px;
    max-width: 160px;
  }

  .nav-cta {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0;
    margin-top: 0;
  }

  .hero-content {
    min-height: auto;
    padding: 22px 0 16px;
  }

  h1 {
    font-size: clamp(48px, 14.5vw, 64px);
  }

  h1 .title-place {
    font-size: .92em;
  }

  .lead {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.48;
  }

  .hero-benefits {
    max-width: 360px;
    gap: 8px;
    margin-top: 24px;
  }

  .hero-benefits span {
    width: 100%;
    max-width: none;
    padding: 0;
    min-height: 34px;
    font-size: 10px;
    line-height: 1.15;
  }

  .hero-benefits span:not(:last-child)::after {
    display: none;
  }

  .hero-cta {
    width: 100%;
    max-width: 360px;
    min-height: 58px;
    margin-top: 24px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .copy small {
    margin-left: 0;
    text-align: center;
    max-width: 360px;
  }

}

@media (max-width: 900px) {
  .section {
    padding: 68px 0;
  }

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

  .benefits-grid,
  .category-grid,
  .review-grid,
  .steps-grid,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-section .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
  }

  .category-card {
    min-height: 380px;
  }

  .category-card.featured {
    min-height: 440px;
  }

  .benefits-section .info-card::after {
    display: none;
  }

  .steps-grid {
    gap: 34px 24px;
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid article:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 6, 19, .35), transparent);
    z-index: 0;
    pointer-events: none;
  }

  .steps-grid article:not(:last-child)::after {
    display: none;
  }

  .final-button {
    width: 100%;
    min-width: 0;
  }

  .footer-online {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .floating-whatsapp {
    right: calc(16px + env(safe-area-inset-right, 0px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .benefits-grid,
  .category-grid,
  .review-grid,
  .steps-grid,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .category-card,
  .category-card.featured {
    grid-column: auto;
    min-height: 360px;
  }

  .car-focus .category-content,
  .category-content {
    inset: auto 18px 18px;
  }

  .category-content h3 {
    font-size: clamp(58px, 20vw, 86px);
  }

  .benefits-section .info-card {
    padding: 0 12px;
  }

  .steps-grid article {
    padding: 0 8px;
  }

  .steps-grid i {
    width: 68px;
    height: 68px;
  }

  .steps-grid article:nth-child(odd)::before {
    top: 34px;
  }

  .steps-grid i svg {
    width: 32px;
    height: 32px;
  }

  .section-head h2,
  .final-cta h2 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .reviews-section .section-head h2 {
    white-space: normal;
  }

  .reviews-carousel {
    padding-inline: 0;
  }

  .review-card {
    min-height: 320px;
  }

  .review-control {
    top: auto;
    bottom: 0;
  }

  .review-control.prev {
    left: 0;
  }

  .review-control.next {
    right: 0;
  }

  .final-button {
    width: 100%;
  }

  .final-cta {
    padding: 46px 0;
    background-position: center;
  }

  .final-grid {
    gap: 24px;
  }

  .final-actions {
    justify-items: stretch;
  }

  .cta-points {
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-online {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: auto;
    height: 72px;
    max-width: 118px;
  }

  h1 {
    font-size: clamp(43px, 13.5vw, 54px);
  }

  .hero-benefits svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    padding: 5px;
  }

  .hero-cta {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card,
  .category-card:first-child,
  .category-card.featured {
    grid-column: auto;
    min-height: 420px;
  }

  .category-content,
  .car-focus .category-content {
    max-width: 58%;
    padding: 28px;
  }

  .category-card img,
  .car-focus img,
  .pro-card img {
    width: min(70%, 390px);
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .category-card,
  .category-card:first-child,
  .category-card.featured {
    min-height: 480px;
  }

  .category-content,
  .car-focus .category-content {
    max-width: 100%;
    min-height: 0;
    padding: 24px;
  }

  .category-content ul {
    max-width: 230px;
  }

  .category-card img,
  .car-focus img,
  .pro-card img {
    right: -12%;
    bottom: -4%;
    width: min(88%, 410px);
  }

  .category-content h3 {
    font-size: clamp(76px, 25vw, 112px);
  }
}

.categories-section {
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 50% 0%, rgba(26, 26, 26, .06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.categories-title-block {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

.categories-title-block .eyebrow {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.categories-title-block h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.categories-title-block h2 span {
  color: var(--red);
}

.categories-title-block i {
  display: block;
  width: 138px;
  height: 16px;
  margin: 18px auto 0;
  background:
    linear-gradient(90deg, transparent 0 28%, var(--red) 28% 43%, transparent 43% 57%, var(--red) 57% 72%, transparent 72% 100%),
    linear-gradient(90deg, transparent, rgba(227, 6, 19, .24), transparent);
  clip-path: polygon(0 46%, 42% 46%, 45% 18%, 55% 18%, 58% 46%, 100% 46%, 100% 56%, 58% 56%, 55% 86%, 45% 86%, 42% 56%, 0 56%);
}

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

.category-card,
.category-card:first-child,
.category-card.featured {
  grid-column: auto;
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(250, 250, 250, .94)),
    var(--white);
  border: 1px solid rgba(26, 26, 26, .07);
  border-radius: 22px;
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(26, 26, 26, .1);
}

.category-card.featured {
  border-color: rgba(255, 196, 0, .9);
}

.category-card::before {
  display: block;
  content: "";
  position: absolute;
  top: 28px;
  right: 26px;
  width: 78px;
  height: 78px;
  z-index: 0;
  opacity: .42;
  background-image: radial-gradient(circle, var(--red) 1.4px, transparent 1.7px);
  background-size: 12px 12px;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 38px 0;
  height: 6px;
  z-index: 2;
  border-radius: 999px 999px 0 0;
  background: var(--red);
  filter: none;
  opacity: 1;
}

.category-card img,
.car-focus img,
.pro-card img {
  position: absolute;
  z-index: 1;
  height: auto;
  min-height: 0;
  object-fit: contain;
  transform: translateY(var(--card-parallax, 0px)) scale(1);
  transition: transform .45s ease;
  filter: drop-shadow(0 24px 30px rgba(26, 26, 26, .18));
}

.category-card:hover img,
.car-focus:hover img,
.pro-card:hover img {
  transform: translateY(var(--card-parallax, 0px)) scale(1.03);
}

.category-card:nth-child(1) img {
  right: 10px;
  bottom: 122px;
  width: 62%;
}

.car-focus img {
  right: 14px;
  bottom: 138px;
  width: 88%;
}

.category-card:nth-child(3) img {
  right: -8px;
  bottom: 132px;
  width: 94%;
}

.pro-card img {
  right: 14px;
  bottom: 126px;
  width: 88%;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .44));
}

.category-content,
.car-focus .category-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  max-width: none;
  padding: 34px 40px;
  align-content: start;
  gap: 0;
}

.category-content>p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
}

.category-content h3 {
  margin: 0;
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(104px, 8vw, 148px);
  font-weight: 400;
  line-height: .82;
  text-shadow: none;
}

.category-content strong {
  margin: 8px 0 24px;
  color: var(--ink);
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.category-content ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  max-width: 260px;
  list-style: none;
}

.category-content li {
  color: #333333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.category-content li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.category-button {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 34px;
  width: auto;
  min-height: 64px;
  margin: 0;
  padding: 0 18px;
  border: 1px dashed rgba(227, 6, 19, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: #8f8f8f;
  box-shadow: none;
  font-size: 13px;
}

.category-button::before {
  content: "▧";
  margin-right: 10px;
  color: #9d9d9d;
  font-size: 16px;
}

.category-button.yellow {
  border-color: rgba(255, 196, 0, .8);
  background: rgba(255, 255, 255, .76);
  color: #8a8a8a;
  box-shadow: none;
}

.category-button:hover,
.category-button.yellow:hover {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
}

.category-button:hover::before {
  color: var(--white);
}

.badge {
  top: 26px;
  right: 26px;
  min-height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.pro-card {
  background:
    linear-gradient(135deg, transparent 52%, rgba(227, 6, 19, .26) 53%, transparent 74%),
    radial-gradient(circle at 95% 38%, rgba(227, 6, 19, .38), transparent 30%),
    linear-gradient(180deg, #202525 0%, #111313 100%);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.pro-card::before {
  background-image: radial-gradient(circle, var(--red) 1.4px, transparent 1.7px);
  opacity: .28;
}

.pro-card::after {
  background: var(--yellow);
}

.pro-card .category-content>p,
.pro-card .category-content h3 {
  color: var(--yellow);
}

.pro-card .category-content strong,
.pro-card .category-content li {
  color: var(--white);
}

.pro-card .category-content li::before {
  color: var(--yellow);
}

.pro-card .category-content>strong:nth-of-type(2),
.service-card {
  display: none;
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .categories-section {
    padding: 68px 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:first-child,
  .category-card.featured {
    min-height: 600px;
  }

  .category-content,
  .car-focus .category-content {
    padding: 28px;
  }

  .category-button {
    left: 28px;
    right: 28px;
  }
}

.categories-section {
  padding: clamp(76px, 8vw, 120px) 0;
  background: #F7F7F7;
}

.categories-section .container {
  width: min(100% - 48px, 1440px);
}

.categories-title-block {
  width: 100%;
  max-width: none;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
  transform: none;
}

.categories-title-block .eyebrow {
  margin: 0 0 10px;
  color: #E30613;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: none;
}

.categories-title-block .eyebrow::before,
.categories-title-block .eyebrow::after {
  display: none;
  content: none;
}

.categories-title-block h2 {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0;
  color: #111111;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.categories-title-block h2 span {
  color: #E30613;
}

.categories-title-block i {
  display: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 32px);
  align-items: stretch;
}

.category-card,
.category-card:first-child,
.category-card.featured {
  position: relative;
  grid-column: auto;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 36px;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(227, 6, 19, .08) 18px 19px, transparent 19px 34px),
    #ffffff;
  border: 1px solid rgba(17, 17, 17, .07);
  border-radius: 24px;
  color: #111111;
  box-shadow: 0 18px 55px rgba(17, 17, 17, .09);
  transform: translateY(0);
  transition: transform .3s ease-out, box-shadow .3s ease-out, border-color .3s ease-out;
  background-size: 100% 100%;
  background-position: 120px 180px;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(17, 17, 17, .14);
}

.category-card.featured {
  border: 1.5px solid #FFC400;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 196, 0, .12) 18px 19px, transparent 19px 34px),
    #ffffff;
  box-shadow: 0 20px 62px rgba(255, 196, 0, .16), 0 18px 55px rgba(17, 17, 17, .09);
}

.category-card.featured::after,
.pro-card::after {
  background: #FFC400;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 34px;
  width: 78px;
  height: 78px;
  z-index: 0;
  opacity: .28;
  background-image: radial-gradient(circle, #E30613 1.35px, transparent 1.65px);
  background-size: 12px 12px;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto 32px 0;
  height: 6px;
  z-index: 3;
  border-radius: 999px 999px 0 0;
  background: #E30613;
}

.category-content,
.car-focus .category-content {
  position: relative;
  z-index: 2;
  min-height: auto;
  max-width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.category-content>p {
  margin: 0 0 8px;
  color: #E30613;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.category-content h3 {
  margin: 0;
  color: #E30613;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(116px, 8vw, 156px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .72;
  text-shadow: none;
}

.category-content strong {
  margin: 14px 0 28px;
  color: #111111;
  font-size: clamp(24px, 1.75vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.category-content ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  max-width: 250px;
  list-style: none;
}

.category-content li {
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.category-content li::before {
  content: "✓";
  margin-right: 9px;
  color: #E30613;
  font-size: 17px;
  font-weight: 900;
}

.category-card img,
.car-focus img,
.pro-card img {
  position: absolute;
  z-index: 1;
  height: auto;
  max-height: 52%;
  min-height: 0;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 24px 32px rgba(17, 17, 17, .2));
  transform: translateY(var(--card-parallax, 0px)) scale(1);
  transition: transform .3s ease-out;
}

.category-card:hover img,
.car-focus:hover img,
.pro-card:hover img {
  transform: translateY(var(--card-parallax, 0px)) scale(1.03);
}

.category-card:nth-child(1) img {
  right: -12px;
  bottom: 118px;
  width: 66%;
  max-height: 50%;
}

.car-focus img {
  right: 22px;
  bottom: 120px;
  width: 88%;
  max-height: 45%;
}

.category-card:nth-child(3) img {
  right: -6px;
  bottom: 120px;
  width: 95%;
  max-height: 45%;
}

.pro-card img {
  right: 12px;
  bottom: 118px;
  width: 88%;
  max-height: 43%;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .42));
}

.category-button {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
  z-index: 3;
  width: auto;
  min-height: 62px;
  margin: 0;
  padding: 0 18px;
  border: 1px dashed rgba(227, 6, 19, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: #8c8c8c;
  box-shadow: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color .3s ease-out, background .3s ease-out, border-color .3s ease-out, transform .3s ease-out;
}

.category-button::before {
  content: "▧";
  margin-right: 10px;
  color: currentColor;
  font-size: 15px;
}

.category-button.yellow {
  border-color: rgba(255, 196, 0, .95);
  background: rgba(255, 255, 255, .8);
  color: #8c8c8c;
}

.category-button:hover,
.category-button.yellow:hover {
  background: #E30613;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  min-height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #FFC400;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(17, 17, 17, .16);
}

.badge::before {
  content: "★";
  margin-right: 8px;
}

.pro-card {
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(227, 6, 19, .24) 18px 20px, transparent 20px 34px),
    linear-gradient(135deg, #111111 0%, #1B1B1B 100%);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 26px 78px rgba(0, 0, 0, .22);
}

.pro-card::before {
  background-image: radial-gradient(circle, #E30613 1.35px, transparent 1.65px);
  opacity: .22;
}

.pro-card::after {
  border: 0;
  background: #FFC400;
}

.pro-card .category-content>p,
.pro-card .category-content h3 {
  color: #FFC400;
}

.pro-card .category-content strong,
.pro-card .category-content li {
  color: #ffffff;
}

.pro-card .category-content li::before {
  color: #FFC400;
}

.pro-card .category-button {
  border-color: rgba(255, 196, 0, .55);
  background: rgba(17, 17, 17, .34);
  color: #ffffff;
}

.pro-card .category-button:hover {
  background: #FFC400;
  color: #111111;
}

@media (max-width: 1180px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card.card-art.featured {
    transform: none;
  }

  .category-card.card-art.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 640px) {
  .categories-section .container {
    width: min(100% - 32px, 1440px);
  }

  .categories-title-block h2 {
    white-space: normal;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card:first-child,
  .category-card.featured {
    min-height: 560px;
    padding: 28px;
  }

  .category-content h3 {
    font-size: clamp(76px, 25vw, 112px);
  }

  .category-card img,
  .car-focus img,
  .pro-card img {
    right: 8px;
    bottom: 96px;
    width: 78%;
    max-height: 42%;
  }

  .category-card:nth-child(1) img {
    width: 58%;
  }

  .category-button {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }
}


.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 24px);
}

.category-card.card-art,
.category-card.card-art:first-child,
.category-card.card-art.featured {
  min-height: 0;
  aspect-ratio: 560 / 760;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(17, 17, 17, .1);
}

.category-card.card-art.featured {
  z-index: 2;
  transform: none;
  box-shadow:
    inset 0 0 0 2px #FFC400,
    0 26px 72px rgba(255, 196, 0, .22),
    0 18px 55px rgba(17, 17, 17, .1);
}

.category-card.card-art.service-card {
  display: block;
}

.category-card.card-art::before,
.category-card.card-art::after {
  display: none;
}

.category-card.card-art:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(17, 17, 17, .16);
}

.category-card.card-art.featured:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 2px #FFC400,
    0 34px 90px rgba(255, 196, 0, .3),
    0 30px 80px rgba(17, 17, 17, .16);
}

.category-card.card-art .card-art-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: inherit;
  filter: none;
  transform: none;
}

.category-card.card-art:hover .card-art-image {
  transform: scale(1.015);
}

.category-card.card-art .category-button {
  left: 8.4%;
  right: 8.4%;
  bottom: 2.4%;
  z-index: 3;
  display: grid;
  grid-template-columns: clamp(20px, 1.65vw, 28px) minmax(0, 1fr) clamp(16px, 1.25vw, 20px);
  align-items: center;
  gap: clamp(6px, .7vw, 12px);
  min-height: 10.4%;
  padding: 0 clamp(10px, .9vw, 18px);
  border: 1.5px solid #ff161f;
  border-radius: 999px;
  background: #ffffff;
  color: #ff161f;
  font-size: clamp(10px, .78vw, 15px);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 16px 34px rgba(227, 6, 19, .14);
  backdrop-filter: none;
}

.category-card.card-art .category-button::before {
  display: none;
}

.category-card.card-art .category-button::after {
  content: "\2192";
  display: grid;
  place-items: center;
  width: clamp(16px, 1.25vw, 20px);
  height: clamp(16px, 1.25vw, 20px);
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 800;
  line-height: 1;
  color: currentColor;
  transform: translateY(-2px);
}

.category-card.card-art .category-button svg {
  width: clamp(20px, 1.65vw, 28px);
  height: clamp(20px, 1.65vw, 28px);
  color: currentColor;
}

.category-card.card-art .category-button span {
  min-width: 0;
  color: currentColor;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.category-card.card-art.featured .category-button {
  border-color: #ff161f;
  background: #ffffff;
  color: #ff161f;
  box-shadow: 0 16px 34px rgba(227, 6, 19, .14);
}

.category-card.card-art.pro-card .category-button {
  border-color: #ff161f;
  background: #ffffff;
  color: #ff161f;
  box-shadow: 0 16px 34px rgba(227, 6, 19, .14);
}

.category-card.card-art .category-button:hover,
.category-card.card-art.featured .category-button:hover {
  background: #ff161f;
  color: #ffffff;
  border-color: #ff161f;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(227, 6, 19, .25);
}

.category-card.card-art.pro-card .category-button:hover {
  background: #ff161f;
  color: #ffffff;
  border-color: #ff161f;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(227, 6, 19, .25);
}

@media (max-width: 1180px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card.card-art,
  .category-card.card-art:first-child,
  .category-card.card-art.featured {
    aspect-ratio: 560 / 760;
    transform: none;
  }

  .category-card.card-art.featured:hover {
    transform: translateY(-6px);
  }
}

.categories-section .categories-title-block {
  width: min(100% - 48px, 1440px);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
  transform: none;
}

.categories-section .categories-title-block h2 {
  display: block;
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .categories-section .categories-title-block h2 {
    white-space: normal;
  }

  .category-card.card-art .category-button {
    opacity: 0.7;
    transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }

  .category-card.card-art .category-button:hover,
  .category-card.card-art .category-button:active,
  .category-card.card-art .category-button:focus {
    opacity: 1;
  }
}
