/* ========================================
   HERO 7 — TYPOGRAPHIE MONUMENTALE + TICKER
   ======================================== */
.hero-7 {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--primary);
}

/* BG */
.hero-7__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-7__video {
  min-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-7__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-7__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* INNER */
.hero-7__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 2rem) 6% 3rem;
}

/* Header row */
.hero-7__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInDown 0.7s ease;
  margin-bottom: 0;
}
.hero-7__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-7__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s infinite;
}
.hero-7__tel {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.hero-7__tel:hover {
  color: var(--secondary);
}

/* STAGE — Titre + Aside */
.hero-7__stage {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
  padding-block: 40px;
}

/* Title */
.hero-7__title-wrap {
  animation: fadeInUp 0.9s ease 0.1s backwards;
}
.hero-7__since {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}
.hero-7__h1 {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  margin-bottom: 24px;
}
.hero-7__h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.hero-7__word {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 11rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero-7__word--outline {
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-fill-color: transparent;
}
.hero-7__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
}
.hero-7__location svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================
   ASIDE
   ============================ */
.hero-7__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInRight 0.9s ease 0.2s backwards;
}

/* Badge RGE */
.hero-7__badge-rge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--secondary);
}
.hero-7__badge-rge svg {
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: var(--secondary);
}
.hero-7__badge-rge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-7__badge-rge span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Stats */
.hero-7__aside-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-7__aside-stat {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-7__aside-stat strong {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--secondary);
  line-height: 1;
  min-width: 70px;
}
.hero-7__aside-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.hero-7__aside-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* Garantie */
.hero-7__aside-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}
.hero-7__aside-guarantee svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--secondary);
}

/* CTA */
.hero-7__aside-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.hero-7__aside-cta:hover {
  background: var(--white);
}
.hero-7__aside-arrow {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.hero-7__aside-cta:hover .hero-7__aside-arrow {
  transform: translateX(4px);
}
.hero-7__aside-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* Ticker */
.hero-7__ticker {
  position: relative;
  z-index: 2;
  background: var(--secondary);
  overflow: hidden;
  padding-block: 14px;
  white-space: nowrap;
}
.hero-7__ticker-track {
  display: inline-flex;
  animation: ticker 20s linear infinite;
}
.hero-7__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  padding-right: 16px;
}
.hero-7__ticker-dot {
  font-size: 0.6rem;
  opacity: 0.6;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.33%);
  }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
  .hero-7__stage {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }
  .hero-7__word {
    font-size: clamp(3.5rem, 10vw, 9rem);
  }
}

/* Sur mobile : on empile titre puis aside en pleine largeur */
@media (max-width: 1024px) {
  .hero-7__stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-7__word {
    font-size: clamp(3rem, 14vw, 7rem);
  }
}

@media (max-width: 768px) {
  .hero-7__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-7__word {
    font-size: clamp(2.8rem, 13vw, 6rem);
  }
  /* Aside en mode horizontal sur mobile */
  .hero-7__aside-stats {
    flex-direction: row;
  }
  .hero-7__aside-stat {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    gap: 6px;
  }
  .hero-7__aside-stat strong {
    min-width: unset;
    font-size: 2rem;
  }
  .hero-7__aside-divider {
    width: 1px;
    height: auto;
  }
}
