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

:root {
  --black: #0b0b0d;
  --muted: #747474;
  --line: rgba(0, 0, 0, .10);
  --red: #ed1b24;
  --white: #ffffff;
  --card: rgba(255, 255, 255, .78);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 18% 15%, rgba(237, 27, 36, .06), transparent 30%),
    #f7f7f5;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 28px clamp(22px, 5vw, 80px) 24px;
}

.ambient {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .45;
}

.ambient-one {
  top: -180px;
  right: -80px;
  background: rgba(237, 27, 36, .12);
}

.ambient-two {
  bottom: -240px;
  left: -120px;
  background: rgba(0, 0, 0, .06);
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 13px;
}

.brand-dot {
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 50% 45% 50% 45%;
  background: var(--red);
  transform: rotate(35deg);
}

.topbar-label {
  color: #999;
  font-size: 11px;
  letter-spacing: .20em;
  font-weight: 700;
}

.hero {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 50px;
}

.hero-logo {
  position: absolute;
  left: -85px;
  top: 0;
  width: 720px;
  height: 520px;
  opacity: .095;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1);
}

.hero-content {
  grid-column: 2;
  padding: 30px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 800;
  margin-bottom: 20px;
}

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

h1 {
  max-width: 650px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 800;
}

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

.hero-content p {
  max-width: 510px;
  margin-top: 24px;
  color: #696969;
  line-height: 1.7;
  font-size: 15px;
}

.brands {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: -10px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.brand-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--black);
  text-decoration: none;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .05);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.brand-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -85px;
  top: -85px;
  background: rgba(0, 0, 0, .035);
  transition: transform .35s ease;
}

.brand-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .11);
  border-color: rgba(0, 0, 0, .16);
}

.brand-card:hover::after {
  transform: scale(1.5);
}

.card-number {
  position: relative;
  z-index: 1;
  color: #a0a0a0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.emblem {
  position: relative;
  z-index: 1;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem img {
  width: 150px;
  height: 115px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,.08));
}

.cevema-emblem {
  width: 108px;
  height: 108px;
  margin: 4px auto 3px;
  border: 8px solid var(--red);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.cevema-symbol {
  color: var(--red);
  font-size: 62px;
  line-height: 1;
  font-weight: 800;
  transform: rotate(8deg);
}

.card-info {
  position: relative;
  z-index: 2;
}

.card-info h2 {
  font-size: 23px;
  letter-spacing: -.04em;
}

.card-info p {
  margin-top: 5px;
  color: #858585;
  font-size: 12px;
}

.arrow {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 50%;
  font-size: 17px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.brand-card:hover .arrow {
  transform: rotate(45deg);
  background: var(--black);
  color: white;
}

.fiat-card:hover .arrow {
  background: #111;
}

.citroen-card:hover .arrow {
  background: #111;
}

.peugeot-card:hover .arrow {
  background: #111;
}

footer {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #999;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-line {
  height: 1px;
  flex: 1;
  background: var(--line);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 390px;
    padding-top: 45px;
  }

  .hero-content {
    grid-column: 1;
    max-width: 700px;
    margin-left: auto;
  }

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

@media (max-width: 650px) {
  .page {
    padding: 20px 16px;
  }

  .topbar-label {
    display: none;
  }

  .hero {
    min-height: 500px;
    padding-top: 70px;
  }

  .hero-content {
    margin-left: 0;
  }

  h1 {
    font-size: clamp(45px, 15vw, 68px);
  }

  .hero-logo {
    left: -150px;
    top: 40px;
    width: 560px;
    height: 450px;
    opacity: .07;
  }

  .brands {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .brand-card {
    min-height: 270px;
  }

  footer {
    margin-top: 22px;
  }
}
