.h1-new {
    width: 65%;
    margin: 20px auto 30px auto;
    padding: 5px;
    text-align: center;
    background: linear-gradient(91deg, #2CB3F5, #d11111d4);
    color: #ffffff !important;
    border-radius: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-family: "Comfortaa", sans-serif;
    font-size: 1.5rem;
    margin: 10px;
    font-weight: 400;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue:       #2563a8;
    --blue-dark:  #1a2d4a;
    --blue-light: #e8f2fc;
    --teal:       #1aa8a0;
    --teal-light: #e0f5f4;
    --green:      #27ae60;
    --green-light:#e6f9ef;
    --purple:     #7c3aed;
    --purple-light:#ede9fe;
    --orange:     #e07b1a;
    --orange-light:#fef3e2;
    --red:        #e03a3a;
    --red-light:  #fdeaea;
    --light:      #f4f7fb;
    --border:     #dde3ed;
    --text:       #2d3748;
    --muted:      #64748b;
    --white:      #ffffff;
  }

  body {
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
  }

  /* ── PAGE HEADER ── */

  .page-header::after {
    content: '🐾';
    position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
    font-size: 7rem; opacity: 0.07; pointer-events: none;
  }
  .page-header .container { display: flex; align-items: flex-start; gap: 20px; }

  .page-header-text h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700; color: #fff; line-height: 1.2;
  }
  .page-header-text p { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.75); max-width: 620px; }

  /* ── AVANTAGES ── */
  .avantages-strip {
    background: var(--teal);
    padding: 0;
  }
  .avantages-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-wrap: wrap;
  }
  .av-item {
    display: flex; align-items: center; gap: 7px;
    padding: 12px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 12.5px; font-weight: 500;
  }
  .av-item:last-child { border-right: none; }
  .av-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.6); border-radius: 50%; flex-shrink: 0; }

  /* ── LAYOUT ── */
  .container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
  .section      { padding: 52px 0; background: #ecfbfe; }
  .section-alt  { padding: 52px 0; background: #e1eeff; }

  /* ── SECTION LABELS ── */
  .section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
  .section-label .line { width: 28px; height: 3px; border-radius: 2px; flex-shrink: 0; }
  .section-label span { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

  .label-blue  .line { background: var(--blue);   } .label-blue  span { color: var(--blue);   }
  .label-teal  .line { background: var(--teal);   } .label-teal  span { color: var(--teal);   }
  .label-green .line { background: var(--green);  } .label-green span { color: var(--green);  }
  .label-purple.line { background: var(--purple); } .label-purple span{ color: var(--purple); }
  .label-orange.line { background: var(--orange); } .label-orange span{ color: var(--orange); }

  .section-title {
    font-family: 'comfortaa', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700; color: var(--blue-dark); margin-bottom: 8px;
  }
  .section-intro { font-size: 14.5px; color: var(--muted); line-height: 1.75; max-width: 720px; margin-bottom: 28px; }

  /* ── INTRO COLORED BOX ── */
  .intro-box {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    padding: 22px 26px; border-radius: 0 6px 6px 0; margin-bottom: 28px;
  }
  .intro-box p { font-size: 14.5px; line-height: 1.8; color: var(--text); }
  .intro-box strong { color: var(--blue); }

  /* ── BENEFITS LIST ── */
  .benefits-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-bottom: 8px; }
  .benefits-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--text); line-height: 1.55;
    background: var(--white); border: 1px solid var(--border);
    padding: 10px 14px; border-radius: 4px;
  }
  .benefits-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  /* ── SECTION HEADER BANNERS (colored) ── */
  .section-banner {
    padding: 28px 0 0;
    margin-bottom: 0;
  }
  .section-banner-inner {
    padding: 20px 26px 16px;
    border-radius: 6px 6px 0 0;
    margin-bottom: 0;
  }
  .banner-blue   { background: var(--blue);   }
  .banner-teal   { background: var(--teal);   }
  .banner-green  { background: var(--green);  }
  .banner-purple { background: var(--purple); }
  .banner-orange { background: var(--orange); }

  .section-banner-inner h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0;
  }
  .section-banner-inner p { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 3px; }
  .banner-num {
    display: inline-block; background: rgba(255,255,255,0.2);
    color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 2px 8px; border-radius: 2px; margin-bottom: 6px;
  }

  /* ── CARDS ── */
  .cards-grid-3 { display: flex; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

  .card {
    background: var(--white); border: 1px solid var(--border);
    padding: 22px 18px; border-radius: 6px;
    transition: box-shadow 0.2s, transform 0.18s;
    display: flex; flex-direction: column;
  }
  .card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.09); transform: translateY(-3px); }

  .card-top {
    display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  }
  .card-icon-circle {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .ic-blue   { background: var(--blue-light);   }
  .ic-teal   { background: var(--teal-light);   }
  .ic-green  { background: var(--green-light);  }
  .ic-purple { background: var(--purple-light); }
  .ic-orange { background: var(--orange-light); }

  .card h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem; font-weight: 700; color: var(--blue-dark);
  }
  .card p { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }
  .card-chip {
    display: inline-block; margin-top: 12px;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 3px; align-self: flex-start;
  }
  .chip-blue   { background: var(--blue-light);   color: var(--blue);   }
  .chip-teal   { background: var(--teal-light);   color: var(--teal);   }
  .chip-green  { background: var(--green-light);  color: var(--green);  }
  .chip-purple { background: var(--purple-light); color: var(--purple); }
  .chip-orange { background: var(--orange-light); color: var(--orange); }

  /* ── DETAIL CARDS (topiques) ── */
  .detail-cards { display: flex; flex-direction: column; gap: 10px; }
  .detail-card { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
  .detail-card-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
  }
  .dh-blue   { background: var(--blue-light);   }
  .dh-teal   { background: var(--teal-light);   }
  .dh-green  { background: var(--green-light);  }
  .dh-purple { background: var(--purple-light); }

  .detail-card-header .dh-icon { font-size: 1.2rem; flex-shrink: 0; }
  .detail-card-header h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem; font-weight: 700; color: var(--blue-dark); flex: 1;
  }
  .detail-card-body {
    padding: 14px 18px;
    font-size: 13.5px; color: var(--muted); line-height: 1.75;
    background: var(--white);
    border-top: 1px solid var(--border);
  }

  /* ── ORL CARDS ── */
  .orl-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; padding: 20px 16px;
    border-top: 4px solid var(--teal);
    transition: box-shadow 0.2s, transform 0.18s;
  }
  .orl-card:hover { box-shadow: 0 4px 16px rgba(26,168,160,0.15); transform: translateY(-2px); }
  .orl-card .orl-icon { font-size: 1.4rem; margin-bottom: 10px; display: block; }
  .orl-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.92rem; font-weight: 700; color: var(--teal); margin-bottom: 8px;
  }
  .orl-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

  /* ── TAGS ── */
  .tags-block {
    background: var(--white); border: 1px solid var(--border);
    padding: 20px; border-radius: 6px;
    border-top: 3px solid var(--blue);
  }
  .tags-block.teal-top { border-top-color: var(--teal); }
  .tags-block h4 {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
  }
  .tags-block.teal-top h4 { color: var(--teal); }
  .tags-wrap { display: flex; flex-wrap: wrap; gap: 7px; }
  .tag {
    background: var(--light); color: var(--text);
    border: 1px solid var(--border); border-radius: 3px;
    padding: 4px 11px; font-size: 13px; cursor: default;
    transition: background 0.15s, border-color 0.15s;
  }
  .tag:hover { background: var(--blue-light); border-color: #93b8e0; }
  .tag.teal-tag:hover { background: var(--teal-light); border-color: var(--teal); }

  .extras-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
  .extra-pill {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: 4px;
    font-size: 13px; font-weight: 500; flex: 1; min-width: 200px;
  }
  .ep-teal   { background: var(--teal-light);   color: var(--teal);   border: 1px solid #9dd6d4; }
  .ep-purple { background: var(--purple-light); color: var(--purple); border: 1px solid #c4b5fd; }

  /* ── CASCADE ── */
  .cascade-wrap {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-radius: 6px; overflow: hidden; border: 1px solid var(--border);
  }
  .casc {
    padding: 24px 16px; text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
  }
  .casc:nth-child(1) { background: #eef4fc; }
  .casc:nth-child(2) { background: #e6f9ef; }
  .casc:nth-child(3) { background: var(--orange-light); }
  .casc:nth-child(4) { background: var(--teal-light); }
  .casc:last-child   { border-right: none; }

  .casc-n {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 6px;
  }
  .casc:nth-child(1) .casc-n { color: var(--blue);   }
  .casc:nth-child(2) .casc-n { color: var(--green);  }
  .casc:nth-child(3) .casc-n { color: var(--orange); }
  .casc:nth-child(4) .casc-n { color: var(--teal);   }

  .casc h4 {
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 6px;
  }
  .casc:nth-child(1) h4 { color: var(--blue);   }
  .casc:nth-child(2) h4 { color: var(--green);  }
  .casc:nth-child(3) h4 { color: var(--orange); }
  .casc:nth-child(4) h4 { color: var(--teal);   }

  .casc p { font-size: 12px; color: var(--muted); line-height: 1.55; }
  .casc-arrow {
    position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
    z-index: 2; color: var(--border); font-size: 18px;
  }

  /* ── REGLE CARDS ── */
  .regle-list { display: flex; flex-direction: column; gap: 10px; }
  .regle-item {
    display: flex; gap: 14px; align-items: flex-start;
    border: 1px solid var(--border);
    padding: 16px 20px; border-radius: 6px;
  }
  .regle-item.warn   { background: #fffbeb; border-color: #fcd34d; border-left: 4px solid #f59e0b; }
  .regle-item.info   { background: var(--blue-light); border-left: 4px solid var(--blue); }
  .regle-item.neutral{ background: var(--light); border-left: 4px solid var(--muted); }
  .regle-item.ok     { background: var(--green-light); border-left: 4px solid var(--green); }
  .regle-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
  .regle-item p { font-size: 14px; line-height: 1.75; color: var(--text); }
  .regle-item p strong { color: var(--blue-dark); }
  .regle-item.ok p strong { color: var(--green); }
  .regle-item.warn p strong { color: #92400e; }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(100deg, #3cb2ea 0%, #81b7f5 50%, #c01132 100%);
    padding: 40px 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  }
  .cta-section h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem; font-weight: 700; color: #fff;
  }
  .cta-section p { font-size: 13.5px; color: rgba(255,255,255,0.8); margin-top: 4px; }
  .btn-white {
    background: #fff; color: var(--blue);
    padding: 12px 28px; border-radius: 4px;
    font-weight: 700; font-size: 13.5px; text-decoration: none; white-space: nowrap;
    display: inline-block; transition: box-shadow 0.2s, transform 0.15s;
  }
  .btn-white:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.18); transform: translateY(-1px); }

  /* ── CONTACT ── */
  .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .contact-card {
    background: var(--white); border: 1px solid var(--border);
    border-top: 4px solid var(--blue);
    padding: 22px 20px; border-radius: 0 0 6px 6px;
  }
  .contact-card:nth-child(2) { border-top-color: var(--teal);  }
  .contact-card:nth-child(3) { border-top-color: var(--green); }
  .contact-card h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--blue-dark); margin-bottom: 12px;
  }
  .contact-card:nth-child(2) h3 { color: var(--teal);  }
  .contact-card:nth-child(3) h3 { color: var(--green); }
  .contact-card p { font-size: 13px; line-height: 2; color: var(--text); }
  .contact-card strong { color: var(--blue-dark); }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .cascade-wrap { grid-template-columns: 1fr 1fr; }
    .benefits-list { grid-template-columns: 1fr; }
    .av-item { border-right: none; }
  }
  @media (max-width: 560px) {
    .cards-grid-3, .cards-grid-4, .cards-grid-2 { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cascade-wrap { grid-template-columns: 1fr; }
    .casc-arrow { display: none; }
    .container { padding: 0 14px; }
    .page-header { padding: 28px 0 22px; }
    .section, .section-alt { padding: 36px 0; }
  }