/* ========================================
    HERO VERSION 4 - ASYMÉTRIQUE MODERNE
    ======================================== */
.hero-4 {
  min-height: 100vh;
  background: var(--primary);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
.hero-4 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
}
/* .hero-4 .content::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 60px;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
  animation: fadeIn 0.8s ease;
} */
.hero-4 .number {
  font-family: var(--font-modern);
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  animation: fadeInLeft 0.8s ease;
}
.hero-4 h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}
.hero-4 h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero-4 .description {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 450px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
.hero-4 .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}
.hero-4 .tag {
  padding: 8px 16px;
  background: var(--white);
  font-size: 0.85rem;
  color: var(--black);
  transition: all 0.3s ease;
}
.hero-4 .tag:hover {
  background: var(--secondary);
  color: var(--white);
}
.hero-4 .cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}
.hero-4 .btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hero-4 .btn-solid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: left 0.3s ease;
  z-index: 0;
}
.hero-4 .btn-solid:hover::before {
  left: 0;
}
.hero-4 .btn-solid span {
  position: relative;
  z-index: 1;
}
.hero-4 .btn-solid:hover {
  color: var(--black);
}
.hero-4 .phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.hero-4 .phone-link:hover {
  color: var(--secondary);
}
.hero-4 .phone-link svg {
  width: 20px;
  height: 20px;
}
.hero-4 .visual {
  position: relative;
}
.hero-4 .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-4 .visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.15) 0%,
    transparent 50%
  );
  z-index: 1;
}
.hero-4 .card-float {
  position: absolute;
  bottom: 60px;
  left: -40px;
  background: var(--white);
  padding: 28px;
  max-width: 280px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 2;
  animation: fadeInLeft 0.8s ease 0.6s backwards;
}
.hero-4 .card-float h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 8px;
}
.hero-4 .card-float p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}
.hero-4 .badge-float {
  position: absolute;
  top: 60px;
  right: 60px;
  background: var(--secondary);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.7s backwards;
}
.hero-4 .badge-float-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-4 .badge-float-label {
  font-size: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .hero-4 {
    grid-template-columns: 1fr;
  }
  .hero-4 .content {
    padding: 60px 30px;
  }
  .hero-4 .content::before {
    display: none;
  }
  .hero-4 .visual {
    min-height: 450px;
  }
  .hero-4 .card-float {
    left: 20px;
    bottom: 20px;
    max-width: 240px;
    padding: 20px;
  }
  .hero-4 .badge-float {
    top: 20px;
    right: 20px;
    padding: 16px 20px;
  }
}
@media (max-width: 640px) {
  .hero-4 .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-4 .card-float,
  .hero-4 .badge-float {
    display: none;
  }
}
