.hero {
  height: 100vh;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark);
}

.heroBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2670&auto=format&fit=crop'); /* Professional road/car image placeholder */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax */
  z-index: 0;
}

.heroBg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20,20,18,0.92) 0%, rgba(20,20,18,0.7) 100%);
}

.heroAccentLines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.heroAccentLine {
  position: absolute;
  background-color: var(--yellow);
  opacity: 0.15;
  height: 1px;
}

.heroAccentLine:nth-child(1) { width: 120px; top: 30%; left: -20px; transform: rotate(45deg); animation: float1 20s infinite linear; }
.heroAccentLine:nth-child(2) { width: 80px; top: 70%; right: 10%; transform: rotate(-30deg); animation: float2 25s infinite linear; }
.heroAccentLine:nth-child(3) { width: 100px; bottom: 20%; left: 30%; transform: rotate(15deg); animation: float3 22s infinite linear; }

@keyframes float1 { 0% { transform: translate(0,0) rotate(45deg); } 50% { transform: translate(30px, -20px) rotate(50deg); } 100% { transform: translate(0,0) rotate(45deg); } }
@keyframes float2 { 0% { transform: translate(0,0) rotate(-30deg); } 50% { transform: translate(-20px, 30px) rotate(-25deg); } 100% { transform: translate(0,0) rotate(-30deg); } }
@keyframes float3 { 0% { transform: translate(0,0) rotate(15deg); } 50% { transform: translate(25px, 20px) rotate(10deg); } 100% { transform: translate(0,0) rotate(15deg); } }

.heroContainer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px; /* Offset for header */
}

.heroContent {
  width: 60%;
  padding-right: 40px;
}

.heroEyebrow {
  display: inline-block;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.heroH1 {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.heroH1 span {
  display: block;
  /* Required for GSAP SplitText styling if needed */
}

.heroSub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-sub);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.heroCtas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

.heroCta {
  display: inline-block;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border-radius: 0;
  text-align: center;
}

.heroCtaPrimary {
  background-color: var(--yellow);
  color: var(--text-dark);
}

.heroCtaPrimary:hover {
  background-color: var(--yellow-hover);
  transform: translateY(-2px);
}

.heroCtaOutline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.heroCtaOutline:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

.heroStats {
  display: flex;
  gap: 48px;
}

.heroStatItem {
  display: flex;
  flex-direction: column;
}

.heroStatNumber {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.heroStatLabel {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.heroFormWrapper {
  width: 40%;
  display: flex;
  justify-content: flex-end;
}
