/* ===== HOME CSS - Wodow.fr ===== */
/* Design: Hero Split Screen + Sections enrichies */

/* ===== HERO SPLIT SCREEN ===== */
.hero-split {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Panneau gauche - image/visuel */
.hero-visual {
  position: relative;
  background-color: #1a1a2e;
  overflow: hidden;
  min-height: 500px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.75;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 46, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 20px;
}
.hero-stat-pill {
  background-color: #bf360c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.15);
}
.hero-stat-pill span {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}
.hero-floating-tag {
  background-color: #ffab91;
  color: #1a1a2e;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(-2deg);
  border: 2px solid rgba(26,26,46,0.15);
}

/* Panneau droit - contenu */
.hero-content {
  background-color: #f5f5f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #bf360c;
  margin-bottom: 20px;
}
.hero-eyebrow svg { flex-shrink: 0; }
.hero-content h1 {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 .accent {
  color: #bf360c;
}
.hero-lead {
  font-size: 17px;
  color: #546e7a;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #546e7a;
}
.hero-perk svg { flex-shrink: 0; }

/* ===== CATEGORIES BAND ===== */
.categories-band {
  background-color: #1a1a2e;
  padding: 0;
}
.categories-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cat-band-item {
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background-color 0.2s;
  text-decoration: none;
}
.cat-band-item:last-child { border-right: none; }
.cat-band-item:hover { background-color: rgba(191, 54, 12, 0.15); }
.cat-band-icon {
  width: 44px;
  height: 44px;
  background-color: #bf360c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-band-icon svg { color: #fff; }
.cat-band-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.cat-band-info span {
  font-size: 12px;
  color: #81d4fa;
}

/* ===== FEATURED ARTICLES ===== */
.articles-section {
  padding: 80px 0;
  background-color: #f5f5f7;
}
.articles-section .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.articles-header-left h2 {
  font-size: 34px;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.articles-header-left p {
  font-size: 16px;
  color: #78909c;
  margin: 0;
}
.articles-header a {
  font-size: 14px;
  font-weight: 600;
  color: #bf360c;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border: 2px solid #bf360c;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}
.articles-header a:hover { background-color: #bf360c; color: #fff; }

/* Grid articles: 1 featured large + reste en colonnes */
.articles-grid-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.articles-grid-rest {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Article card featured (grande) */
.article-card-featured {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8f0;
  transition: box-shadow 0.25s, transform 0.25s;
}
.article-card-featured:hover {
  box-shadow: 0 12px 40px rgba(191, 54, 12, 0.14);
  transform: translateY(-4px);
}
.article-card-featured .card-img {
  height: 300px;
  overflow: hidden;
}
.article-card-featured .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card-featured .card-body {
  padding: 28px 28px 24px;
}
.article-card-featured .card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.article-card-featured h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}
.article-card-featured h3 a {
  color: #1a1a2e;
  text-decoration: none;
}
.article-card-featured h3 a:hover { color: #bf360c; }
.article-card-featured .card-excerpt {
  font-size: 15px;
  color: #546e7a;
  line-height: 1.65;
  margin: 0;
}

/* Article card secondaire (colonne droite) */
.article-card-side {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8f0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.article-card-side:hover {
  box-shadow: 0 8px 30px rgba(191, 54, 12, 0.12);
  transform: translateY(-3px);
}
.article-card-side .card-img {
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
.article-card-side .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card-side .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-side .card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.article-card-side h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.article-card-side h3 a {
  color: #1a1a2e;
  text-decoration: none;
}
.article-card-side h3 a:hover { color: #bf360c; }
.article-card-side .card-excerpt {
  font-size: 13px;
  color: #78909c;
  line-height: 1.6;
  margin: 0;
}

/* Article card compact (grille du bas) */
.article-card-compact {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8f0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card-compact:hover {
  box-shadow: 0 6px 24px rgba(191, 54, 12, 0.10);
  transform: translateY(-2px);
}
.article-card-compact .card-img {
  height: 150px;
  overflow: hidden;
}
.article-card-compact .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card-compact .card-body {
  padding: 16px;
}
.article-card-compact .card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.article-card-compact h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4;
}
.article-card-compact h3 a {
  color: #1a1a2e;
  text-decoration: none;
}
.article-card-compact h3 a:hover { color: #bf360c; }

/* ===== CALCULATEUR D'ECONOMIES ===== */
.savings-section {
  background-color: #1a1a2e;
  padding: 80px 0;
  color: #fff;
}
.savings-section .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.savings-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.savings-intro h2 {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.savings-intro p {
  font-size: 16px;
  color: #90a4ae;
  line-height: 1.7;
  margin-bottom: 28px;
}
.savings-tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.savings-tips li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #b0bec5;
  line-height: 1.5;
}
.savings-tips li svg { flex-shrink: 0; margin-top: 2px; }

/* Calculateur */
.savings-calc {
  background-color: #12122a;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(129, 212, 250, 0.2);
}
.savings-calc-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.savings-calc-title svg { color: #ffab91; }

.calc-field {
  margin-bottom: 20px;
}
.calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #81d4fa;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calc-field input[type="number"],
.calc-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(129, 212, 250, 0.2);
  border-radius: 10px;
  background-color: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: border-color 0.2s;
}
.calc-field input[type="number"]:focus,
.calc-field select:focus {
  border-color: #81d4fa;
  outline: none;
  background-color: rgba(129, 212, 250, 0.08);
}
.calc-field select option { background-color: #1a1a2e; color: #fff; }

.calc-result {
  background-color: #bf360c;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 24px;
}
.calc-result .result-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  display: block;
}
.calc-result .result-value {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.calc-result .result-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ===== SLIDER TACTILE (Programmes affiliation) ===== */
.slider-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}
.slider-section .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.slider-section-header {
  text-align: center;
  margin-bottom: 44px;
}
.slider-section-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.slider-section-header p {
  font-size: 16px;
  color: #78909c;
  max-width: 560px;
  margin: 0 auto;
}

.slider-track-wrapper {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
  padding-bottom: 8px;
  transition: none;
}
.slider-track.is-dragging { cursor: grabbing; }

.slider-card {
  min-width: 280px;
  max-width: 280px;
  background-color: #f5f5f7;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  flex-shrink: 0;
  transition: box-shadow 0.2s;
}
.slider-card:hover {
  box-shadow: 0 8px 28px rgba(191, 54, 12, 0.12);
}
.slider-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: #bf360c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.slider-card-icon svg { color: #fff; }
.slider-card strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.slider-card .commission {
  display: inline-block;
  font-size: 22px;
  font-weight: 900;
  color: #bf360c;
  margin-bottom: 10px;
}
.slider-card .desc {
  font-size: 13px;
  color: #78909c;
  line-height: 1.6;
  margin-bottom: 16px;
}
.slider-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.slider-tag {
  font-size: 11px;
  font-weight: 600;
  background-color: #81d4fa;
  color: #1a1a2e;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #bf360c;
  background-color: #fff;
  color: #bf360c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}
.slider-btn:hover { background-color: #bf360c; color: #fff; }
.slider-btn svg { display: block; }

/* ===== COMPARATIF TABLEAU ===== */
.comparatif-section {
  padding: 80px 0;
  background-color: #f5f5f7;
}
.comparatif-section .container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.comparatif-section h2 {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.comparatif-section .section-lead {
  text-align: center;
  font-size: 16px;
  color: #78909c;
  margin-bottom: 40px;
}
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #e8e8f0;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  font-size: 14px;
}
.comp-table thead th {
  background-color: #1a1a2e;
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comp-table thead th:first-child { border-radius: 12px 0 0 0; }
.comp-table thead th:last-child { border-radius: 0 12px 0 0; }
.comp-table tbody tr { border-bottom: 1px solid #f0f0f8; }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:hover { background-color: #fafafa; }
.comp-table td {
  padding: 15px 20px;
  color: #374151;
  vertical-align: middle;
}
.comp-table td:first-child { font-weight: 700; color: #1a1a2e; }
.comp-check { color: #2e7d32; font-weight: 700; font-size: 16px; }
.comp-cross  { color: #c62828; font-weight: 700; font-size: 16px; }
.comp-partial { color: #e65100; font-weight: 600; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 0;
  background-color: #bf360c;
  color: #fff;
}
.newsletter-section .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.newsletter-text h2 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.newsletter-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.nl-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}
.newsletter-msg {
  margin-top: 12px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  display: none;
}
.newsletter-msg.success { display: block; }

/* ===== DISCLAIMER BAS ===== */
.home-disclaimer {
  background-color: #f0f4f8;
  border-top: 1px solid #dde3ec;
  padding: 24px;
  text-align: center;
}
.home-disclaimer p {
  font-size: 13px;
  color: #78909c;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.home-disclaimer strong { color: #546e7a; }

/* ===== RESPONSIVE (auto-repair) ===== */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 48px 36px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-visual-overlay {
    padding: 28px;
    gap: 16px;
  }

  .hero-stat-pill span {
    font-size: 22px;
  }

  .categories-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-band-item:nth-child(2) {
    border-right: none;
  }

  .cat-band-item:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .cat-band-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-right: none;
  }

  .articles-section {
    padding: 60px 0;
  }

  .articles-header-left h2 {
    font-size: 28px;
  }

  .articles-grid-featured {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .articles-grid-rest {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .article-card-featured .card-img {
    height: 240px;
  }

  .article-card-featured h3 {
    font-size: 19px;
  }

  .article-card-side .card-img {
    height: 160px;
  }

  .savings-section {
    padding: 60px 0;
  }

  .savings-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .savings-intro h2 {
    font-size: 28px;
  }

  .savings-calc {
    padding: 28px;
  }

  .calc-result .result-value {
    font-size: 34px;
  }

  .slider-section {
    padding: 60px 0;
  }

  .slider-section-header h2 {
    font-size: 26px;
  }

  .slider-card {
    min-width: 240px;
    max-width: 240px;
  }

  .comparatif-section {
    padding: 60px 0;
  }

  .comparatif-section h2 {
    font-size: 26px;
  }

  .newsletter-section {
    padding: 60px 0;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .newsletter-text h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
    order: -1;
  }

  .hero-visual img {
    opacity: 0.6;
  }

  .hero-visual-overlay {
    padding: 20px;
    gap: 12px;
  }

  .hero-stat-pill {
    font-size: 13px;
    padding: 8px 16px;
  }

  .hero-stat-pill span {
    font-size: 20px;
  }

  .hero-floating-tag {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-content {
    padding: 36px 24px;
    order: 1;
  }

  .hero-eyebrow {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-perks {
    gap: 8px;
  }

  .hero-perk {
    font-size: 13px;
  }

  .categories-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
  }

  .cat-band-item {
    padding: 18px 14px;
    gap: 10px;
  }

  .cat-band-item:nth-child(2) {
    border-right: none;
  }

  .cat-band-item:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .cat-band-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-right: none;
  }

  .cat-band-icon {
    width: 36px;
    height: 36px;
  }

  .cat-band-info strong {
    font-size: 13px;
  }

  .cat-band-info span {
    font-size: 11px;
  }

  .articles-section {
    padding: 48px 0;
  }

  .articles-section .container {
    padding: 0 16px;
  }

  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
    gap: 14px;
  }

  .articles-header-left h2 {
    font-size: 24px;
  }

  .articles-header-left p {
    font-size: 14px;
  }

  .articles-grid-featured {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .articles-grid-rest {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .article-card-featured .card-img {
    height: 200px;
  }

  .article-card-featured .card-body {
    padding: 20px;
  }

  .article-card-featured h3 {
    font-size: 18px;
  }

  .article-card-featured .card-excerpt {
    font-size: 14px;
  }

  .article-card-side .card-img {
    height: 140px;
  }

  .article-card-side .card-body {
    padding: 16px;
  }

  .article-card-side h3 {
    font-size: 15px;
  }

  .article-card-compact .card-img {
    height: 120px;
  }

  .article-card-compact h3 {
    font-size: 13px;
  }

  .savings-section {
    padding: 48px 0;
  }

  .savings-section .container {
    padding: 0 16px;
  }

  .savings-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .savings-intro h2 {
    font-size: 24px;
  }

  .savings-intro p {
    font-size: 15px;
  }

  .savings-tips li {
    font-size: 13px;
  }

  .savings-calc {
    padding: 24px;
    border-radius: 14px;
  }

  .savings-calc-title {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .calc-field label {
    font-size: 12px;
  }

  .calc-field input[type="number"],
  .calc-field select {
    font-size: 15px;
    padding: 10px 14px;
  }

  .calc-result {
    padding: 16px;
  }

  .calc-result .result-value {
    font-size: 36px;
  }

  .calc-result .result-label {
    font-size: 11px;
  }

  .slider-section {
    padding: 48px 0;
  }

  .slider-section .container {
    padding: 0 16px;
  }

  .slider-section-header {
    margin-bottom: 28px;
  }

  .slider-section-header h2 {
    font-size: 22px;
  }

  .slider-section-header p {
    font-size: 14px;
  }

  .slider-card {
    min-width: 220px;
    max-width: 220px;
    padding: 22px 18px;
  }

  .slider-card strong {
    font-size: 15px;
  }

  .slider-card .commission {
    font-size: 19px;
  }

  .slider-card .desc {
    font-size: 12px;
  }

  .slider-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .comparatif-section {
    padding: 48px 0;
  }

  .comparatif-section .container {
    padding: 0 16px;
  }

  .comparatif-section h2 {
    font-size: 22px;
  }

  .comparatif-section .section-lead {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .comp-table {
    font-size: 13px;
  }

  .comp-table thead th {
    padding: 12px 14px;
    font-size: 12px;
  }

  .comp-table td {
    padding: 12px 14px;
  }

  .newsletter-section {
    padding: 48px 0;
  }

  .newsletter-section .container {
    padding: 0 16px;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter-text h2 {
    font-size: 22px;
  }

  .newsletter-text p {
    font-size: 14px;
  }

  .home-disclaimer {
    padding: 18px 16px;
  }

  .home-disclaimer p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 200px;
  }

  .hero-visual-overlay {
    padding: 14px;
    gap: 10px;
  }

  .hero-stat-pill {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-stat-pill span {
    font-size: 18px;
  }

  .hero-floating-tag {
    font-size: 10px;
    padding: 5px 10px;
    letter-spacing: 0.5px;
  }

  .hero-content {
    padding: 28px 16px;
  }

  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .hero-lead {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-perk {
    font-size: 12px;
    gap: 8px;
  }

  .categories-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .cat-band-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px;
  }

  .cat-band-item:last-child {
    border-bottom: none;
  }

  .cat-band-item:nth-child(2) {
    border-right: none;
  }

  .cat-band-item:nth-child(3) {
    border-top: none;
  }

  .cat-band-item:nth-child(4) {
    border-top: none;
  }

  .cat-band-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .cat-band-info strong {
    font-size: 12px;
  }

  .cat-band-info span {
    font-size: 10px;
  }

  .articles-section {
    padding: 36px 0;
  }

  .articles-header-left h2 {
    font-size: 20px;
  }

  .articles-header-left p {
    font-size: 13px;
  }

  .articles-header a {
    font-size: 12px;
    padding: 6px 12px;
  }

  .articles-grid-featured {
    gap: 12px;
    margin-bottom: 12px;
  }

  .articles-grid-rest {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-card-featured .card-img {
    height: 170px;
  }

  .article-card-featured .card-body {
    padding: 16px;
  }

  .article-card-featured h3 {
    font-size: 16px;
  }

  .article-card-featured .card-excerpt {
    font-size: 13px;
  }

  .article-card-side .card-img {
    height: 120px;
  }

  .article-card-side .card-body {
    padding: 14px;
  }

  .article-card-side h3 {
    font-size: 14px;
  }

  .article-card-side .card-excerpt {
    font-size: 12px;
  }

  .article-card-compact .card-body {
    padding: 12px;
  }

  .article-card-compact h3 {
    font-size: 13px;
  }

  .savings-section {
    padding: 36px 0;
  }

  .savings-intro h2 {
    font-size: 20px;
  }

  .savings-intro p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .savings-tips li {
    font-size: 12px;
    gap: 8px;
  }

  .savings-calc {
    padding: 18px;
    border-radius: 12px;
  }

  .savings-calc-title {
    font-size: 15px;
    margin-bottom: 16px;
    gap: 8px;
  }

  .calc-field {
    margin-bottom: 14px;
  }

  .calc-field label {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .calc-field input[type="number"],
  .calc-field select {
    font-size: 14px;
    padding: 9px 12px;
    border-radius: 8px;
  }

  .calc-result {
    padding: 14px;
    border-radius: 10px;
    margin-top: 18px;
  }

  .calc-result .result-value {
    font-size: 30px;
  }

  .calc-result .result-label {
    font-size: 10px;
  }

  .calc-result .result-sub {
    font-size: 12px;
  }

  .slider-section {
    padding: 36px 0;
  }

  .slider-section-header h2 {
    font-size: 20px;
  }

  .slider-section-header p {
    font-size: 13px;
  }

  .slider-section-header {
    margin-bottom: 20px;
  }

  .slider-card {
    min-width: 200px;
    max-width: 200px;
    padding: 18px 14px;
    border-radius: 12px;
  }

  .slider-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .slider-card strong {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .slider-card .commission {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .slider-card .desc {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .slider-tag {
    font-size: 10px;
    padding: 2px 8px;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
  }

  .slider-controls {
    margin-top: 20px;
    gap: 8px;
  }

  .comparatif-section {
    padding: 36px 0;
  }

  .comparatif-section h2 {
    font-size: 20px;
  }

  .comparatif-section .section-lead {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .comp-table {
    font-size: 12px;
  }

  .comp-table thead th {
    padding: 10px 10px;
    font-size: 11px;
  }

  .comp-table td {
    padding: 10px 10px;
  }

  .comp-check,
  .comp-cross {
    font-size: 14px;
  }

  .comp-partial {
    font-size: 12px;
  }

  .newsletter-section {
    padding: 36px 0;
  }

  .newsletter-inner {
    gap: 16px;
  }

  .newsletter-text h2 {
    font-size: 20px;
  }

  .newsletter-text p {
    font-size: 13px;
  }

  .nl-disclaimer {
    font-size: 11px;
  }

  .newsletter-msg {
    font-size: 13px;
  }

  .home-disclaimer {
    padding: 14px 12px;
  }

  .home-disclaimer p {
    font-size: 11px;
  }
}