/* =========================================================
   FULL WIDTH GENERIC — ATOMS / WPBAKERY
   Muscle ton Intuition
========================================================= */

body.page-id-19288 .hdr,
body.page-id-19288 .hero,
body.page-id-19288 .sec,
body.page-id-19288 .ftr,
body.page-id-19288 section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* évite les effets de conteneur interne */
body.page-id-19288 .hero-bg,
body.page-id-19288 .fcta-bg,
body.page-id-19288 .fcta-bgi {
  width: 100% !important;
  max-width: 100% !important;
}

/* recentrage du contenu */
body.page-id-19288 .hero-c,
body.page-id-19288 .qb,
body.page-id-19288 .ss,
body.page-id-19288 .hdr .in,
body.page-id-19288 .csm,
body.page-id-19288 .cmd {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

/* responsive */
@media (max-width: 768px) {
  body.page-id-19288 .hero-c,
  body.page-id-19288 .qb,
  body.page-id-19288 .ss,
  body.page-id-19288 .hdr .in,
  body.page-id-19288 .csm,
  body.page-id-19288 .cmd {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #111F37 !important;
      color: #ffffff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    strong { font-weight: 700; }

    /* ===== UTILITIES ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
    .container-sm { max-width: 900px; margin: 0 auto; padding: 0 16px; }
    .container-md { max-width: 1050px; margin: 0 auto; padding: 0 16px; }
    .container-xs { max-width: 700px; margin: 0 auto; padding: 0 16px; }
    .text-center { text-align: center; }
    .flex-center { display: flex; justify-content: center; }

    .gradient-text {
      background: linear-gradient(135deg, #30b4f7, #0bd4fc, #7e72eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(48, 180, 247, 0.3), transparent);
    }

    .glass-card {
      background: rgba(26, 42, 69, 0.6);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(48, 180, 247, 0.15);
      border-radius: 16px;
      transition: all 0.3s ease;
    }
    .glass-card:hover {
      border-color: rgba(48, 180, 247, 0.35);
      background: rgba(26, 42, 69, 0.8);
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      background: linear-gradient(135deg, #30b4f7, #0bd4fc);
      color: #111F37;
      font-weight: 700;
      font-size: 18px;
      border-radius: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(48, 180, 247, 0.3);
      border: none;
      cursor: pointer;
    }
    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(48, 180, 247, 0.5);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 20px rgba(48, 180, 247, 0.3); }
      50% { box-shadow: 0 0 40px rgba(48, 180, 247, 0.6); }
    }

    .animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
    .animate-float { animation: float 3s ease-in-out infinite; }
    .animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }

    /* ===== TYPOGRAPHY ===== */
    h1,h2,h3 { 
      text-transform: none !important;
      font-family: 'Roboto', sans-serif !important;
    }
    h1 {
      font-size: 60px !important; 
      font-weight: 800 !important; 
      line-height: 1.1 !important; 
    }
    h2 { 
      font-size: 36px !important; 
      font-weight: 700 !important; 
      line-height: 1.2 !important; 
    } 
    h3 { 
      font-size: 20px !important; 
      font-weight: 700 !important; 
      line-height: 1.3 !important; 
    }
    .text-muted { color: rgba(215, 232, 251, 0.7); }
    .text-light { color: #d7e8fb; }

    /* ===== SVG ICONS (inline) ===== */
    .icon-box {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }
    .icon-box svg { width: 24px; height: 24px; }
    .icon-box-lg svg { width: 28px; height: 28px; }
    .icon-box-xl svg { width: 32px; height: 32px; }

    /* ========================================
       SECTION: HERO
    ======================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, #111F37, #0f1b30, #111F37);
    }
    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .particle {
      position: absolute;
      border-radius: 50%;
      animation: float 3s ease-in-out infinite;
    }
    .hero-content {
      position: relative;
      z-index: 10;
      width: 100%;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
      padding: 80px 0;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 50px;
      background: #1A2A45;
      border: 1px solid rgba(48, 180, 247, 0.3);
      margin-bottom: 32px;
      font-size: 14px;
      color: #d7e8fb;
      font-weight: 500;
    }
    .hero-badge svg { width: 16px; height: 16px; color: #0bd4fc; }
    .hero-subtitle {
      font-size: 18px;
      color: #d7e8fb;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 540px;
    }
    .hero-benefits { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
    .hero-benefit {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .hero-benefit-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .hero-benefit-icon svg { width: 20px; height: 20px; }
    .hero-benefit-title { color: #fff; font-weight: 600; font-size: 18px; margin-bottom: 2px; }
    .hero-benefit-desc { color: rgba(215, 232, 251, 0.7); font-size: 14px; }
    .hero-image-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .hero-image-glow {
      position: absolute;
      inset: -16px;
      background: linear-gradient(to right, rgba(48,180,247,0.2), rgba(126,114,235,0.2), rgba(11,212,252,0.2));
      border-radius: 24px;
      filter: blur(32px);
    }
    .hero-image-wrap img { 
      color: white !important;
      position: relative;
      border-radius: 16px;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
      max-width: 480px;
      width: 100%;
    }

    /* ========================================
       SECTION: PROBLEMS
    ======================================== */
    .section { padding: 80px 0; position: relative; }
    .section-dark {
      background: linear-gradient(to bottom, #111F37, #0d1829, #111F37);
    }
    .section-header { text-align: center; margin-bottom: 64px; }
    .section-header p { margin-top: 16px; font-size: 18px; color: rgba(215, 232, 251, 0.7); max-width: 600px; margin-left: auto; margin-right: auto; }

    .problems-list { display: flex; flex-direction: column; gap: 20px; }
    .problem-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;
      transition: all 0.3s ease;
    }
    .problem-card:hover { transform: translateX(8px); }
    .problem-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(126, 114, 235, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .problem-icon svg { width: 24px; height: 24px; color: #7e72eb; }
    .problem-text { color: #d7e8fb; font-size: 18px; line-height: 1.6; padding-top: 8px; }

    .transition-text { text-align: center; margin-top: 56px; }
    .transition-text p:first-child { font-size: 20px; color: #fff; font-weight: 600; }
    .transition-text p:last-child { color: #30b4f7; font-size: 18px; margin-top: 8px; }

    /* ========================================
       SECTION: TRANSFORMATION
    ======================================== */
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .benefit-card {
      padding: 24px;
      transition: all 0.3s ease;
    }
    .benefit-card:hover { transform: translateY(-4px); }
    .benefit-inner { display: flex; align-items: flex-start; gap: 16px; }
    .benefit-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .benefit-card:hover .benefit-icon { transform: scale(1.1); }
    .benefit-icon svg { width: 24px; height: 24px; }
    .benefit-title { color: #fff; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
    .benefit-desc { color: rgba(215, 232, 251, 0.7); font-size: 14px; line-height: 1.7; }

    .summary-box { margin-top: 64px; padding: 32px; border-radius: 16px; }
    .summary-box h3 { color: #30b4f7; font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 24px; }
    .summary-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .summary-item { display: flex; align-items: flex-start; gap: 12px; }
    .summary-item span:first-child { color: #0bd4fc; font-size: 18px; flex-shrink: 0; }
    .summary-item p { color: #d7e8fb; font-size: 14px; }

    .section-image {
      border-radius: 16px;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
      max-width: 380px;
      width: 100%;
      opacity: 0.9;
    }

    /* ========================================
       SECTION: HOW IT WORKS
    ======================================== */
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .step-card {
      padding: 32px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .step-card:hover { transform: translateY(-8px); }
    .step-watermark {
      position: absolute;
      top: 16px;
      right: 24px;
      font-size: 72px;
      font-weight: 800;
      opacity: 0.05;
      user-select: none;
    }
    .step-content { position: relative; z-index: 1; }
    .step-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }
    .step-card:hover .step-icon { transform: scale(1.1); }
    .step-icon svg { width: 28px; height: 28px; }
    .step-title { color: #fff; font-weight: 700; font-size: 20px; margin-bottom: 12px; }
    .step-desc { color: rgba(215, 232, 251, 0.7); line-height: 1.7; }

    /* ========================================
       SECTION: FOR WHO
    ======================================== */
    .forwho-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .forwho-card { padding: 32px; border-radius: 16px; }
    .forwho-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
    .forwho-card h3 svg { width: 24px; height: 24px; }
    .forwho-list { display: flex; flex-direction: column; gap: 16px; }
    .forwho-item { display: flex; align-items: flex-start; gap: 12px; }
    .forwho-check {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .forwho-check svg { width: 14px; height: 14px; }
    .forwho-item p { font-size: 14px; line-height: 1.7; }

    /* ========================================
       SECTION: WHY 15
    ======================================== */
    .pillars-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 64px;
    }
    .pillar-card {
      padding: 32px;
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .pillar-card:hover { transform: translateY(-8px); }
    .pillar-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .pillar-icon svg { width: 32px; height: 32px; }
    .pillar-title { color: #fff; font-weight: 700; font-size: 18px; margin-bottom: 12px; }
    .pillar-desc { color: rgba(215, 232, 251, 0.7); font-size: 14px; line-height: 1.7; }

    /* ========================================
       SECTION: CTA
    ======================================== */
    .cta-section { position: relative; }
    .cta-section-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, #111F37, #0d1829, #111F37);
    }
    .cta-card {
      border-radius: 24px;
      padding: 48px 32px;
      text-align: center;
    }
    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(11, 212, 252, 0.1);
      border: 1px solid rgba(11, 212, 252, 0.3);
      margin-bottom: 32px;
      font-size: 14px;
      color: #0bd4fc;
      font-weight: 500;
    }
    .cta-badge svg { width: 16px; height: 16px; }
    .cta-card h2 { margin-bottom: 24px; }
    .cta-card > p { color: rgba(215, 232, 251, 0.8); font-size: 18px; line-height: 1.7; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
    .cta-benefits {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 40px;
      text-align: left;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-benefit-item { display: flex; align-items: center; gap: 8px; }
    .cta-benefit-item span:first-child { color: #0bd4fc; }
    .cta-benefit-item span:last-child { color: #d7e8fb; font-size: 14px; }
    .cta-reassurance { color: rgba(215, 232, 251, 0.5); font-size: 14px; margin-top: 24px; }

    /* ===== FOOTER ===== */
    .footer {
      padding: 32px 0;
      text-align: center;
      border-top: 1px solid #1A2A45;
    }
    .footer p { color: rgba(215, 232, 251, 0.4); font-size: 14px; }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (min-width: 640px) {
      .summary-grid { grid-template-columns: 1fr 1fr; }
      .cta-benefits { grid-template-columns: 1fr 1fr; }
      .cta-card { padding: 56px 48px; }
    }

    @media (min-width: 768px) {
      .benefits-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .forwho-grid { grid-template-columns: 1fr 1fr; }
      .pillars-grid { grid-template-columns: 1fr 1fr 1fr; }
    }

    @media (min-width: 1024px) {
      h1 { font-size: 60px; }
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        padding: 112px 0;
      }
      .hero-subtitle { font-size: 20px; }
      .section { padding: 112px 0; }
    }
