:root {
  --mc-red: #cf1118;
  --mc-red-dark: #991016;
  --mc-black: #090909;
  --mc-paper: #f8f6f1;
}
.motor-page { background: #fff; }

.mc-hero {
  position: relative;
  min-height: clamp(430px, 45vw, 690px);
  overflow: hidden;
  border-left: 3px solid #111;
  border-right: 3px solid #111;
  border-bottom: 5px solid #111;
  background: #f8f6f1;
}
.mc-hero-picture,
.mc-hero-picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.mc-hero-picture img { object-fit: cover; object-position: center; }
.mc-hero-copy {
  position: absolute;
  z-index: 2;
  top: 11%;
  left: clamp(38px, 8vw, 150px);
  width: min(48%, 710px);
  text-transform: uppercase;
  transform: rotate(-1.2deg);
}
.mc-kicker {
  display: inline-block;
  margin: 0 0 6px;
  padding: 7px 28px 5px;
  color: #fff;
  background: #111;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(18px, 2vw, 33px);
  letter-spacing: .035em;
  transform: skew(-12deg);
}
.mc-hero h1 {
  margin: 0;
  color: var(--mc-red);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(62px, 8vw, 138px);
  line-height: .78;
  letter-spacing: -.025em;
  -webkit-text-stroke: clamp(2px, .22vw, 4px) #111;
  text-shadow: 5px 5px 0 #111;
}
.mc-summary {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(18px, 1.8vw, 31px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: none;
}
.mc-hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.mc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 22px 10px;
  border: 4px solid #111;
  color: #111;
  background: #fff;
  box-shadow: 5px 5px 0 #111;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(16px, 1.55vw, 25px);
  letter-spacing: .025em;
  text-decoration: none;
  transform: skew(-5deg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mc-button--primary { color: #fff; background: var(--mc-red); }
.mc-button:hover,
.mc-button:focus-visible { transform: translate(-2px,-2px) skew(-5deg); box-shadow: 8px 8px 0 #111; }

.mc-stage {
  --mc-side-width: clamp(112px, 12vw, 190px);
  position: relative;
  isolation: isolate;
  border-left: 3px solid #111;
  border-right: 3px solid #111;
  border-bottom: 4px solid #111;
  background:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,.24) 1px, transparent 1.2px) 0 0 / 8px 8px,
    #fff;
  padding: 0 0 28px;
  overflow: hidden;
}
.mc-side {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: var(--mc-side-width);
  height: 100%;
  display: block;
  object-fit: fill;
  object-position: center top;
  background: transparent;
  pointer-events: none;
  user-select: none;
}
.mc-side--left { left: 0; }
.mc-side--right { right: 0; }
.mc-content {
  position: relative;
  z-index: 2;
  width: calc(100% - (var(--mc-side-width) * 2));
  margin: 0 auto;
  padding: 16px 20px 0;
  border: 4px solid #111;
  border-top: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,.24) 1px, transparent 1.2px) 0 0 / 8px 8px,
    #fff;
}
.mc-section { margin: 0 0 14px; }
.mc-section-title {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  padding: 5px 42px 4px 16px;
  color: #fff;
  background: #111;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(24px, 2.2vw, 38px);
  font-style: italic;
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  transform: skew(-8deg);
}
.mc-section-title::after { content: ""; position: absolute; right: -90px; top: 0; width: 110px; height: 100%; background: linear-gradient(90deg,#111 0 34%,transparent 35% 49%,#111 50% 62%,transparent 63% 76%,#111 77% 84%,transparent 85%); clip-path: polygon(0 25%,100% 0,76% 100%,0 78%); }

.mc-work-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.mc-work-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 174px;
  border: 4px solid #111;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 3px 3px 0 rgba(0,0,0,.12);
}
.mc-work-card img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  border-right: 3px solid #111;
  background: #fff;
}
.mc-work-card:nth-child(1) img { object-position: 42% center; }
.mc-work-card:nth-child(2) img { object-position: 46% center; }
.mc-work-card:nth-child(3) img { object-position: 52% center; }
.mc-work-card:nth-child(4) img { object-position: 50% center; }
.mc-work-card div { padding: 12px 10px 9px; }
.mc-work-card h3,
.mc-work-card p { margin: 0; }
.mc-work-card h3 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(20px,1.55vw,28px); line-height: .96; text-transform: uppercase; }
.mc-work-card p { margin-top: 8px; font-size: clamp(12px,.9vw,15px); font-weight: 700; line-height: 1.12; }

.mc-symptom-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 8px; }
.mc-symptom-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  min-height: 96px;
  border: 3px solid #111;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}
.mc-symptom-grid img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
.mc-symptom-grid article:nth-child(1) img { object-position: center; }
.mc-symptom-grid article:nth-child(2) img { object-position: center; }
.mc-symptom-grid article:nth-child(3) img { object-position: center; }
.mc-symptom-grid article:nth-child(4) img { object-position: center; }
.mc-symptom-grid article:nth-child(5) img { object-position: center; }
.mc-symptom-grid article:nth-child(6) img { object-position: center; }
.mc-symptom-grid h3 { margin: 0; padding: 6px 8px 5px 2px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(14px,1vw,18px); line-height: .98; text-transform: uppercase; }

.mc-process-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; }
.mc-process-grid article { position: relative; min-width: 0; min-height: 235px; padding: 8px 10px 10px; border: 3px solid #111; border-radius: 7px; background: #fff; overflow: hidden; }
.mc-process-grid article::after { content: ""; position: absolute; top: 50%; right: -12px; width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 12px solid #111; transform: translateY(-50%); }
.mc-process-grid article:last-child::after { display: none; }
.mc-process-grid b { position: absolute; z-index: 2; top: 6px; left: 6px; display: grid; place-items: center; width: 38px; height: 38px; border: 3px solid #111; color: #fff; background: var(--mc-red); font-family: Impact, sans-serif; font-size: 25px; }
.mc-process-grid img {
  display: block;
  width: 100%;
  height: 118px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  border-bottom: 2px solid #111;
  background: #fff;
}
.mc-process-grid article:nth-child(1) img { object-position: center; }
.mc-process-grid article:nth-child(2) img { object-position: center; }
.mc-process-grid article:nth-child(3) img { object-position: center; }
.mc-process-grid article:nth-child(4) img { object-position: center; }
.mc-process-grid article:nth-child(5) img { object-position: center; }
.mc-process-grid h3 { margin: 7px 0 4px; font-family: Impact, sans-serif; font-size: clamp(18px,1.3vw,24px); line-height: 1; text-transform: uppercase; }
.mc-process-grid p { margin: 0; font-size: clamp(12px,.88vw,15px); font-weight: 700; line-height: 1.15; }

.mc-benefit-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.mc-benefit-grid article { display: grid; grid-template-columns: 40% 60%; align-items: center; min-height: 124px; border: 3px solid #111; border-radius: 7px; background: #fff; overflow: hidden; }
.mc-benefit-grid img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
.mc-benefit-grid article:nth-child(1) img { object-position: center; }
.mc-benefit-grid article:nth-child(2) img { object-position: center; }
.mc-benefit-grid article:nth-child(3) img { object-position: center; }
.mc-benefit-grid div { padding: 9px 13px 8px 4px; }
.mc-benefit-grid h3 { margin: 0; font-family: Impact, sans-serif; font-size: clamp(20px,1.5vw,27px); text-transform: uppercase; }
.mc-benefit-grid p { margin: 5px 0 0; font-size: clamp(12px,.9vw,15px); font-weight: 700; line-height: 1.14; }

.mc-whatsapp-banner { display: block; margin: 16px -20px 0; border-block: 4px solid #111; text-decoration: none; overflow: hidden; }
.mc-whatsapp-banner img { width: 100%; height: auto; transition: transform .35s ease, filter .3s ease; }
.mc-whatsapp-banner:hover img { transform: scale(1.015); filter: saturate(1.08); }
.mc-index-contact {
  margin: 12px -20px 0;
  padding-top: 18px;
  border-bottom: 4px solid #111;
}
.mc-index-contact-mobile { margin: 0; }


@media (max-width: 1240px) {
  .mc-stage { --mc-side-width: 104px; }
  .mc-work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .mc-symptom-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .mc-process-grid { grid-template-columns: repeat(5, minmax(190px, 1fr)); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
  .mc-process-grid article { scroll-snap-align: start; }
}

@media (max-width: 1100px) {
  .mc-stage { --mc-side-width: 82px; }
}

@media (max-width: 900px) {
  .mc-side { display: none; }
  .mc-content {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 800px) {
  .mc-stage { padding-bottom: 14px; }
  .mc-hero { min-height: 0; aspect-ratio: 941/1672; border-width: 3px; }
  .mc-hero-picture img { object-fit: cover; object-position: center top; }
  .mc-hero-copy {
    top: 6.2%;
    left: 6.5%;
    width: 72%;
    transform: rotate(-1deg);
  }
  .mc-kicker { padding: 5px 14px 4px; font-size: clamp(13px,3.7vw,22px); }
  .mc-hero h1 { font-size: clamp(48px,14vw,82px); line-height: .79; text-shadow: 3px 3px 0 #111; }
  .mc-summary { max-width: 82%; margin-top: 12px; font-size: clamp(14px,3.9vw,21px); }
  .mc-hero-actions { gap: 10px; margin-top: 14px; }
  .mc-button { min-height: 40px; padding: 8px 11px 7px; border-width: 3px; box-shadow: 3px 3px 0 #111; font-size: clamp(11px,3vw,15px); }
  .mc-content { padding: 12px 10px 0; border-width: 3px; border-top: 0; }
  .mc-section-title { font-size: clamp(22px,6vw,31px); padding-right: 28px; }
  .mc-work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
  .mc-work-card { grid-template-columns: 1fr; min-height: 0; }
  .mc-work-card img { height: 138px; border-right: 0; border-bottom: 3px solid #111; }
  .mc-work-card div { padding: 9px 8px 10px; }
  .mc-work-card h3 { font-size: clamp(17px,4.6vw,23px); }
  .mc-work-card p { font-size: clamp(11px,2.8vw,13px); }
  .mc-symptom-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 6px; }
  .mc-symptom-grid article { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .mc-symptom-grid img { height: 84px; }
  .mc-symptom-grid h3 { min-height: 45px; padding: 5px 4px 6px; font-size: clamp(12px,3.15vw,16px); }
  .mc-process-grid { grid-template-columns: repeat(5,minmax(158px,1fr)); gap: 7px; }
  .mc-process-grid article { min-height: 240px; }
  .mc-process-grid img { height: 112px; }
  .mc-benefit-grid { grid-template-columns: 1fr; gap: 7px; }
  .mc-benefit-grid article { min-height: 112px; grid-template-columns: 40% 60%; }
  .mc-whatsapp-banner { margin-inline: -10px; }
  .mc-index-contact-mobile { margin-inline: -10px; padding-top: 12px; }
}

@media (max-width: 460px) {
  .mc-hero-copy { top: 5.5%; left: 5%; width: 78%; }
  .mc-hero h1 { font-size: clamp(43px,14.5vw,64px); }
  .mc-summary { max-width: 78%; font-size: clamp(12px,3.3vw,16px); }
  .mc-hero-actions { max-width: 82%; }
  .mc-button { font-size: 10px; padding-inline: 9px; }
  .mc-work-card img { height: 126px; }
  .mc-symptom-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
