/* ==========================================================================
   HERO — Executive Suite Welcome & Showcase
   ========================================================================== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding-top: clamp(90px, 10vw, 115px);
  padding-bottom: clamp(36px, 4.5vw, 56px);
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(255, 107, 0, 0.07), transparent 50%), var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-fixed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: grayscale(15%) contrast(105%);
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 99px;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 820px;
  font-weight: 900;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 660px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-guide-teaser {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(234, 88, 12, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 16px;
  max-width: 620px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 36px;
}

.hero-guide-teaser:hover {
  transform: translateY(-4px) scale(1.01);
  background: #ffffff;
  border-color: #ea580c;
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.16), 0 6px 16px rgba(0, 0, 0, 0.06);
}

.teaser-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff4ec;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.teaser-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.teaser-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.teaser-sub {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ---- Hero deux colonnes Executive ---- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(32px, 4.5vw, 50px);
}

.hero-main .hero-actions {
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.hero-product-card,
.hero-static-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 490px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-executive);
  padding: 30px 32px 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-product-card:hover,
.hero-static-card:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 
    0 35px 80px -15px rgba(15, 23, 42, 0.22),
    0 12px 30px -10px rgba(255, 107, 0, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.95);
  transform: translateY(-6px);
}

/* Commercial Showcase Progress Bar */
.hero-card-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(15, 23, 42, 0.08);
  z-index: 10;
}

.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #ff9500);
  transition: width 0.1s linear;
}

/* Commercial Header & Live Tag */
.hero-pub-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 10px;
  z-index: 2;
}

.pub-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--orange);
  padding: 5px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.35);
  flex-shrink: 0;
  white-space: nowrap;
}

.pub-pulse {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pubPulseAnim 1.4s infinite;
  flex-shrink: 0;
}

@keyframes pubPulseAnim {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

.hero-product-badge {
  font-size: 0.74em;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
  max-width: calc(100% - 130px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: var(--shadow-xs);
}

/* Commercial Motto & Highlights */
.hero-pub-info {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 18px;
  z-index: 2;
}

.hero-pub-motto {
  font-size: 1.12em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.hero-pub-highlight {
  font-size: 0.8em;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.75);
  padding: 6px 16px;
  border-radius: 99px;
  display: inline-block;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.hero-product-img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

#heroProductImg,
.hero-static-img {
  max-height: 330px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.2));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, filter 0.35s ease;
  will-change: transform, opacity;
  mix-blend-mode: multiply;
  background-color: transparent !important;
}

.hero-product-card:hover #heroProductImg,
.hero-static-card:hover .hero-static-img {
  transform: scale(1.08) translateY(-6px);
  filter: drop-shadow(0 28px 40px rgba(15, 23, 42, 0.28));
}

.hero-product-name {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 28px;
  background: var(--text);
  color: #fff;
  border-radius: 60px;
  font-size: 0.92em;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
  transition: all var(--transition);
}

.hero-product-name:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.32);
}

.hero-static-pills {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
  width: 100%;
}

.hero-static-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.hero-static-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-static-pill:hover {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.28);
}

.hero-product-dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.25);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1), background 0.35s ease, box-shadow 0.35s ease;
}

.hero-dot:hover {
  background: var(--text-muted);
}

.hero-dot.active {
  width: 26px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.45);
}

/* Floating Executive Badges */
.gimmo-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 99px;
  box-shadow: var(--shadow-md);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  z-index: 5;
  transition: all var(--transition);
}

.gimmo-float-card:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-float-1 {
  top: -4%;
  right: -4%;
}

.hero-float-2 {
  bottom: -4%;
  left: -4%;
}

/* ---- Badge Partenaire PartnerEmpower (Motorola Solutions) ---- */
.hero-partner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.partner-logo-card {
  display: inline-block;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.partner-logo-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.partner-logo-img {
  display: block;
  height: 42px;
  width: auto;
}

/* Badge partenaire — hero boutique */
.page-hero-partner {
  margin-top: 26px;
}

/* Badge partenaire — bloc d'achat des fiches produits */
.product-partner-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.product-partner-badge .partner-logo-card {
  padding: 8px 16px;
}
.product-partner-badge .partner-logo-img {
  height: 28px;
}
.product-partner-note {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  color: #64748b;
  max-width: 210px;
}
.footer-trademark {
  font-size: 0.72em;
  line-height: 1.6;
  opacity: 0.55;
  margin-top: 10px;
  max-width: 920px;
}

/* ---- Hero Stats Executive Bar ---- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(30px, 5vw, 60px);
  padding: 36px 64px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 980px;
  margin: 20px auto 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.stat-number {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
}

.stat-suffix {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--orange);
}

.stat-label {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 54px;
  background: var(--border);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-float-1 { top: -20px; right: 10px; }
  .hero-float-2 { bottom: -20px; left: 10px; }
  .hero-stats {
    flex-direction: column;
    gap: 28px;
    padding: 32px 24px;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
}
