/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 44px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-executive);
  border-color: #ffd8b8;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-large {
  grid-column: span 2;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: var(--shadow-sm);
}

.service-icon-telecom {
  background: var(--orange-light);
  color: var(--orange);
}

.service-icon-security {
  background: #fef2f2;
  color: #ef4444;
}

.service-icon-immo {
  background: var(--blue-light);
  color: var(--blue);
}

.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.5em;
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 1em;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-features {
  display: grid;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  font-weight: 500;
  color: var(--text);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card-large .service-features {
  grid-template-columns: 1fr 1fr;
}

/* ========================================
   MOTOROLA
   ======================================== */
.motorola-section {
  background: var(--bg);
}

.motorola-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.motorola-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.motorola-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.motorola-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.motorola-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 700;
}

.motorola-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.motorola-content > p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 32px;
}

.motorola-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.moto-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.moto-feat-icon {
  width: 44px;
  height: 44px;
  background: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.moto-feature strong {
  display: block;
  font-size: 0.95em;
  font-weight: 700;
}

.moto-feature span {
  font-size: 0.88em;
  color: var(--text-muted);
}

/* ========================================
   GIMMO
   ======================================== */
.gimmo-section {
  background: var(--bg-white);
  overflow: hidden;
}

.gimmo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gimmo-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.gimmo-content > p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 36px;
}

.gimmo-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.gimmo-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gimmo-feat-num {
  font-size: 0.82em;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gimmo-feat strong {
  display: block;
  font-size: 0.95em;
  font-weight: 700;
  margin-bottom: 4px;
}

.gimmo-feat span {
  font-size: 0.9em;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Gimmo Visual */
.gimmo-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.gimmo-phone-frame {
  width: 300px;
  max-width: 100%;
  height: auto;
  background: var(--text);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.gimmo-phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
}

.gimmo-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  font-size: 0.88em;
  font-weight: 600;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.gimmo-float-1 {
  top: 20%;
  right: 0;
  animation-delay: 0s;
}

.gimmo-float-2 {
  bottom: 20%;
  left: 0;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- Bannière plaquette / CTA ---- */
.plaquette-banner-wrap {
  padding-top: 0;
}

.plaquette-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
}

.plaquette-banner .section-tag {
  margin-bottom: 10px;
}

.plaquette-banner h2 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 12px;
}

.plaquette-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
}

.plaquette-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.plaquette-banner .btn-primary {
  background: var(--orange);
}

.plaquette-banner .btn-primary:hover {
  background: var(--orange-dark);
}

.plaquette-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   BADENYA — Fintech communautaire
   ======================================== */

.tag-green {
  color: #16a34a;
}

.text-gradient-green {
  background: linear-gradient(135deg, #16a34a 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-green {
  background: #16a34a;
  color: #fff;
}

.btn-green:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.25);
}

.feat-num-green {
  color: #16a34a !important;
  background: #f0fdf4 !important;
}

.badenya-section {
  background: linear-gradient(180deg, var(--bg) 0%, #f0fdf4 50%, var(--bg) 100%);
}

/* Mockup applicatif Badenya (CSS pur) */
.badenya-mock {
  width: 340px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 24px;
  position: relative;
  z-index: 2;
}

.badenya-mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.badenya-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3em;
  color: #052e16;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

.badenya-mock-title {
  display: flex;
  flex-direction: column;
}

.badenya-mock-title strong {
  font-size: 1.05em;
}

.badenya-mock-title span {
  font-size: 0.75em;
  color: var(--text-muted);
}

.badenya-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border-light);
  background: var(--bg);
  border-radius: 16px;
  margin-bottom: 12px;
}

.badenya-group-emoji {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  flex-shrink: 0;
}

.badenya-group-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.badenya-group-info strong {
  font-size: 0.9em;
  line-height: 1.3;
}

.badenya-group-info span {
  font-size: 0.75em;
  color: var(--text-muted);
}

.badenya-group-balance {
  font-size: 0.9em;
  font-weight: 800;
  color: #16a34a;
  white-space: nowrap;
}

.badenya-progress {
  padding: 14px;
  border-radius: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.badenya-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
  margin-bottom: 8px;
}

.badenya-progress-label span {
  color: var(--text-muted);
  font-weight: 600;
}

.badenya-progress-label strong {
  color: #16a34a;
}

.badenya-progress-bar {
  height: 8px;
  background: #dcfce7;
  border-radius: 8px;
  overflow: hidden;
}

.badenya-progress-bar div {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #4ade80, #16a34a);
}

.badenya-float-1 {
  top: 12%;
  right: 4%;
}

.badenya-float-2 {
  bottom: 14%;
  left: 2%;
}

@media (max-width: 768px) {
  .badenya-mock {
    width: 300px;
    padding: 18px;
  }
  .badenya-float-1 {
    right: 0;
    top: 4%;
  }
  .badenya-float-2 {
    left: 0;
    bottom: 4%;
  }
}

/* ---- Pôles (services compacts) ---- */
.poles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pole-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}

.pole-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #ffd9b8;
}

.pole-card-featured {
  background: linear-gradient(180deg, #fff7ed 0%, var(--bg-white) 100%);
  border-color: #ffd9b8;
}

.pole-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pole-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  color: var(--orange);
}

.pole-icon-blue {
  background: var(--blue-light);
  color: var(--blue);
}

.pole-badge {
  font-size: 0.72em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  background: var(--orange);
  padding: 6px 14px;
  border-radius: 50px;
}

.pole-card h3 {
  font-size: 1.4em;
  margin-bottom: 12px;
}

.pole-card p {
  font-size: 0.95em;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.pole-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  font-weight: 800;
  color: var(--orange);
}

.pole-link svg {
  transition: transform var(--transition);
}

.pole-card:hover .pole-link svg {
  transform: translateX(4px);
}

/* ---- Applications Métiers Propriétaires (Badenya + Gimmo côte à côte) ---- */
.apps-metiers-section {
  background: var(--bg);
  padding: clamp(36px, 4.5vw, 64px) 0;
}

.apps-metiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.app-metier-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.app-metier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.card-badenya:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.card-gimmo:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.app-metier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.app-metier-card h3 {
  font-size: 2.1em;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 4px;
}

.app-metier-subtitle {
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 24px;
}

.app-metier-visual {
  width: 100%;
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.app-metier-card p.app-metier-desc {
  font-size: 0.96em;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.app-metier-card .gimmo-features {
  margin-bottom: 32px;
  gap: 16px;
}

.app-metier-actions {
  margin-top: auto;
  padding-top: 8px;
}

@media (max-width: 1024px) {
  .apps-metiers-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Bannière SIZ Immobilier ---- */
.immo-section {
  padding-top: 40px;
}

.immo-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px;
  box-shadow: var(--shadow-md);
}

.immo-content h2 {
  font-size: 2.2em;
  margin-bottom: 16px;
}

.immo-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.immo-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light) 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  min-height: 260px;
}

.immo-logo-card img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* ---- Aperçu de la plaquette (couverture) ---- */
.plaquette-banner-content { flex: 1 1 340px; }
.plaquette-preview {
  position: relative;
  flex: 0 1 440px;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transform: perspective(1400px) rotateY(-5deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.plaquette-preview img { display: block; width: 100%; height: auto; }
.plaquette-preview:hover {
  transform: perspective(1400px) rotateY(0deg) translateY(-4px);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.55);
}
.plaquette-preview-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 0.74em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
  .plaquette-preview { transform: none; flex-basis: 100%; }
  .plaquette-preview:hover { transform: translateY(-3px); }
}

/* ---- Lucarnes Badenya / GIMMO : plus de vie ---- */
.badenya-visual, .gimmo-visual { position: relative; }
.badenya-visual::before, .gimmo-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  z-index: 0;
  filter: blur(64px);
  animation: lucarneGlow 5s ease-in-out infinite;
  pointer-events: none;
}
.badenya-visual::before { background: radial-gradient(circle, rgba(34, 197, 94, 0.38), transparent 70%); }
.gimmo-visual::before { background: radial-gradient(circle, rgba(59, 130, 246, 0.38), transparent 70%); }
.badenya-mock, .gimmo-phone-frame { position: relative; z-index: 1; }
@keyframes lucarneGlow {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  vertical-align: middle;
  margin-left: 4px;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.55);
  animation: livePulse 1.7s ease-out infinite;
}
@keyframes livePulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

.badenya-bar-fill {
  height: 100%;
  width: 92%;
  border-radius: 8px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}
[data-animate].is-visible .badenya-bar-fill {
  animation: badenyaFill 1.4s 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes badenyaFill { from { width: 0; } to { width: 92%; } }

@media (prefers-reduced-motion: reduce) {
  .client-name-card::before,
  .badenya-visual::before,
  .gimmo-visual::before,
  .live-dot::after { animation: none; }

  /* Réduction de mouvement : contenu visible d'emblée, animations neutralisées */
  .js [data-animate] { opacity: 1 !important; transform: none !important; }
  .equip-progress { display: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   REFONTE ACCUEIL — 3 UNIVERS DE SERVICE (bandes pleine largeur)
   Chaque pôle = un territoire couleur : orange / dark+vert / bleu.
   Le changement de fond pleine largeur crée la "dynamique" entre
   services. Voir index.html : .su-radio / .su-fintech / .su-immo
   ============================================================ */

/* ---- Univers de service (bande pleine largeur) ---- */
.service-universe {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  scroll-margin-top: 80px;
}
.su-radio   { background: linear-gradient(172deg, #fff7ed 0%, #ffffff 60%); }
.su-fintech { background: linear-gradient(172deg, #f0fdf4 0%, #f8fafc 40%, #ffffff 100%); }
.su-immo    { background: linear-gradient(172deg, #eff6ff 0%, #ffffff 60%); }
.su-dark    {
  background:
    radial-gradient(1100px 520px at 82% -8%, #1e293b 0%, rgba(30,41,59,0) 60%),
    linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color: #e2e8f0;
}
/* Filet coloré en haut de bande = frontière nette entre univers */
.service-universe::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.su-radio::before   { background: linear-gradient(90deg, var(--orange), #f59e0b); }
.su-fintech::before { background: linear-gradient(90deg, var(--green), #10b981); }
.su-dark::before    { background: linear-gradient(90deg, var(--green), #16a34a); }
.su-immo::before    { background: linear-gradient(90deg, var(--blue), #7c3aed); }

/* Grand numéro filigrane */
.su-watermark {
  position: absolute; top: 12px; right: 3%;
  font-size: 16em; font-weight: 900; line-height: 1;
  letter-spacing: -0.05em; pointer-events: none; z-index: 0;
  opacity: 0.055;
}
.su-radio .su-watermark   { color: var(--orange); }
.su-fintech .su-watermark { color: var(--green); opacity: 0.045; }
.su-immo  .su-watermark   { color: var(--blue); }
.su-dark  .su-watermark   { color: var(--green); opacity: 0.10; }

.service-universe .container { position: relative; z-index: 1; }

/* En-tête d'univers */
.su-head { max-width: 720px; margin-bottom: 52px; }
.su-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.su-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.8em; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 18px;
}
.su-head-center .su-eyebrow { justify-content: center; }
.su-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px; padding: 0 8px; border-radius: 10px;
  font-size: 1.05em; font-weight: 900; color: #fff; letter-spacing: 0;
}
.su-radio .su-num   { background: var(--orange); }
.su-fintech .su-num { background: var(--green); }
.su-dark  .su-num   { background: var(--green); }
.su-immo  .su-num   { background: var(--blue); }
.su-dark  .su-eyebrow { color: #94a3b8; }
.su-head h2 { font-size: 2.8em; margin-bottom: 18px; }
.su-lead { font-size: 1.15em; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.su-dark .su-lead { color: #cbd5e1; }
.su-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.su-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.28); }
.su-dark .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* La bannière immobilier vit dans son univers bleu : on neutralise
   le fond blanc pour laisser respirer le dégradé de la bande */
.su-immo .immo-banner { background: rgba(255,255,255,0.7); backdrop-filter: blur(2px); }

/* ---- Conclusion des 3 Pôles & Transition Milestone ---- */
.poles-transition-milestone {
  padding: 50px 0 30px 0;
  position: relative;
  z-index: 10;
}
.ptm-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #fefcf9 50%, #f8fafc 100%);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius-2xl, 28px);
  padding: 54px 44px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.ptm-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  opacity: 0.45;
  pointer-events: none;
  transition: transform 0.8s ease;
}
.ptm-glow-1 {
  top: -60px; left: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, transparent 70%);
}
.ptm-glow-2 {
  bottom: -80px; left: 40%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
}
.ptm-glow-3 {
  top: -40px; right: -40px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
}
.ptm-card:hover .ptm-glow-orb {
  transform: scale(1.15);
}
.ptm-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.ptm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #c2410c;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.86em;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.08);
}
.ptm-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea580c;
}
.ptm-title {
  color: #0f172a;
  font-size: 2.15em;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ptm-lead {
  color: #475569;
  font-size: 1.05em;
  line-height: 1.65;
  margin-bottom: 34px;
}
.ptm-divider-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.ptm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: #0f172a;
  font-size: 0.9em;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ptm-pill:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.ptm-pill-orange:hover { border-color: #f97316; color: #ea580c; }
.ptm-pill-green:hover { border-color: #10b981; color: #059669; }
.ptm-pill-blue:hover { border-color: #38bdf8; color: #0284c7; }
.ptm-pill-num,
.ptm-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ptm-pill:hover .ptm-pill-icon {
  transform: scale(1.12) rotate(-6deg);
}
.ptm-pill-orange .ptm-pill-num,
.ptm-pill-orange .ptm-pill-icon { background: #ea580c; color: #fff; }
.ptm-pill-green .ptm-pill-num,
.ptm-pill-green .ptm-pill-icon { background: #059669; color: #fff; }
.ptm-pill-blue .ptm-pill-num,
.ptm-pill-blue .ptm-pill-icon { background: #0284c7; color: #fff; }
.ptm-arrow {
  color: #cbd5e1;
  font-size: 1.1em;
  font-weight: 700;
}
/* ---- Showcase Plaquette Intégrée dans Un partenaire / 3 expertises ---- */
.ptm-plaquette-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  text-align: left;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl, 22px);
  padding: 32px;
  margin-top: 44px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
}
.ptm-showcase-preview {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.ptm-showcase-preview img {
  width: 100%;
  height: auto;
  display: block;
}
.ptm-showcase-preview:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.14);
}
.plaquette-preview-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  font-size: 0.74em;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}
.ptm-showcase-preview:hover .plaquette-preview-tag {
  background: var(--orange);
  border-color: var(--orange);
}
.ptm-showcase-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ptm-showcase-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0369a1;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  padding: 5px 12px;
  border-radius: 100px;
}
.ptm-showcase-text h3 {
  color: #0f172a;
  font-size: 1.55em;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.ptm-showcase-text p {
  color: #475569;
  font-size: 0.98em;
  line-height: 1.65;
  margin: 0 0 8px 0;
}
.ptm-showcase-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.ptm-cta-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.25);
}
.ptm-cta-primary:hover {
  background: var(--orange-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.32);
}
.ptm-cta-ghost {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid var(--border);
}
.ptm-cta-ghost:hover {
  background: #f8fafc;
  border-color: #0f172a;
}

/* ---- Titre d'univers cliquable ---- */
.su-title-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.su-title-link:hover {
  opacity: 0.82;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
/* Univers 03 : en-tête avec le logo à bonne taille, placé avant le titre */
.su-immo .su-head {
  max-width: 820px;
}
.immo-head-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  position: relative;
  overflow: visible;
}
.immo-head-titles {
  flex: 0 1 auto;
  position: relative;
  z-index: 2;
}
.immo-head-logo {
  flex: 0 0 auto;
  order: -1;
  display: flex;
  align-items: center;
}
.immo-head-logo img {
  max-height: 150px;
  max-width: 340px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(37, 99, 235, 0.18));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Utilitaire accessibilité : masqué visuellement, lu par les lecteurs d'écran / SEO */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.immo-head-logo img:hover {
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 640px) {
  .immo-head-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .immo-head-logo img { max-height: 104px; }
}

/* Univers 03 : cartes de services — modernes & animées */
.immo-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.immo-service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05);
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.immo-service-card::after {
  content: "";
  position: absolute; right: -40px; bottom: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.immo-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.15);
  border-color: #bfdbfe;
}
.immo-service-card:hover::after { opacity: 1; transform: scale(1); }
.immo-service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-light) 0%, #e0e7ff 100%); color: var(--blue);
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.10);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.immo-service-card:hover .immo-service-icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--blue); color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}
.immo-service-card h3 { font-size: 1.2em; font-weight: 800; margin-bottom: 10px; position: relative; }
.immo-service-card p { font-size: 0.92em; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.immo-service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85em; font-weight: 800; color: var(--blue);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.35s ease, gap 0.25s ease, transform 0.35s ease;
}
.immo-service-card:hover .immo-service-link { opacity: 1; transform: translateX(0); gap: 10px; }
@media (max-width: 900px) {
  .immo-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .immo-service-link { opacity: 1; transform: none; }
}
@media (max-width: 520px) { .immo-services-grid { grid-template-columns: 1fr; } }

/* ---- Carte Bento Horizontale : Promotion du Guide Pratique ---- */
.guide-promo-bento {
  position: relative;
  background: radial-gradient(circle at 85% 50%, rgba(255, 107, 0, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
              linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 28px;
  padding: 44px 48px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 25px 60px rgba(234, 88, 12, 0.08), 0 4px 16px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.guide-promo-bento:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(234, 88, 12, 0.14), 0 8px 24px rgba(15, 23, 42, 0.05);
  border-color: var(--orange);
}

.gpb-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gpb-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gpb-badge {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #ffd8b8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.08);
}

.gpb-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
}

.gpb-title {
  font-size: 1.95rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.02em;
}

.gpb-desc {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.gpb-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.gpb-btn {
  background: var(--orange) !important;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3) !important;
}

.gpb-btn:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.38) !important;
}

.gpb-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
}

.gpb-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.gpb-radials {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(35px);
  z-index: 0;
}

.gpb-imgs {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.gpb-img-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  padding: 18px 14px 12px;
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gpb-img-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #ffd0a8;
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
}

.gpb-img-card img {
  height: 125px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.15));
}

.gpb-img-label {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
}

.gpb-lbl-dmr { background: #fff4ec; color: #ea580c; border: 1px solid #ffd8b8; }
.gpb-lbl-tetra { background: #eef3ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.gpb-lbl-bb { background: #ecfeff; color: #0e7490; border: 1px solid #a5f3fc; }

@media (max-width: 1024px) {
  .guide-promo-bento {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 28px;
  }
  .gpb-title { font-size: 1.5rem; }
  .gpb-imgs { gap: 8px; flex-wrap: wrap; }
  .gpb-img-card img { height: 100px; }
}

/* ---- Univers 01 : cartes-slider & grilles d'équipements par type ---- */
.equip-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
}
.equip-type-card { min-width: 0; }
.equip-slider, .equip-track { min-width: 0; }
.equip-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 28px;
  padding: 32px 28px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.equip-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(234, 88, 12, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
  border-color: #ffd8b8;
}
.equip-type-card:hover .equip-type-icon { transform: scale(1.08) rotate(-4deg); background: var(--orange); color: #fff; }
.equip-type-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  gap: 16px;
}
.equip-type-icon {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: #fff7ed; color: var(--orange);
  border: 1px solid #ffd8b8;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.equip-type-name { display: block; font-weight: 900; font-size: 1.25em; color: #0f172a; line-height: 1.15; text-decoration: none; transition: color 0.25s ease; }
a.equip-type-name:hover { color: var(--orange); }
.equip-type-count {
  display: inline-flex;
  align-items: center;
  font-size: 0.78em;
  font-weight: 800;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid #ffd8b8;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.equip-slider { position: relative; overflow: hidden; flex: 1 1 auto; min-height: 0; }
.equip-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.equip-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.equip-slide-media {
  position: relative;
  overflow: hidden;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fffbf5 65%, #fff4ea 100%);
  border: 1px solid rgba(255, 237, 213, 0.8);
  border-radius: 18px;
  margin-bottom: 18px;
  padding: 16px;
  transition: all 0.4s ease;
}
.equip-slide-media::after {
  content: ""; position: absolute; bottom: 12px; width: 60%; height: 14px;
  background: radial-gradient(ellipse at center, rgba(234, 88, 12, 0.18) 0%, transparent 70%);
  border-radius: 50%; filter: blur(4px); transition: all 0.4s ease;
}
.equip-static-card:hover .equip-slide-media,
.equip-slide:hover .equip-slide-media {
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fff7ed 60%, #ffe6cc 100%);
  border-color: #ffd0a8;
}
.equip-slide-media img {
  position: relative;
  z-index: 2;
  max-height: 190px;
  max-width: 90%;
  width: auto;
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.15));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.equip-type-card:hover .equip-slide-media img,
.equip-static-card:hover .equip-slide-media img {
  transform: scale(1.08) translateY(-6px);
  filter: drop-shadow(0 20px 26px rgba(234, 88, 12, 0.22));
}

/* Barre de progression de l'autoplay (synchronisée en JS) */
.equip-progress {
  position: relative;
  height: 3px; border-radius: 3px;
  background: var(--border-light);
  overflow: hidden;
  margin-top: 16px;
}
.equip-progress > span {
  position: absolute; inset: 0;
  transform: scaleX(0); transform-origin: left center;
  background: linear-gradient(90deg, var(--orange), #f59e0b);
  border-radius: 3px;
  will-change: transform;
}
.equip-slide .product-cat { display: block; margin-bottom: 6px; }
.equip-slide-name { display: block; font-size: 1.1em; font-weight: 800; line-height: 1.15; margin-bottom: 6px; }
.equip-slide-desc {
  display: block; flex: 1; min-height: 42px;
  font-size: 0.86em; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px;
}
.equip-slide-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85em; font-weight: 800; color: var(--orange);
  transition: gap 0.25s ease;
}
.equip-slide:hover .equip-slide-link { gap: 10px; }

.equip-arrow {
  position: absolute; top: 150px;
  transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92); color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0; transition: opacity 0.25s ease, background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.equip-slider:hover .equip-arrow { opacity: 1; }
.equip-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.equip-prev { left: 6px; }
.equip-next { right: 6px; }

.equip-dots { display: flex; gap: 6px; justify-content: center; margin-top: 12px; }
.equip-dot {
  width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all 0.3s ease;
}
.equip-dot.is-active { background: var(--orange); width: 22px; border-radius: 4px; }

/* Grille statique Best-Sellers (Solution 1 — Sans carrousel) */
.equip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 20px;
  flex: 1;
}
.equip-static-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.equip-static-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(234, 88, 12, 0.15), 0 4px 12px rgba(15, 23, 42, 0.04);
  border-color: #ffc499;
}
.equip-static-card .equip-slide-media {
  height: 210px;
  margin-bottom: 16px;
}
.equip-static-card .equip-slide-media img {
  max-height: 185px;
}
.equip-card-cat {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid #ffd8b8;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.equip-card-name {
  display: block;
  font-size: 1.18em;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.equip-static-card:hover .equip-card-name {
  color: #ea580c;
}
.equip-card-desc {
  display: block;
  font-size: 0.88em;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.equip-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.equip-spec-pill {
  font-size: 0.74em;
  font-weight: 700;
  color: #475569;
  background: #f8fafc;
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}
.equip-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.84em;
  font-weight: 800;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.equip-card-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.equip-static-card:hover .equip-card-link {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.25);
}
.equip-static-card:hover .equip-card-link svg {
  transform: translateX(5px);
}
.equip-card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.equip-type-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92em;
  font-weight: 800;
  color: var(--orange);
  padding: 10px 22px;
  background: #fff7ed;
  border-radius: 100px;
  border: 1px solid #ffd8b8;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.equip-type-cta:hover {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.2);
  gap: 12px;
  transform: translateY(-2px);
}

/* ---- Liste Compacte Premium (remplace les cartes géantes verticales dans Pôle 1) ---- */
.equip-mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.equip-mini-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.equip-mini-row:hover {
  transform: translateX(6px) translateY(-2px);
  background: linear-gradient(135deg, #ffffff 0%, #fffcf8 100%);
  border-color: #ffd8b8;
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.12), 0 4px 10px rgba(15, 23, 42, 0.03);
}

.equip-mini-thumb {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fffbf5 65%, #fff4ea 100%);
  border: 1px solid rgba(255, 237, 213, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.equip-mini-row:hover .equip-mini-thumb {
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fff7ed 60%, #ffe6cc 100%);
  border-color: #ffd0a8;
  transform: scale(1.05);
}

.equip-mini-thumb img {
  max-height: 52px;
  max-width: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.12));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.equip-mini-row:hover .equip-mini-thumb img {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 10px 16px rgba(234, 88, 12, 0.2));
}

.equip-mini-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.equip-mini-name {
  font-size: 1.02rem;
  font-weight: 850;
  color: #0f172a;
  line-height: 1.2;
  transition: color 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.equip-mini-row:hover .equip-mini-name {
  color: #ea580c;
}

.equip-mini-sub {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.equip-mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 3px;
}

.equip-mini-specs .equip-spec-pill {
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 700;
}

.equip-mini-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.equip-mini-row:hover .equip-mini-arrow {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  transform: translateX(4px) scale(1.06);
  box-shadow: 0 6px 14px rgba(234, 88, 12, 0.28);
}

/* ==========================================================================
   LUCARNE BOUTIQUE & CATALOGUE EXHAUSTIF DU PÔLE 1
   ========================================================================== */
.lucarne-showcase {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-top: 36px;
  position: relative;
  overflow: hidden;
}


.lucarne-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.lucarne-head-text {
  max-width: 660px;
}

.lucarne-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--orange);
  background: #fff7ed;
  border: 1px solid #ffd8b8;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.lucarne-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.lucarne-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.lucarne-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.lucarne-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--orange);
  padding: 14px 26px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.lucarne-main-cta:hover {
  background: #d94e08;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.35);
  gap: 14px;
}

/* Onglets interactifs de la lucarne */
.lucarne-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.lucarne-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lucarne-tab:hover {
  background: #fff7ed;
  color: var(--orange);
  border-color: #ffd8b8;
}

.lucarne-tab.is-active {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.25);
}

/* Grille exhaustive des produits */
.lucarne-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.lucarne-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lucarne-card:hover {
  transform: translateY(-7px);
  border-color: #ffd8b8;
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.lucarne-card-thumb {
  height: 155px;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fffbf5 65%, #fff4ea 100%);
  border: 1px solid rgba(255, 237, 213, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 12px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lucarne-card:hover .lucarne-card-thumb {
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fff7ed 60%, #ffe6cc 100%);
  border-color: #ffd0a8;
}

.lucarne-card-thumb img {
  max-height: 130px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.14));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lucarne-card:hover .lucarne-card-thumb img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 14px 22px rgba(234, 88, 12, 0.22));
}

.lucarne-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid #ffd8b8;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.lucarne-card-name {
  font-size: 1.15rem;
  font-weight: 850;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}

.lucarne-card:hover .lucarne-card-name {
  color: #ea580c;
}

.lucarne-card-desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.lucarne-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.lucarne-card-specs .equip-spec-pill {
  font-size: 0.72rem;
  padding: 3px 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #475569;
  font-weight: 700;
}

.lucarne-card-foot {
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--orange);
}

.lucarne-card-foot span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.lucarne-card:hover .lucarne-card-foot span {
  gap: 10px;
}

@media (max-width: 980px) {
  .equip-types-grid {
    grid-template-columns: 1fr;
    max-width: 520px; margin-left: auto; margin-right: auto;
  }
  .equip-cards-grid {
    grid-template-columns: 1fr;
  }
  .equip-arrow { opacity: 1; }
  .lucarne-showcase {
    padding: 24px 18px;
    border-radius: 24px;
  }
  .lucarne-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .equip-mini-row { padding: 10px 12px; gap: 10px; }
  .equip-mini-thumb { width: 56px; height: 56px; }
  .equip-mini-arrow { display: none; }
  .lucarne-grid {
    grid-template-columns: 1fr;
  }
  .lucarne-title {
    font-size: 1.45rem;
  }
}

