        /* ===== RESET & BASE BAT'IK ===== */
        #depannage-cards {
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
          background: #ffffff;
          padding: 40px max(20px, env(safe-area-inset-left));
          color: #0b1f33;
        }

        #depannage-cards * {
          box-sizing: border-box;
          font-family: inherit;
        }

        /* ===== BOX PREMIUM CLAIR ===== */
        #depannage-cards .box {
          border-radius: 40px;
          overflow: hidden;
          box-shadow: 0 32px 80px rgba(15, 23, 42, 0.15);
          border: 1px solid rgba(15, 23, 42, 0.06);
          background:
            radial-gradient(1100px 520px at 15% 15%, rgba(38, 79, 143, 0.08), transparent 55%),
            linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
        }

        #depannage-cards .wrap {
          max-width: 1100px;
          margin: 0 auto;
          padding: 80px 24px;
        }

        /* ===== HEAD ===== */
        #depannage-cards .head {
          text-align: center;
          margin-bottom: 30px;
        }

        #depannage-cards .kicker {
          font-size: 13px;
          letter-spacing: .15em;
          text-transform: uppercase;
          color: #264f8f;
          font-weight: 800;
          margin-bottom: 12px;
        }

        #depannage-cards h2 {
          margin: 0 0 15px;
          font-size: clamp(28px, 4vw, 44px);
          color: #0b2748;
          font-weight: 900;
          line-height: 1.1;
          letter-spacing: -0.02em;
        }

        #depannage-cards p.lead {
          margin: 0 auto 20px;
          max-width: 850px;
          text-align: center;
          color: #4b5563;
          font-size: 16px;
          line-height: 1.7;
          font-weight: 500;
        }

        /* ===== KPI BAR ===== */
        #depannage-cards .kpis {
          display: flex;
          flex-wrap: wrap;
          gap: 12px;
          justify-content: center;
          margin: 0 auto 40px;
          max-width: 1000px;
        }

        #depannage-cards .pill {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 12px 18px;
          border-radius: 999px;
          background: #ffffff;
          border: 1px solid #e2e8f0;
          color: #0b2748;
          font-weight: 800;
          font-size: 13.5px;
          box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
          white-space: nowrap;
        }

        #depannage-cards .dot {
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background: #22c55e;
          display: inline-block;
          box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
        }

        /* ===== GRID ===== */
        #depannage-cards .grid {
          display: grid;
          gap: 20px;
          grid-template-columns: repeat(2, 1fr);
        }

        #depannage-cards .card:last-child {
          grid-column: 1 / span 2;
          max-width: 540px;
          margin: 0 auto;
        }

        /* ===== CARDS ===== */
        #depannage-cards .card {
          background: #ffffff;
          border: 1px solid #edf2f7;
          border-radius: 28px;
          overflow: hidden;
          display: flex;
          flex-direction: column;
          box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #depannage-cards .card:hover {
          transform: translateY(-5px);
          box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
          border-color: #264f8f;
        }

        #depannage-cards .card img {
          width: 100%;
          height: 240px;
          object-fit: cover;
          display: block;
          transition: transform 0.5s ease;
        }

        #depannage-cards .card:hover img {
          transform: scale(1.05);
        }

        /* BODY */
        #depannage-cards .body {
          padding: 24px;
          display: flex;
          flex-direction: column;
          flex-grow: 1;
        }

        #depannage-cards .card h3 {
          margin: 0 0 10px;
          font-size: 20px;
          font-weight: 900;
          color: #0b2748;
          line-height: 1.3;
        }

        #depannage-cards .card p {
          margin: 0 0 12px;
          color: #4b5563;
          font-size: 15px;
          line-height: 1.6;
          font-weight: 500;
        }

        #depannage-cards .muted {
          font-style: italic;
          color: #264f8f;
          font-size: 14px;
          font-weight: 700;
          margin-bottom: 15px;
        }

        /* CHECKLIST */
        #depannage-cards .list {
          margin: 0 0 20px;
          padding: 0;
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 10px;
        }

        #depannage-cards .li {
          display: flex;
          gap: 12px;
          align-items: flex-start;
          color: #4b5563;
          font-size: 14px;
          line-height: 1.5;
        }

        #depannage-cards .check {
          width: 22px;
          height: 22px;
          border-radius: 50%;
          background: #ecfdf5;
          border: 1px solid #10b981;
          color: #10b981;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 900;
          flex-shrink: 0;
          font-size: 12px;
        }

        /* CTA */
        #depannage-cards .cta {
          margin-top: auto;
          padding-top: 10px;
        }

        #depannage-cards .btn {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 14px 24px;
          border-radius: 999px;
          background: #f36b3b;
          color: #ffffff;
          text-decoration: none;
          font-weight: 900;
          font-size: 15px;
          box-shadow: 0 10px 20px rgba(243, 107, 59, 0.2);
          transition: all 0.3s ease;
        }

        #depannage-cards .btn:hover {
          transform: translateY(-2px);
          filter: brightness(1.1);
          box-shadow: 0 15px 25px rgba(243, 107, 59, 0.3);
        }

        /* MOBILE */
        @media (max-width: 900px) {
          #depannage-cards .grid {
            grid-template-columns: 1fr;
          }

          #depannage-cards .card:last-child {
            grid-column: auto;
            max-width: 100%;
          }

          #depannage-cards .wrap {
            padding: 60px 20px;
          }

          #depannage-cards .pill {
            font-size: 12px;
            padding: 10px 14px;
          }
        }
        /* ===== RESET & BASE BAT'IK ===== */
        #depannage-plomberie {
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
          background: #ffffff;
          padding: 40px max(20px, env(safe-area-inset-left));
          color: #0b1f33;
        }

        #depannage-plomberie * {
          box-sizing: border-box;
          font-family: inherit;
        }

        /* ===== BOX PREMIUM CLAIR ===== */
        #depannage-plomberie .box {
          border-radius: 40px;
          overflow: hidden;
          box-shadow: 0 32px 80px rgba(15, 23, 42, 0.16);
          border: 1px solid rgba(15, 23, 42, 0.06);
          background:
            radial-gradient(1100px 520px at 15% 15%, rgba(38, 79, 143, 0.08), transparent 55%),
            linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
        }

        #depannage-plomberie .wrap {
          max-width: 1100px;
          margin: 0 auto;
          padding: 80px 24px;
        }

        /* ===== HEAD ===== */
        #depannage-plomberie .head {
          text-align: center;
          margin-bottom: 30px;
        }

        #depannage-plomberie .kicker {
          font-size: 13px;
          letter-spacing: .15em;
          text-transform: uppercase;
          color: #264f8f;
          font-weight: 800;
          margin-bottom: 12px;
        }

        #depannage-plomberie h2 {
          margin: 0 0 15px;
          font-size: clamp(28px, 3.8vw, 44px);
          color: #0b2748;
          font-weight: 900;
          line-height: 1.1;
          letter-spacing: -0.02em;
        }

        #depannage-plomberie p.lead {
          margin: 0 auto;
          max-width: 900px;
          text-align: center;
          color: #4b5563;
          font-size: 16px;
          line-height: 1.75;
          font-weight: 500;
        }

        /* ===== KPI BAR ===== */
        #depannage-plomberie .kpis {
          display: flex;
          flex-wrap: wrap;
          gap: 12px;
          justify-content: center;
          margin: 25px auto 35px;
          max-width: 1000px;
        }

        #depannage-plomberie .pill {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 12px 18px;
          border-radius: 999px;
          background: #ffffff;
          border: 1px solid #e2e8f0;
          color: #0b2748;
          font-weight: 800;
          font-size: 13.5px;
          box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
          white-space: nowrap;
        }

        #depannage-plomberie .dot {
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background: #22c55e;
          display: inline-block;
          box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
        }

        /* ===== GRID CARDS ===== */
        #depannage-plomberie .grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 18px;
        }

        /* ===== CARDS PREMIUM ===== */
        #depannage-plomberie .card {
          background: #ffffff;
          border: 1px solid #edf2f7;
          border-radius: 24px;
          padding: 24px;
          box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          display: flex;
          flex-direction: column;
          gap: 12px;
          min-height: 180px;
        }

        #depannage-plomberie .card:hover {
          transform: translateY(-5px);
          box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
          border-color: #264f8f;
        }

        #depannage-plomberie .card h3 {
          font-size: 18px;
          margin: 0;
          color: #0b2748;
          font-weight: 900;
          line-height: 1.3;
          letter-spacing: -0.01em;
        }

        #depannage-plomberie .card p {
          margin: 0;
          color: #4b5563;
          font-size: 14.5px;
          line-height: 1.6;
          font-weight: 500;
        }

        /* PRIX MASQUÉS (VISIBLES GOOGLE) */
        #depannage-plomberie .tarif {
          display: none;
        }

        /* CTA GLOBAL */
        #depannage-plomberie .cta {
          margin-top: 40px;
          display: flex;
          justify-content: center;
        }

        #depannage-plomberie .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 15px 35px;
          border-radius: 999px;
          background: #f36b3b;
          color: #ffffff;
          text-decoration: none;
          font-weight: 900;
          font-size: 15.5px;
          box-shadow: 0 12px 30px rgba(243, 107, 59, 0.25);
          transition: all 0.3s ease;
        }

        #depannage-plomberie .btn:hover {
          transform: translateY(-2px);
          filter: brightness(1.1);
          box-shadow: 0 15px 35px rgba(243, 107, 59, 0.35);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
          #depannage-plomberie .grid {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        @media (max-width: 640px) {
          #depannage-plomberie .grid {
            grid-template-columns: 1fr;
          }

          #depannage-plomberie .wrap {
            padding: 60px 18px;
          }

          #depannage-plomberie .btn {
            width: 100%;
          }

          #depannage-plomberie .pill {
            font-size: 12px;
          }
        }
        /* ===== BASE & TYPO BAT'IK ===== */
        #faq-depannage {
          padding: 80px max(20px, env(safe-area-inset-left));
          background: #ffffff;
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
          color: #0b1f33;
        }

        #faq-depannage .wrap {
          max-width: 900px;
          margin: 0 auto;
        }

        /* ===== HEAD ===== */
        #faq-depannage h2 {
          font-size: clamp(26px, 4vw, 36px);
          margin: 0 0 16px;
          font-weight: 900;
          color: #0b2748;
          text-align: center;
          letter-spacing: -0.02em;
        }

        #faq-depannage .intro {
          text-align: center;
          max-width: 800px;
          margin: 0 auto 40px;
          font-size: 15.5px;
          line-height: 1.7;
          color: #4b5563;
          font-weight: 500;
        }

        #faq-depannage .intro strong {
          color: #264f8f;
          font-weight: 700;
        }

        /* ===== ACCORDION PREMIUM ===== */
        #faq-depannage details {
          background: #f8faff;
          border: 1px solid #eef2ff;
          border-radius: 20px;
          margin-bottom: 16px;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          overflow: hidden;
        }

        #faq-depannage details[open] {
          background: #ffffff;
          border-color: #264f8f;
          box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
        }

        #faq-depannage summary {
          cursor: pointer;
          list-style: none;
          font-weight: 800;
          font-size: 17px;
          color: #0b2748;
          padding: 20px 24px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 15px;
          user-select: none;
        }

        #faq-depannage summary::-webkit-details-marker {
          display: none;
        }

        /* Custom Icon */
        #faq-depannage summary::after {
          content: "";
          width: 24px;
          height: 24px;
          background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23264f8f' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='dp12 4.5v15m7.5-7.5h-15' /%3E%3C/svg%3E") no-repeat center;
          transition: transform 0.3s ease;
          flex-shrink: 0;
        }

        #faq-depannage details[open] summary::after {
          transform: rotate(45deg);
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f36b3b' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4.5v15m7.5-7.5h-15' /%3E%3C/svg%3E");
        }

        #faq-depannage .content {
          padding: 0 24px 24px;
          font-size: 15px;
          line-height: 1.75;
          color: #4b5563;
          border-top: 1px solid transparent;
          animation: fadeIn 0.4s ease-out;
        }

        #faq-depannage details[open] .content {
          border-top-color: #f1f5f9;
        }

        #faq-depannage .content strong {
          color: #0b2748;
          font-weight: 700;
        }

        @keyframes fadeIn {
          from {
            opacity: 0;
            transform: translateY(-10px);
          }

          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        /* Mobile */
        @media (max-width: 640px) {
          #faq-depannage {
            padding: 50px 16px;
          }

          #faq-depannage summary {
            font-size: 16px;
            padding: 18px;
          }

          #faq-depannage .content {
            padding: 0 18px 20px;
          }
        }
