 /* Styles pour les sections uniquement */
        .article-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .section {
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
        }

        .section h2 {
            color: #2c3e50;
            font-size: 2.2em;
            margin-bottom: 20px;
            
            align-items: center;
            gap: 15px;
        }

        .section h3 {
            color: #34495e;
            font-size: 1.5em;
            margin: 25px 0 15px 0;
            border-left: 4px solid #3498db;
            padding-left: 15px;
        }

        .icon {
            font-size: 1.2em;
            padding: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transform: translateY(0);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .stat-label {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .smart-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .smart-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-left: 5px solid #3498db;
            transition: all 0.3s ease;
        }

        .smart-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .smart-card h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.3em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .alert {
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .alert-info {
            background-color: #e3f2fd;
            border-color: #2196f3;
            color: #0d47a1;
        }

        .alert-warning {
            background-color: #fff3e0;
            border-color: #ff9800;
            color: #e65100;
        }

        .alert-danger {
            background-color: #ffebee;
            border-color: #f44336;
            color: #c62828;
        }

        .alert-success {
            background-color: #e8f5e8;
            border-color: #4caf50;
            color: #2e7d32;
        }

        .faq-container {
            margin: 30px 0;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: #f8f9fa;
            opacity: 0;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 1000px;
            opacity: 1;
        }

        .faq-toggle {
            transition: transform 0.3s ease;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        .lexique-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .lexique-item {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
        }

        .lexique-term {
            font-weight: bold;
            font-size: 1.2em;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlight-box {
            background: #10baed 100%;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            border-left: 5px solid #00b894;
            color: #fff;
        }

        .tips-list {
            list-style: none;
            padding: 0;
        }

        .tips-list li {
            background: white;
            margin: 10px 0;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .tips-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .temperature-gauge {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 15px 0;
            padding: 15px;
            background: linear-gradient(90deg, #00b09b, #96c93d);
            border-radius: 25px;
            color: white;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .article-container {
                padding: 10px;
            }
            
            .section {
                padding: 20px;
                margin: 20px 0;
            }
            
            .section h2 {
                font-size: 1.8em;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .smart-cards {
                grid-template-columns: 1fr;
            }
        }
/* Related articles */
    /* Related articles */
.related-articles {
    background: #f1f1f1;
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    border-radius: 8px;
    display: block !important;

    flex-wrap: wrap;
    align-items: center;}
    .articles-grid {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 20px !important;
      margin-top: 20px !important;
    }
    
    .article-card {
      flex: 1 !important;
      min-width: 300px !important;
      border-radius: var(--border-radius) !important;
      overflow: hidden !important;
      box-shadow: var(--box-shadow) !important;
      background-color: white !important;
      transition: var(--transition) !important;
    }
    
    .article-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .article-image {
      height: 200px;
      overflow: hidden;
    }
    
    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .article-card:hover .article-image img {
      transform: scale(1.1);
    }
    
    .article-content {
      padding: 20px !important;
    }
    
    .article-content h3 {
      margin-top: 0;
      color: var(--primary-color);
    }
.product-card2 {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-image-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.product-image22 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 175px;
  left: 15px;
  background: #28a745;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.badge-popular { background-color: #007bff; }
.badge-stock   { background-color: #dc3545; }

.product-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
}

.product-subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

.product-description {
  font-size: 14px;
  margin-bottom: 20px;
  color: #444;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.product-features li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.product-features i {
  color: #28a745;
  margin-right: 8px;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #e63900;
  margin-bottom: 20px;
}

.btn-product {
  align-self: flex-start;
  background: #ff4500;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-product:hover {
  background: #e03d00;
  transform: scale(1.05);
}
.product-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
 }
.slide-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 50px 0 !important;
    padding-top: 10% !important;
    padding-left: 14% !important;
    padding-bottom: 1% !important;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 6vw, 2rem) !important; /* Force la taille sur le hero */
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.slide-content{
  max-width: 720px;   /* largeur confortable pour un H1 */
}

@media (min-width: 1200px){
  .slide-content{
    max-width: 820px;
  }
}
/* Carousel */
.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  margin: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}
.timeline {
            border-left: 4px solid #2c5aa0;
            padding-left: 30px;
            margin: 30px 0;
        }
        
        .timeline-item {
            margin-bottom: 30px;
            position: relative;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -37px;
            top: 0;
            width: 12px;
            height: 12px;
            background: #2c5aa0;
            border-radius: 50%;
        }
        
        .timeline-year {
            font-weight: bold;
            color: #2c5aa0;
            font-size: 1.1em;
        }
.stat-box2 {
            background: linear-gradient(135deg, #e8f2ff 0%, #d1e7ff 100%);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin: 20px 0;
        }
        
        .stat-number2 {
            font-size: 2.5em;
            font-weight: bold;
            color: #2c5aa0;
        }
        
        .country-flag {
            display: inline-block;
            margin-right: 8px;
            font-size: 1.2em;
        }
     .intro-text2 {
            font-size: 1.2em;
            text-align: center;
            color: #666;
            font-style: italic;
            margin-bottom: 30px;
        }
        
        .info-box2 {
            background: linear-gradient(135deg, #e8f2ff 0%, #d1e7ff 100%);
            border-left: 5px solid #2c5aa0;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
        }
        
        .highlight-box2 {
            background: linear-gradient(135deg, #fff7e6 0%, #ffe4b3 100%);
            border: 2px solid #ff9500;
            padding: 25px;
            margin: 30px 0;
            border-radius: 12px;
        }
        
        .icon2 {
            font-size: 1.5em;
            margin-right: 10px;
        }
 /* Styles généraux */


/* Grille de cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.icon-blue {
  background-color: #007bff;
}

.icon-amber {
  background-color: #ffc107;
}  

.icon-rose {
  background-color: #e83e8c;
}

.icon-emerald {
  background-color: #28a745;
}

.icon-purple {
  background-color: #6f42c1;
}

.icon-slate {
  background-color: #6c757d;
}

/* Tableau comparatif */  
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f8f9fa;
}
.kbd {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        .kbd2 {
            background: rgba(255, 200, 50, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
    
  
        
        .icon {
            font-size: 2rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
/* Style de base du tableau (desktop) */
.comparison table {
  width: 100%;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.comparison thead th {
  background: #f5f5f5;
  font-weight: 600;
}

/* --- VERSION MOBILE : transformation en cartes --- */
@media (max-width: 768px) {

  .comparison table,
  .comparison thead,
  .comparison tbody,
  .comparison th,
  .comparison td,
  .comparison tr {
    display: block;
    width: 100%;
  }

  /* On cache la ligne d'en-tête sur mobile */
  .comparison thead {
    display: none;
  }

  /* Chaque ligne devient une "carte" */
  .comparison tbody tr {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 8px 10px;
    background: #ffffff;
  }

  .comparison td {
    position: relative;
    padding: 8px 10px 8px 50%;
    box-sizing: border-box;
    word-break: break-word;
  }

  /* Petit label avant chaque cellule */
  .comparison td::before {
    position: absolute;
    left: 10px;
    top: 8px;
    width: 45%;
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
    content: "";
    white-space: normal;
  }

  /* 1ère colonne = "Critères" */
  .comparison td:nth-child(1)::before {
    content: "Critères";
  }

  /* 2ème colonne = "Téléassistance classique" */
  .comparison td:nth-child(2)::before {
    content: "Téléassistance classique";
  }

  /* 3ème colonne = "Téléassistance gratuite" (simplifié pour tenir) */
  .comparison td:nth-child(3)::before {
    content: "Téléassistance gratuite";
  }
}
@media screen and (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border-bottom: 1px solid #ccc;
  }

  td {
    border: none;
    position: relative;
    padding-left: 50%;
    white-space: normal;
    text-align: left;
  }

  td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    content: attr(data-title);
  }
}
/* HERO VIDEO – STYLE BOUTIQUE */

/* HERO VIDEO */
.mw-hero{
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}

.mw-hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mw-hero-media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay sombre + halo */
.mw-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(700px 420px at 22% 50%,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.35) 45%,
      rgba(0,0,0,.10) 75%,
      rgba(0,0,0,0) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.28) 55%,
      rgba(0,0,0,.12) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.35) 100%);
}

.mw-hero-inner{
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
}


/* Responsive */
@media (max-width: 768px){
  .mw-hero, .mw-hero-inner{ min-height: 460px; }
  .mw-hero-overlay{
    background:
      radial-gradient(520px 360px at 35% 45%,
        rgba(0,0,0,.62) 0%,
        rgba(0,0,0,.40) 55%,
        rgba(0,0,0,.10) 85%,
        rgba(0,0,0,0) 100%),
      linear-gradient(180deg,
        rgba(0,0,0,.18) 0%,
        rgba(0,0,0,.40) 100%);
  }
}
	   /* =========================
   BADGE MAGAZINE MEDIWALK
   ========================= */

.mw-magazine-badge{
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 1.6rem auto 0;
  padding: 1.2rem 1.4rem;
  max-width: 520px;
  background: linear-gradient(135deg,#ffffff,#fafafa);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  text-decoration: none;
  color: #1f2937;
  transition: transform .2s ease, box-shadow .2s ease;
}

.mw-magazine-badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* Icône */
.mw-magazine-icon{
  font-size: 1.8rem;
  line-height: 1;
}

/* Texte */
.mw-magazine-text strong{
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}

.mw-magazine-text span{
  display: block;
  font-size: .92rem;
  color: #6b7280;
  margin-top: 2px;
}

.mw-magazine-text em{
  display: block;
  font-size: .9rem;
  font-style: normal;
  font-weight: 500;
  color: #ff537a;
  margin-top: 4px;
}

/* Flèche */
.mw-magazine-arrow{
  margin-left: auto;
  font-size: 1.6rem;
  opacity: .4;
}

/* Mobile */
@media (max-width: 640px){
  .mw-magazine-badge{
    margin: 1.4rem 1rem 0;
    padding: 1rem 1.2rem;
  }
}
	   @media (min-width: 992px){
  .mw-hero .slide-content{
    max-width: 920px !important;
    width: 100% !important;
  }

  /* si bootstrap te limite via col-lg-6 */
  .mw-hero .col-lg-6.slide-content{
    flex: 0 0 75% !important;   /* au lieu de 50% */
    max-width: 75% !important;
  }
}
		   /* FIX HERO DESKTOP : éviter le bloc étriqué */
@media (min-width: 992px){
  .mw-hero .container,
  .mw-hero .row,
  .mw-hero .slide-content{
    max-width: none !important;
    width: 100% !important;
  }

  /* Force la colonne à ne pas être limitée par une règle externe */
  .mw-hero .slide-content{
    flex: 0 0 75% !important;
    max-width: 75% !important;
  }

  /* Force le H1 à prendre la largeur disponible */
  .mw-hero .slide-content h1,
  .mw-hero .slide-content .heading{
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    white-space: normal !important;
  }
}
.breadcrumbs {
	font-size: 1.1rem;
	opacity: .9;
	margin-top: 1rem
}

.breadcrumbs a {
	color: #ffd700;
	text-decoration: none
}

.icon {
	font-size: 2rem;

	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}
/* =========================
   FIX HERO MOBILE
   ========================= */
@media (max-width: 768px) {

  .slide-content{
    padding-top: 4% !important;   /* au lieu de 10% */
    padding-left: 6% !important;  /* recentre horizontalement */
    padding-right: 6% !important;
    padding-bottom: 4% !important;
  }

  .slide-content h1{
    font-size: clamp(1.6rem, 7.5vw, 2.2rem) !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
	  padding-top: 30%;
  }

}
