        .batik-water-wrapper {
          background: #ffffff;
          padding: 26px 20px;
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
          font-size: 16.5px;
          line-height: 1.65;
          color: #0f172a;
        }

        .batik-water-wrapper * {
          box-sizing: border-box;
          font-family: inherit;
        }

        .batik-water-box {
          border-radius: 38px;
          overflow: hidden;
          box-shadow: 0 32px 90px rgba(15, 23, 42, .22);
          border: 1px solid rgba(15, 23, 42, .06);
          background: #ffffff;
        }

        /* Hero Section avec dégradé profond */
        .batik-ce-hero {
          --blue: #264f8f;
          --blue2: #1f427b;
          --text: #ffffff;
          --muted: rgba(255, 255, 255, .88);
          --cta: #f36b3b;
          background: radial-gradient(1200px 600px at 20% 20%, rgba(255, 255, 255, .12), transparent 55%),
            linear-gradient(135deg, var(--blue2), var(--blue));
          position: relative;
        }

        .batik-ce-hero .wrap {
          max-width: 1200px;
          margin: 0 auto;
          padding: 80px 40px;
          display: grid;
          grid-template-columns: 1.1fr 0.9fr;
          gap: 50px;
          align-items: center;
          min-height: 560px;
        }

        /* Typographie et Textes */
        .batik-ce-copy {
          display: flex;
          flex-direction: column;
          gap: 22px;
          text-align: left;
        }

        .batik-ce-copy h1 {
          margin: 0;
          color: var(--text);
          font-weight: 900;
          font-size: clamp(34px, 4.5vw, 56px);
          line-height: 1.1;
          letter-spacing: -0.02em;
        }

        .batik-ce-copy .sub {
          margin: 0;
          color: var(--muted);
          font-size: 17px;
          line-height: 1.75;
          font-weight: 500;
          max-width: 600px;
        }

        .batik-ce-copy .sub strong {
          color: #fff;
          font-weight: 900;
        }

        /* Badges / Pills */
        .batik-ce-kpis {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
          margin-top: 8px;
          justify-content: flex-start;
        }

        .batik-ce-pill {
          background: rgba(255, 255, 255, .10);
          border: 1px solid rgba(255, 255, 255, .15);
          color: #fff;
          padding: 10px 16px;
          border-radius: 999px;
          font-weight: 700;
          font-size: 13.5px;
          line-height: 1;
          backdrop-filter: blur(8px);
          white-space: nowrap;
          display: flex;
          align-items: center;
          gap: 6px;
        }

        /* Call to Action */
        .batik-ce-cta {
          margin-top: 20px;
          display: flex;
          gap: 14px;
          flex-wrap: wrap;
          align-items: center;
          justify-content: flex-start;
        }

        .batik-ce-cta a {
          text-decoration: none;
          font-weight: 900;
          border-radius: 999px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 12px;
          padding: 18px 32px;
          transition: all .2s ease;
          white-space: nowrap;
        }

        .batik-ce-cta .btn-primary {
          background: var(--cta);
          color: #fff;
          box-shadow: 0 18px 36px rgba(243, 107, 59, .35);
          border: 1px solid rgba(255, 255, 255, .15);
          font-size: 15.5px;
        }

        .batik-ce-cta .btn-primary:hover {
          transform: translateY(-3px);
          filter: brightness(1.1);
        }

        .batik-ce-cta .btn-secondary {
          background: rgba(255, 255, 255, .12);
          border: 1px solid rgba(255, 255, 255, .20);
          color: #fff;
          font-size: 15.5px;
        }

        .batik-ce-cta .btn-secondary:hover {
          background: rgba(255, 255, 255, .20);
        }

        .batik-ce-note {
          margin-top: 12px;
          color: rgba(255, 255, 255, 0.75);
          font-size: 14px;
          line-height: 1.6;
          font-weight: 600;
          font-style: italic;
        }

        /* Image Media */
        .batik-ce-media {
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
        }

        .batik-ce-img {
          width: 100%;
          max-width: 480px;
          border-radius: 34px;
          overflow: hidden;
          border: 1px solid rgba(255, 255, 255, .2);
          box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
        }

        .batik-ce-img img {
          width: 100%;
          height: 540px;
          object-fit: cover;
          display: block;
          transition: transform 0.5s ease;
        }

        .batik-ce-img:hover img {
          transform: scale(1.03);
        }


        /* --- BREAKPOINT TABLET --- */
        @media (max-width: 980px) {
          .batik-water-wrapper {
            padding: 18px 12px;
          }

          .batik-water-box {
            border-radius: 28px;
          }

          .batik-ce-hero .wrap {
            grid-template-columns: 1fr;
            padding: 60px 24px;
            gap: 40px;
            min-height: auto;
          }

          .batik-ce-copy {
            text-align: center;
            align-items: center;
            order: 1;
          }

          .batik-ce-copy h1 {
            font-size: 32px;
          }

          .batik-ce-kpis {
            justify-content: center;
          }

          .batik-ce-cta {
            justify-content: center;
            width: 100%;
          }

          .batik-ce-cta a {
            width: 100%;
            font-size: 15px;
          }

          .batik-ce-note {
            text-align: center;
          }

          .batik-ce-media {
            order: 2;
          }

          .batik-ce-img img {
            height: 350px;
          }
        }

        /* --- BREAKPOINT MOBILE (téléphone) --- */
        @media (max-width: 480px) {
          .batik-water-wrapper {
            padding: 10px 8px;
          }

          .batik-water-box {
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, .15);
          }

          .batik-ce-hero .wrap {
            padding: 40px 18px 36px;
            gap: 28px;
          }

          .batik-ce-copy h1 {
            font-size: 26px;
            line-height: 1.2;
          }

          .batik-ce-copy .sub {
            font-size: 15px;
          }

          .batik-ce-kpis {
            gap: 7px;
          }

          .batik-ce-pill {
            font-size: 12.5px;
            padding: 8px 12px;
          }

          .batik-ce-cta {
            flex-direction: column;
            gap: 10px;
          }

          .batik-ce-cta a {
            padding: 15px 20px;
            font-size: 14.5px;
          }

          .batik-ce-img img {
            height: 240px;
          }
        }

        #batik-process-left {
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
          font-size: 16.5px;
          line-height: 1.65;
          padding: 80px 20px;
          background: #ffffff;
          color: #0b1f33;
        }

        #batik-process-left * {
          box-sizing: border-box;
          font-family: inherit;
        }

        #batik-process-left .wrap {
          max-width: 1100px;
          margin: 0 auto;
        }

        /* Header & Bar */
        #batik-process-left .head {
          text-align: center;
          margin-bottom: 45px;
        }

        #batik-process-left .kicker {
          font-size: 12px;
          letter-spacing: .18em;
          text-transform: uppercase;
          color: #0b3a78;
          font-weight: 900;
          margin-bottom: 8px;
          display: block;
        }

        #batik-process-left h2 {
          font-size: clamp(28px, 4vw, 38px);
          margin: 0 0 15px;
          color: #0b2748;
          font-weight: 900;
          letter-spacing: -0.02em;
          line-height: 1.2;
        }

        #batik-process-left .intro {
          max-width: 880px;
          margin: 0 auto 25px;
          font-size: 16px;
          line-height: 1.7;
          color: #4b5563;
        }

        #batik-process-left .bar {
          max-width: 1000px;
          margin: 25px auto 0;
          display: flex;
          gap: 12px;
          flex-wrap: wrap;
          justify-content: center;
        }

        #batik-process-left .pill {
          background: #ffffff;
          border: 1px solid #e6ebff;
          border-radius: 999px;
          padding: 12px 18px;
          font-size: 13.5px;
          color: #0b2748;
          box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
          display: flex;
          gap: 10px;
          align-items: center;
          white-space: nowrap;
          font-weight: 800;
          line-height: 1;
        }

        #batik-process-left .dot {
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background: #22c55e;
        }

        /* Steps Cards */
        #batik-process-left .steps {
          margin-top: 50px;
          display: flex;
          flex-direction: column;
          gap: 30px;
        }

        #batik-process-left .step {
          background: linear-gradient(145deg, #0b3a78 0%, #0a2f63 100%);
          border-radius: 32px;
          padding: 40px;
          display: grid;
          grid-template-columns: 0.85fr 1.15fr;
          gap: 40px;
          color: #e5edff;
          box-shadow: 0 25px 60px rgba(15, 23, 42, .2);
          align-items: center;
          min-height: 400px;
          transition: transform 0.3s ease;
        }

        #batik-process-left .step:nth-child(even) {
          grid-template-columns: 1.15fr 0.85fr;
        }

        #batik-process-left .step:nth-child(even) .img {
          order: 2;
        }

        #batik-process-left .step:nth-child(even) .content {
          order: 1;
        }

        #batik-process-left .badge {
          width: 40px;
          height: 40px;
          border-radius: 12px;
          background: #f36b3b;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 900;
          color: #ffffff;
          margin-bottom: 15px;
          font-size: 18px;
        }

        #batik-process-left h3 {
          font-size: 24px;
          margin: 0 0 12px;
          font-weight: 900;
          color: #ffffff;
          letter-spacing: -0.01em;
        }

        #batik-process-left p {
          font-size: 15.5px;
          line-height: 1.7;
          margin: 0 0 20px;
          color: #d1dcf0;
        }

        /* Lists */
        #batik-process-left ul {
          padding: 0;
          margin: 0 0 25px;
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 10px;
        }

        #batik-process-left li {
          font-size: 14.5px;
          line-height: 1.5;
          display: flex;
          gap: 12px;
          align-items: center;
          color: #ffffff;
          font-weight: 500;
        }

        #batik-process-left li span {
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background: #22c55e;
          color: #041007;
          font-weight: 900;
          font-size: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
        }

        /* Media */
        #batik-process-left .img {
          width: 100%;
          height: 320px;
          border-radius: 24px;
          overflow: hidden;
          background: #ffffff;
          border: 1px solid rgba(255, 255, 255, .15);
          box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
        }

        #batik-process-left .img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          transition: transform 0.5s ease;
        }

        #batik-process-left .step:hover .img img {
          transform: scale(1.05);
        }

        /* CTA inside steps */
        #batik-process-left .cta {
          margin-top: 20px;
          display: flex;
          gap: 15px;
          flex-wrap: wrap;
          align-items: center;
        }

        #batik-process-left .btn {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          padding: 14px 22px;
          border-radius: 999px;
          background: #f36b3b;
          color: #ffffff;
          font-weight: 900;
          font-size: 15px;
          text-decoration: none;
          box-shadow: 0 10px 25px rgba(243, 107, 59, 0.3);
          transition: all 0.2s ease;
        }

        #batik-process-left .btn:hover {
          transform: translateY(-2px);
          filter: brightness(1.1);
        }

        #batik-process-left .note {
          font-size: 13.5px;
          color: rgba(230, 238, 255, 0.85);
          font-weight: 500;
        }

        #batik-process-left .note strong {
          color: #fff;
          font-weight: 800;
        }

        /* SEO Section */
        #batik-process-left .seo {
          margin-top: 50px;
          background: #f8fafc;
          border: 1px solid #e2e8f0;
          border-radius: 28px;
          padding: 30px;
          box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
        }

        #batik-process-left .seo h4 {
          margin: 0 0 12px;
          font-size: 18px;
          font-weight: 900;
          color: #0b2748;
        }

        #batik-process-left .seo p {
          margin: 0;
          font-size: 15px;
          line-height: 1.75;
          color: #4b5563;
          font-weight: 500;
        }

        @media (max-width: 900px) {

          #batik-process-left .step,
          #batik-process-left .step:nth-child(even) {
            grid-template-columns: 1fr;
            padding: 30px 20px;
            min-height: auto;
            gap: 30px;
          }

          #batik-process-left .img {
            order: 2 !important;
            height: 240px;
          }

          #batik-process-left .content {
            order: 1 !important;
          }

          #batik-process-left .badge {
            margin-bottom: 10px;
          }
        }

        #batik-size-guide {
          padding: 80px 20px;
          background: #f8fafc;
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        }

        #batik-size-guide .wrap {
          max-width: 1100px;
          margin: 0 auto;
        }

        /* En-tête */
        #batik-size-guide .head {
          text-align: center;
          margin-bottom: 50px;
        }

        #batik-size-guide h2 {
          font-size: clamp(28px, 4vw, 36px);
          font-weight: 900;
          color: #0b2748;
          margin-bottom: 15px;
          letter-spacing: -0.02em;
        }

        #batik-size-guide .intro {
          font-size: 16px;
          color: #4b5563;
          font-weight: 500;
          max-width: 700px;
          margin: 0 auto;
          line-height: 1.6;
        }

        /* Grille de cartes */
        #batik-size-guide .size-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 24px;
        }

        #batik-size-guide .size-card {
          background: #ffffff;
          border: 1px solid #e2e8f0;
          border-radius: 30px;
          padding: 40px 25px;
          text-align: center;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        #batik-size-guide .size-card:hover {
          transform: translateY(-8px);
          border-color: #264f8f;
          box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
        }

        /* Éléments internes */
        #batik-size-guide .icon-users {
          font-size: 32px;
          margin-bottom: 15px;
          background: #f1f5ff;
          width: 60px;
          height: 60px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 20px;
        }

        #batik-size-guide .capacity {
          font-size: 32px;
          font-weight: 900;
          color: #264f8f;
          display: block;
          margin-bottom: 5px;
        }

        #batik-size-guide .usage {
          font-size: 13px;
          font-weight: 800;
          color: #0b2748;
          text-transform: uppercase;
          letter-spacing: 1.2px;
          display: block;
          margin-bottom: 18px;
        }

        #batik-size-guide .details {
          font-size: 14.5px;
          color: #64748b;
          line-height: 1.6;
          margin-bottom: 25px;
          flex-grow: 1;
        }

        #batik-size-guide .cta-card {
          display: inline-block;
          padding: 10px 24px;
          background: #f1f5ff;
          color: #264f8f;
          border-radius: 999px;
          font-weight: 800;
          font-size: 12.5px;
          text-decoration: none;
          transition: all 0.2s ease;
        }

        /* Badge Recommandé */
        .card-featured {
          border: 2px solid #264f8f !important;
          position: relative;
          background: #ffffff;
        }

        .badge-top {
          position: absolute;
          top: -14px;
          left: 50%;
          transform: translateX(-50%);
          background: #264f8f;
          color: #fff;
          padding: 4px 16px;
          border-radius: 999px;
          font-size: 11px;
          font-weight: 900;
          letter-spacing: 0.5px;
          box-shadow: 0 4px 12px rgba(38, 79, 143, 0.25);
        }

        .btn-featured {
          background: #264f8f !important;
          color: #ffffff !important;
        }

        @media (max-width: 600px) {
          #batik-size-guide {
            padding: 60px 15px;
          }

          #batik-size-guide .size-grid {
            gap: 16px;
          }

          #batik-size-guide .size-card {
            padding: 30px 20px;
          }
        }

        #batik-verdict {
          padding: 80px 20px;
          background: #ffffff;
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        }

        #batik-verdict .wrap {
          max-width: 1100px;
          margin: 0 auto;
          background: linear-gradient(135deg, #0b2748 0%, #061629 100%);
          border-radius: 40px;
          padding: 60px;
          color: #ffffff;
          display: flex;
          gap: 50px;
          align-items: center;
          box-shadow: 0 30px 60px rgba(11, 39, 72, 0.15);
        }

        #batik-verdict .content {
          flex: 1;
        }

        /* Boîte Verdict Latérale */
        #batik-verdict .verdict-box {
          flex: 0 0 360px;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.12);
          border-radius: 30px;
          padding: 35px;
          backdrop-filter: blur(10px);
        }

        #batik-verdict h2 {
          font-size: clamp(26px, 4vw, 34px);
          font-weight: 900;
          margin: 0 0 20px 0;
          line-height: 1.15;
          letter-spacing: -0.02em;
        }

        #batik-verdict .intro-text {
          font-size: 17px;
          line-height: 1.7;
          color: rgba(255, 255, 255, 0.85);
          margin-bottom: 35px;
          font-weight: 500;
        }

        /* Listes Grille pour alignement parfait */
        #batik-verdict ul {
          list-style: none;
          padding: 0;
          margin: 0;
        }

        #batik-verdict li {
          display: grid;
          grid-template-columns: 28px 1fr;
          gap: 12px;
          margin-bottom: 20px;
          font-size: 15.5px;
          line-height: 1.6;
          align-items: start;
        }

        #batik-verdict li strong {
          color: #fff;
        }

        /* Icônes spécifiques */
        #batik-verdict .check-list li span {
          color: #22c55e;
          font-size: 18px;
          font-weight: 900;
          display: flex;
          justify-content: center;
        }

        #batik-verdict .warning-list li span {
          color: #ff5a3d;
          font-size: 18px;
          font-weight: 900;
          display: flex;
          justify-content: center;
        }

        /* Titres Verdict */
        #batik-verdict h3 {
          font-size: 19px;
          color: #ff5a3d;
          margin: 0 0 10px 0;
          font-weight: 900;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        #batik-verdict .warning-title {
          font-size: 15px;
          font-weight: 700;
          margin-bottom: 25px;
          color: #ffffff;
          display: block;
          opacity: 0.9;
        }

        /* Adaptabilité mobile */
        @media (max-width: 980px) {
          #batik-verdict .wrap {
            flex-direction: column;
            padding: 50px 30px;
            gap: 40px;
            text-align: center;
          }

          #batik-verdict .verdict-box {
            flex: none;
            width: 100%;
            max-width: 450px;
            text-align: left;
          }

          #batik-verdict li {
            text-align: left;
          }

          #batik-verdict h2 br {
            display: none;
          }
        }

        @media (max-width: 480px) {
          #batik-verdict .wrap {
            padding: 36px 20px;
            gap: 30px;
            border-radius: 22px;
          }

          #batik-verdict .verdict-box {
            padding: 24px 20px;
          }
        }

        #batik-process-cards {
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
          padding: 80px 20px;
          background: #ffffff;
          color: #0b1f33;
        }

        #batik-process-cards * {
          box-sizing: border-box;
        }

        #batik-process-cards .wrap {
          max-width: 1100px;
          margin: 0 auto;
        }

        /* Headings */
        #batik-process-cards .head {
          text-align: center;
          margin-bottom: 40px;
        }

        #batik-process-cards .kicker {
          font-size: 12px;
          letter-spacing: .18em;
          text-transform: uppercase;
          color: #0b3a78;
          font-weight: 800;
          margin-bottom: 8px;
          display: block;
        }

        #batik-process-cards h2 {
          font-size: clamp(26px, 4vw, 36px);
          margin: 0 0 15px;
          color: #0b2748;
          font-weight: 900;
          letter-spacing: -0.02em;
        }

        #batik-process-cards .intro {
          max-width: 860px;
          margin: 0 auto;
          font-size: 15.5px;
          line-height: 1.7;
          color: #4b5563;
          font-weight: 500;
        }

        /* Steps Grid (1, 2, 3, 4) */
        #batik-process-cards .grid-steps {
          margin-top: 40px;
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 20px;
        }

        #batik-process-cards .step {
          background: linear-gradient(145deg, #0b3a78 0%, #0a2f63 100%);
          border-radius: 26px;
          padding: 28px;
          color: #e5edff;
          box-shadow: 0 16px 40px rgba(15, 23, 42, .15);
          display: flex;
          flex-direction: column;
          gap: 12px;
          min-height: 200px;
          transition: transform 0.3s ease;
        }

        #batik-process-cards .step:hover {
          transform: translateY(-5px);
        }

        #batik-process-cards .badge {
          width: 36px;
          height: 36px;
          border-radius: 12px;
          background: rgba(255, 255, 255, .15);
          border: 1px solid rgba(255, 255, 255, .2);
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 900;
          color: #ffffff;
          font-size: 16px;
        }

        #batik-process-cards h3 {
          font-size: 18px;
          margin: 5px 0 2px;
          font-weight: 900;
          color: #ffffff;
        }

        #batik-process-cards .step p {
          font-size: 14px;
          line-height: 1.6;
          margin: 0;
          color: rgba(230, 238, 255, 0.9);
        }

        /* Summary & Cards (Les 6 points clés) */
        #batik-process-cards .summary {
          margin-top: 60px;
          text-align: center;
        }

        #batik-process-cards .summary h3 {
          color: #0b2748;
          font-size: 26px;
          margin: 0 0 12px;
          font-weight: 900;
        }

        #batik-process-cards .summary .sub {
          max-width: 900px;
          margin: 0 auto 30px;
          font-size: 16px;
          line-height: 1.7;
          color: #4b5563;
        }

        #batik-process-cards .grid-cards {
          margin-top: 20px;
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 15px;
        }

        #batik-process-cards .card {
          background: #f8faff;
          border: 1px solid #e6ebff;
          border-radius: 22px;
          padding: 24px;
          box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
          text-align: left;
          display: flex;
          flex-direction: column;
          gap: 8px;
          min-height: 160px;
          transition: all 0.2s ease;
        }

        #batik-process-cards .card:hover {
          border-color: #0b3a78;
          background: #ffffff;
        }

        #batik-process-cards .card .icon {
          width: 40px;
          height: 40px;
          border-radius: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: #0b3a78;
          color: #fff;
          font-size: 18px;
          margin-bottom: 5px;
        }

        #batik-process-cards .card strong {
          color: #0b2748;
          font-size: 15px;
          font-weight: 800;
        }

        #batik-process-cards .card p {
          margin: 0;
          color: #4b5563;
          font-size: 13.5px;
          line-height: 1.55;
        }

        /* Forfait & Price */
        #batik-process-cards .price {
          margin: 40px auto 0;
          max-width: 800px;
          background: #f1f5ff;
          border: 2px dashed #0b3a78;
          padding: 20px 24px;
          border-radius: 20px;
          font-size: 16px;
          color: #0b2748;
          box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
        }

        #batik-process-cards .price strong {
          color: #0b3a78;
        }

        #batik-process-cards .price small {
          display: block;
          margin-top: 8px;
          font-size: 14px;
          color: #4b5563;
          font-weight: 500;
        }

        /* Call to Action */
        #batik-process-cards .cta {
          margin-top: 35px;
          display: flex;
          justify-content: center;
          gap: 12px;
          flex-wrap: wrap;
        }

        #batik-process-cards .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          padding: 16px 28px;
          border-radius: 999px;
          background: #0b3a78;
          color: #ffffff;
          font-weight: 900;
          font-size: 15px;
          text-decoration: none;
          box-shadow: 0 14px 30px rgba(11, 58, 120, 0.25);
          transition: all 0.2s ease;
        }

        #batik-process-cards .btn:hover {
          transform: translateY(-2px);
          filter: brightness(1.1);
        }

        #batik-process-cards .btn.secondary {
          background: #ffffff;
          color: #0b3a78;
          border: 1.5px solid #dbe3ff;
          box-shadow: none;
        }

        #batik-process-cards .btn.secondary:hover {
          background: #f8faff;
          border-color: #0b3a78;
        }

        /* Responsive */
        @media (max-width: 1000px) {
          #batik-process-cards .grid-steps {
            grid-template-columns: repeat(2, 1fr);
          }

          #batik-process-cards .grid-cards {
            grid-template-columns: repeat(2, 1fr);
          }
        }

        @media (max-width: 640px) {
          #batik-process-cards {
            padding: 60px 20px;
          }

          #batik-process-cards h2 {
            font-size: 28px;
          }

          #batik-process-cards .grid-steps {
            grid-template-columns: 1fr;
          }

          #batik-process-cards .grid-cards {
            grid-template-columns: 1fr;
          }

          #batik-process-cards .btn {
            width: 100%;
          }
        }

        #batik-faq {
          padding: 80px 20px;
          background: #f8fafc;
          font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        }

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

        #batik-faq .head {
          text-align: center;
          margin-bottom: 50px;
        }

        #batik-faq .kicker {
          font-size: 12px;
          letter-spacing: .18em;
          text-transform: uppercase;
          color: #0b3a78;
          font-weight: 800;
          display: block;
          margin-bottom: 8px;
        }

        #batik-faq h2 {
          font-size: clamp(26px, 4vw, 36px);
          color: #0b2748;
          font-weight: 900;
          margin: 0;
          letter-spacing: -0.02em;
        }

        /* Accordéon Style */
        #batik-faq .faq-container {
          display: flex;
          flex-direction: column;
          gap: 15px;
        }

        #batik-faq details {
          background: #ffffff;
          border: 1px solid #e2e8f0;
          border-radius: 20px;
          overflow: hidden;
          transition: all 0.3s ease;
          box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
        }

        #batik-faq details[open] {
          border-color: #0b3a78;
          box-shadow: 0 12px 24px rgba(11, 58, 120, 0.08);
        }

        #batik-faq summary {
          padding: 22px 30px;
          list-style: none;
          cursor: pointer;
          font-weight: 700;
          font-size: 17px;
          color: #0b2748;
          display: flex;
          justify-content: space-between;
          align-items: center;
          user-select: none;
        }

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

        #batik-faq summary::after {
          content: "+";
          font-size: 24px;
          color: #0b3a78;
          transition: transform 0.3s ease;
        }

        #batik-faq details[open] summary::after {
          content: "−";
          transform: rotate(180deg);
        }

        #batik-faq .content {
          padding: 0 30px 25px;
          font-size: 15.5px;
          line-height: 1.7;
          color: #4b5563;
        }

        #batik-faq .content p {
          margin: 0;
        }

        #batik-faq .content strong {
          color: #0b2748;
        }

        /* Footer FAQ */
        #batik-faq .footer-faq {
          margin-top: 40px;
          text-align: center;
          background: #ffffff;
          padding: 25px;
          border-radius: 24px;
          border: 1px dashed #cbd5e1;
        }

        #batik-faq .footer-faq p {
          margin: 0 0 15px;
          font-weight: 600;
          color: #0b2748;
        }

        #batik-faq .btn-faq {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 12px 24px;
          background: #0b3a78;
          color: #fff;
          text-decoration: none;
          border-radius: 999px;
          font-weight: 800;
          font-size: 14px;
          transition: 0.2s;
        }

        #batik-faq .btn-faq:hover {
          transform: translateY(-2px);
          filter: brightness(1.1);
        }

        @media (max-width: 640px) {
          #batik-faq {
            padding: 60px 15px;
          }

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

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