/* =========================================
   HOME PAGE
========================================= */

.section-sub {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  color: #fff;
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.section-title span,
.why-left h2 span,
.final-content h2 span {
  color: var(--gold);
}

.center {
  text-align: center;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(0,0,0,.88), rgba(0,0,0,.45)),
    url('mustang-bg.webp') center/cover no-repeat;
}

.hero-left {
  max-width: 620px;
}

.hero-logo {
  width: 180px;
  margin-bottom: 30px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(54px, 6vw, 92px);
  line-height: .95;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: #b5b5b5;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* WHY */

.why-section {
  padding: 120px 5%;
  background: #050505;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 900;
}

.why-text {
  color: #aaa;
  line-height: 1.9;
  font-size: 16px;
}

.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 30px;
  transition: .3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.why-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 14px;
}

.why-card p {
  color: #999;
  line-height: 1.7;
}

/* FEATURED */

.featured-section {
  padding: 120px 5%;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 540px;
  background: #111;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.featured-card:hover img {
  transform: scale(1.08);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
}

.featured-overlay h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
}

.featured-overlay p {
  color: #d0d0d0;
}

/* PROCESS */

.home-process {
  padding: 120px 5%;
  background: #050505;
}

.process-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.process-card-home {
  background: #0b0b0b;
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,.06);
  transition: .3s ease;
}

.process-card-home:hover {
  transform: translateY(-5px);
  border-color: rgba(243,178,26,.25);
}

.process-card-home span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.process-card-home h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 22px;
}

.process-card-home p {
  color: #999;
  line-height: 1.8;
}

/* FINAL CTA */

.final-cta {
  position: relative;
  padding: 160px 5%;
  background: url('cta-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}

.final-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-content h2 {
  color: #fff;
  font-size: clamp(48px, 6vw, 90px);
  margin-bottom: 20px;
  line-height: .95;
  font-weight: 900;
}

.final-content p {
  color: #bbb;
  margin-bottom: 35px;
  font-size: 18px;
}

.final-content .hero-buttons {
  justify-content: center;
}

/* MOBILE */

@media (max-width: 1000px) {
  .why-grid,
  .featured-grid,
  .process-grid-home {
    grid-template-columns: 1fr;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .featured-card {
    height: 420px;
  }

  .hero {
    min-height: 85vh;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-logo {
    margin: 0 auto 25px;
  }

  .hero-left {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 48px;
  }

  .featured-card {
    height: 340px;
  }

  .why-section,
  .featured-section,
  .home-process,
  .final-cta {
    padding: 90px 5%;
  }
}

/* HOME HERO CLARITY FIX */

.hero {
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.58) 32%,
      rgba(0,0,0,.14) 68%,
      rgba(0,0,0,.02) 100%
    ),
    url('mustang-bg.webp') 75% center / cover no-repeat !important;
}
