/* ─── Careers Hero ─── */
.car-hero {
  background: #000;
  padding: 160px 2.5rem 100px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.car-hero__inner { max-width: 1280px; margin: 0 auto; }
.car-hero__eyebrow {
  font-family: "Sohne", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #0a5bff;
  margin-bottom: 2rem;
}
.car-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 3rem;
  max-width: 960px;
}
.car-hero__copy {
  font-family: "Sohne", sans-serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #999;
  max-width: 680px;
  text-transform: none;
}

/* ─── Photo Strip (auto-scroll marquee) ─── */
.car-strip {
  background: #000;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.car-strip__scroll {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: car-marquee 30s linear infinite;
}
.car-strip:hover .car-strip__scroll { animation-play-state: paused; }
@keyframes car-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.car-strip__img {
  width: 380px;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 3px;
}
.car-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.car-strip__img:hover img { transform: scale(1.06); }

/* ─── Culture Block ─── */
.car-culture {
  background: #000;
  padding: 8rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.car-culture__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.car-culture__img {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1 / 1;
}
.car-culture__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-culture__text {
  font-family: "Sohne", sans-serif;
  font-size: 1.1rem;
  line-height: 1.95;
  color: #888;
  text-transform: none;
}

/* ─── Benefits ─── */
.car-benefits {
  background: #000;
  padding: 8rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.car-benefits__inner { max-width: 1280px; margin: 0 auto; }
.car-benefits__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff;
  margin: 0 0 4rem;
  letter-spacing: -0.01em;
}
.car-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.car-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.6rem 2rem 1.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.car-benefit:nth-child(3n) { border-right: none; }
.car-benefit__check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #0a5bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.car-benefit__check::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #0a5bff;
  border-radius: 50%;
}
.car-benefit__label {
  font-family: "Sohne", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  line-height: 1.55;
}

/* ─── Opportunities ─── */
.car-opps {
  background: #000;
  padding: 8rem 2.5rem 10rem;
}
.car-opps__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.car-opps__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  margin: 0 0 1.75rem;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.car-opps__copy {
  font-family: "Sohne", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #888;
  text-transform: none;
  margin-bottom: 2.5rem;
}
.car-opps__email {
  font-family: "Sohne", sans-serif;
  font-size: 0.92rem;
  color: #0a5bff;
  text-decoration: none;
  border-bottom: 1px solid rgba(10,91,255,0.35);
  padding-bottom: 3px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s;
  display: inline-block;
}
.car-opps__email:hover { border-color: #0a5bff; }
.car-opps__img {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1 / 1;
}
.car-opps__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Responsive ─── */
@media screen and (max-width: 1024px) {
  .car-culture__inner,
  .car-opps__inner { gap: 4rem; }
}
@media screen and (max-width: 768px) {
  .car-hero { padding: 140px 1.5rem 80px; }
  .car-strip__img { width: 260px; height: 180px; }
  .car-culture__inner,
  .car-opps__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .car-culture,
  .car-benefits,
  .car-opps { padding: 5rem 1.5rem; }
  .car-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .car-benefit:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.07); }
  .car-benefit:nth-child(2n) { border-right: none; }
  .car-opps { padding-bottom: 6rem; }
}
@media screen and (max-width: 480px) {
  .car-benefits__grid { grid-template-columns: 1fr; }
  .car-benefit { border-right: none !important; }
}
