@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* Gutenberg High Specificity Overrides */
.editor-styles-wrapper,
.editor-styles-wrapper * {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
.editor-styles-wrapper {
  background-color: #040B15 !important;
  color: #F8FAFC !important;
}
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper .wp-block-heading,
.editor-styles-wrapper .hero-title,
.editor-styles-wrapper .section-title,
.editor-styles-wrapper .product-card-title,
.editor-styles-wrapper .guarantee-title,
.editor-styles-wrapper .final-recap-title {
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.editor-styles-wrapper .gradient-brand {
  background: linear-gradient(178deg, #EAF9FF 0%, #4EB6E7 40%, #489CEA 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline-block !important;
}
.editor-styles-wrapper p,
.editor-styles-wrapper .lede,
.editor-styles-wrapper .hero-subtitle,
.editor-styles-wrapper .product-card-desc,
.editor-styles-wrapper .guarantee-desc,
.editor-styles-wrapper .final-recap-desc {
  color: #CBD5E1 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.editor-styles-wrapper strong,
.editor-styles-wrapper b {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}
.editor-styles-wrapper .hero-brand-handle {
  color: #FFFFFF !important;
  font-weight: 800 !important;
}
.editor-styles-wrapper .section-eyebrow,
.editor-styles-wrapper .eyebrow,
.editor-styles-wrapper .panel-eyebrow {
  color: #4EB6E7 !important;
  font-weight: 800 !important;
}
#editor-toast, #live-editor-dock {
  display: none !important;
}

/* ==========================================================================
       1. DESIGN SYSTEM SECRETUNION.IO ADAPTÉ AUX COULEURS SANTÉ ANIMÉE
       ========================================================================== */
    :root {
      /* Palette Santé Animée */
      --color-bg: #040B15;
      --color-surface: #0A1420;
      --color-surface-2: #102035;
      --color-surface-3: #162a45;
      --color-accent: #4EB6E7;
      --color-accent-light: #7FD3F2;
      --color-accent-deep: #1C5FA8;
      --color-text: #F8FAFC;
      --color-muted: #94A3B8;
      --color-muted-light: #CBD5E1;
      
      /* Lignes & Ombres façon secretunion.io */
      --line: rgba(78, 182, 231, 0.20);
      --line-subtle: rgba(255, 255, 255, 0.08);
      --shadow-brand: 0 18px 70px rgba(78, 182, 231, 0.14);
      --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.6);

      /* Rayons exacts secretunion.io */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;

      /* Dégradés */
      --gradient-brand: linear-gradient(178deg, #C8ECFF 0%, #4EB6E7 34%, #2F7FD1 74%, #1C5FA8 100%);
      --gradient-brand-soft: linear-gradient(178deg, #EAF9FF 0%, #4EB6E7 40%, #489CEA 100%);
      --gradient-panel: linear-gradient(145deg, rgba(16, 32, 53, 0.94), rgba(6, 14, 25, 0.96));
      --gradient-card: linear-gradient(145deg, rgba(14, 28, 46, 0.92), rgba(8, 17, 30, 0.95));

      /* Dimensions */
      --content-width: 1180px;
    }

    /* ==========================================================================
       2. BASE & RESET
       ========================================================================== */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; color-scheme: dark; }
    body {
      margin: 0;
      color: var(--color-text);
      background: var(--color-bg);
      font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 15px;
      line-height: 1.6;
      font-weight: 500;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      min-height: 100vh;
      position: relative;
    }

    /* Texture subtile & Canvas d'ambiance */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.15;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
      z-index: 1;
    }

    #ambient-canvas-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 0;
      pointer-events: none;
    }
    #ambient-canvas { width: 100%; height: 100%; display: block; }
    
    .radial-glow {
      position: fixed;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, rgba(78, 182, 231, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    .deadline-bar, header, main, footer { position: relative; z-index: 2; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font: inherit; }
    .wrap { width: min(calc(100% - 40px), var(--content-width)); margin-inline: auto; }

    /* Typo Helpers façon secretunion.io */
    h1, h2, h3, h4 {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      line-height: 1.15;
      font-weight: 900;
      color: #FFFFFF;
    }
    
    .eyebrow {
      color: var(--color-accent);
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .gradient-brand {
      background-image: var(--gradient-brand);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }

    /* ==========================================================================
       3. BANDEAU D'URGENCE (Style SecretUnion)
       ========================================================================== */
    .deadline-bar {
      position: sticky;
      top: 0;
      z-index: 50;
      color: #fff;
      background: linear-gradient(90deg, #071526 0%, #0d284a 50%, #071526 100%);
      border-bottom: 1px solid rgba(78, 182, 231, 0.25);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .deadline-inner {
      min-height: 48px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      padding: 6px 16px;
    }
    .deadline-copy {
      font-size: 0.86rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pulse-dot {
      width: 8px;
      height: 8px;
      background: var(--color-accent-light);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--color-accent);
      animation: pulseGlow 2s infinite ease-in-out;
    }
    @keyframes pulseGlow {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--color-accent-light); }
    }
    .deadline-tag { font-weight: 900; color: var(--color-accent-light); }
    .deadline-sub { font-weight: 700; color: #E2E8F0; }
    .countdown {
      min-width: 72px;
      padding: 5px 12px;
      border-radius: 6px;
      color: var(--color-accent-light);
      background: rgba(0, 0, 0, 0.5);
      text-align: center;
      font: 900 0.92rem/1 "Plus Jakarta Sans", sans-serif;
      font-variant-numeric: tabular-nums;
      border: 1px solid rgba(78, 182, 231, 0.35);
    }

    /* ==========================================================================
       4. HERO SECTION
       ========================================================================== */
    header { padding: 60px 0 36px; text-align: center; }

    /* Brand Signature Lockup (Centrage parfait & Traits dégradés) */
    .hero-brand-lockup {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-bottom: 26px;
    }
    .hero-brand-center {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .hero-brand-logo {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 14px rgba(78, 182, 231, 0.4);
      border: 1.5px solid var(--color-accent);
      flex-shrink: 0;
    }
    .hero-brand-handle {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #FFFFFF;
      line-height: 1;
    }
    .hero-rule {
      width: 70px;
      height: 1.5px;
      background: linear-gradient(90deg, rgba(78, 182, 231, 0) 0%, #4EB6E7 100%);
      flex-shrink: 0;
    }
    .hero-rule.reverse {
      background: linear-gradient(270deg, rgba(78, 182, 231, 0) 0%, #4EB6E7 100%);
    }
    @media (max-width: 600px) {
      header { padding: 36px 0 20px; }
      .hero-rule { width: 30px; }
      .hero-brand-logo { width: 28px; height: 28px; }
      .hero-brand-handle { font-size: 1rem; }
    }
    h1 {
      max-width: 1020px;
      margin: 0 auto;
      font-size: clamp(2rem, 4.4vw, 3.6rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1.15;
    }
    .lede {
      max-width: 780px;
      margin: 18px auto 0;
      color: #CBD5E1;
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      line-height: 1.5;
    }
    .hero-stats-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line-subtle);
    }
    .hero-stat-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--color-accent-light);
      letter-spacing: 0.04em;
    }

    /* ==========================================================================
       5. CHECKOUT GRID (SPLIT 2 COLONNES)
       ========================================================================== */
    .checkout-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
      gap: 28px;
      align-items: start;
    }
    .panel {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--gradient-panel);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: var(--shadow-brand);
      overflow: hidden;
    }

    /* Left Panel: Value Stacking & 3D Mockup */
    .offer { padding: 34px 30px; }
    .mockup-stage {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 4px auto 24px;
      width: 100%;
    }
    .bundle-3d-mockup-img {
      width: 100%;
      max-width: 480px;
      max-height: 300px;
      margin: 0 auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.95)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 35px rgba(78, 182, 231, 0.28));
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
      position: relative;
      z-index: 2;
    }
    .bundle-3d-mockup-img:hover {
      transform: translateY(-4px) scale(1.015);
      filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.98)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 45px rgba(78, 182, 231, 0.4));
    }
    .mockup-floor-shadow {
      width: 85%;
      max-width: 420px;
      height: 22px;
      margin-top: -12px;
      background: radial-gradient(ellipse 65% 50% at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(78, 182, 231, 0.15) 60%, transparent 80%);
      filter: blur(5px);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .offer h2 {
      margin-top: 6px;
      font-size: clamp(1.55rem, 2.8vw, 2.2rem);
      font-weight: 900;
      letter-spacing: -0.035em;
    }
    .offer-intro {
      margin: 10px 0 20px;
      color: var(--color-muted);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .stack-category-title {
      font-size: 0.78rem;
      font-weight: 900;
      color: var(--color-accent);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin: 20px 0 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .stack-category-title::after {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(78, 182, 231, 0.15);
    }

    .inclusions { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
    .inclusions li {
      display: grid;
      grid-template-columns: 22px 1fr auto;
      gap: 12px;
      align-items: start;
      font-size: 0.92rem;
      line-height: 1.45;
      padding: 8px 12px;
      background: rgba(10, 20, 32, 0.5);
      border: 1px solid rgba(78, 182, 231, 0.08);
      border-radius: var(--radius-sm);
      transition: background 0.2s, border-color 0.2s;
    }
    .inclusions li:hover {
      background: rgba(16, 32, 53, 0.7);
      border-color: rgba(78, 182, 231, 0.25);
    }
    .check {
      width: 20px;
      height: 20px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #040B15;
      background: var(--color-accent);
      font-size: 0.72rem;
      font-weight: 900;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .item-desc { color: #E2E8F0; }
    .item-desc strong { color: #FFFFFF; font-weight: 800; }
    .item-desc small { display: block; color: var(--color-muted); font-size: 0.82rem; margin-top: 2px; }
    .item-val {
      color: var(--color-accent-light);
      font-weight: 800;
      font-size: 0.82rem;
      white-space: nowrap;
      background: rgba(78, 182, 231, 0.08);
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(78, 182, 231, 0.2);
    }

    .value-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid var(--line-subtle);
    }
    .value-row small { display: block; color: var(--color-muted); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
    .value-row s { color: #64748B; font-size: 1.3rem; font-weight: 800; }
    .value-row strong {
      color: var(--color-accent-light);
      font: 900 2.4rem/1 "Plus Jakarta Sans", sans-serif;
      background-image: var(--gradient-brand);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .offer-trust {
      display: grid;
      gap: 8px;
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--line-subtle);
      color: #94A3B8;
      font-size: 0.82rem;
    }
    .payment-marks { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 4px; }
    .payment-marks span {
      min-width: 46px;
      padding: 4px 8px;
      border-radius: var(--radius-sm);
      background: #FFFFFF;
      color: #0F172A;
      text-align: center;
      font-size: 0.68rem;
      font-weight: 900;
      line-height: 1;
    }

    /* ==========================================================================
       6. RIGHT CHECKOUT SHELL (2-STEP RUSSELL BRUNSON STYLE)
       ========================================================================== */
    .checkout-shell {
      position: sticky;
      top: 20px;
      background: #FFFFFF;
      color: #0F172A;
      border-radius: var(--radius-lg);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.75), 0 0 30px rgba(78, 182, 231, 0.15);
      overflow: hidden;
      border: 1px solid #E2E8F0;
    }
    .checkout-top-banner {
      background: linear-gradient(90deg, #071526 0%, #1c5fa8 50%, #071526 100%);
      color: #FFFFFF;
      padding: 12px 20px;
      text-align: center;
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .checkout-top-banner em {
      color: var(--color-accent-light);
      font-style: normal;
      text-decoration: underline;
    }

    /* 2-Step Progress Tabs */
    .twostep-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 2px solid #E2E8F0;
    }
    .twostep-tab {
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: #F8FAFC;
      color: #64748B;
      cursor: pointer;
      position: relative;
      transition: all 0.2s ease;
      user-select: none;
    }
    .twostep-tab.active {
      background: #0284C7;
      color: #FFFFFF;
    }
    .twostep-tab.completed {
      background: #E0F2FE;
      color: #0369A1;
    }
    .twostep-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.12);
      display: grid;
      place-items: center;
      font-size: 0.85rem;
      font-weight: 900;
      flex-shrink: 0;
    }
    .twostep-tab.active .twostep-num {
      background: #FFFFFF;
      color: #0284C7;
    }
    .twostep-info {
      text-align: left;
      line-height: 1.2;
    }
    .twostep-info strong {
      display: block;
      font-size: 0.85rem;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 0.03em;
    }
    .twostep-info small {
      font-size: 0.74rem;
      opacity: 0.85;
    }

    /* Form Fields */
    .step-content { padding: 24px 26px; }
    .step-section-title {
      font-size: 0.80rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #64748B;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .step-section-title::after {
      content: "";
      flex: 1;
      height: 1px;
      background: #E2E8F0;
    }
    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .form-group { margin-bottom: 12px; }
    .form-label {
      display: block;
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #334155;
      margin-bottom: 4px;
    }
    .form-input {
      width: 100%;
      height: 46px;
      padding: 0 14px;
      border: 1.5px solid #CBD5E1;
      border-radius: var(--radius-sm);
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: #0F172A;
      background: #FFFFFF;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-input:focus {
      outline: none;
      border-color: #0284C7;
      box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
    }
    .phone-input-wrap {
      display: flex;
      border: 1.5px solid #CBD5E1;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .phone-prefix {
      background: #F8FAFC;
      border-right: 1px solid #CBD5E1;
      padding: 0 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      font-weight: 800;
      color: #475569;
    }
    .phone-input-wrap .form-input { border: none; box-shadow: none; }

    /* CTA Step 1 */
    .step1-cta-btn {
      width: 100%;
      height: 54px;
      background: linear-gradient(180deg, #E11D48 0%, #BE123C 100%);
      color: #FFFFFF;
      border: none;
      border-radius: var(--radius-sm);
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.98rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(190, 18, 60, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 18px;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .step1-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(190, 18, 60, 0.45);
    }

    /* Step 2 Customer Summary Bar */
    .step2-customer-summary {
      background: #F0F9FF;
      border: 1px solid #BAE6FD;
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      margin-bottom: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: #0369A1;
    }
    .step2-customer-summary strong { font-weight: 800; color: #0C4A6E; }
    .btn-edit-step1 {
      color: #0284C7;
      font-weight: 800;
      text-decoration: underline;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      font-size: 0.78rem;
      text-transform: uppercase;
    }

    /* Order Bump Box */
    .order-bump-box {
      background: #FFFBEB;
      border: 2px dashed #F59E0B;
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      margin: 16px 0;
      position: relative;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .order-bump-box.bump-checked {
      background: #EFF6FF;
      border: 2px solid #0284C7;
    }
    .order-bump-head {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .bump-checkbox {
      width: 22px;
      height: 22px;
      accent-color: #0284C7;
      margin-top: 2px;
      cursor: pointer;
      flex-shrink: 0;
    }
    .bump-headline {
      font-size: 0.88rem;
      font-weight: 900;
      color: #B45309;
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }
    .order-bump-box.bump-checked .bump-headline { color: #0369A1; }
    .bump-tag-flash {
      display: inline-block;
      background: #EF4444;
      color: #FFF;
      font-size: 0.68rem;
      font-weight: 900;
      padding: 2px 6px;
      border-radius: 4px;
      margin-right: 4px;
      animation: pulseGlow 1.5s infinite;
    }
    .bump-body-text {
      margin: 8px 0 0 34px;
      font-size: 0.82rem;
      color: #475569;
      line-height: 1.45;
    }

    /* Total Strip */
    .price-strip {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 24px;
      background: #F0F9FF;
      border-top: 1px solid #BAE6FD;
      border-bottom: 1px solid #BAE6FD;
      margin: 0 -26px;
    }
    .price-strip-label {
      font-size: 0.85rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #0369A1;
      letter-spacing: 0.05em;
    }
    .price-strip-amount {
      font-size: 1.5rem;
      font-weight: 900;
      color: #0284C7;
    }

    /* Whop Stage & Decline Banner */
    .whop-stage { padding: 0; min-height: 480px; }
    #whop-mount, .whop-checkout-embed { width: 100%; height: auto; }
    .whop-checkout-embed iframe {
      display: block !important;
      width: 100% !important;
      min-height: 480px;
      border: 0 !important;
    }
    .wd-error-banner {
      display: none;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin: 0 0 16px 0;
      padding: 12px 14px;
      border: 1px solid rgba(248, 113, 113, 0.35);
      background: #1f1113;
      color: #fecaca;
      border-radius: 8px;
      font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      font-size: 14px;
      line-height: 1.5;
    }
    .wd-error-banner.wd-show { display: flex; }
    .wd-error-banner .wd-error-dismiss {
      appearance: none;
      border: 0;
      background: transparent;
      color: inherit;
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
      padding: 0 4px;
    }
    .microtrust {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      padding: 12px 18px;
      border-top: 1px solid #E2E8F0;
      color: #64748B;
      font-size: 0.76rem;
      font-weight: 700;
      background: #F8FAFC;
    }
    .microtrust span::before { content: "✓"; margin-right: 5px; color: #0284C7; font-weight: 900; }
    .checkout-footer-notice {
      padding: 10px 20px 14px;
      text-align: center;
      font-size: 0.75rem;
      color: #64748B;
      background: #F8FAFC;
      border-top: 1px dashed #E2E8F0;
    }

    /* ==========================================================================
       7. CURRICULUM / PRODUCTS SECTION (Style SecretUnion)
       ========================================================================== */
    section { padding: 88px 0; }
    .section-head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
    .section-head h2 {
      margin-top: 10px;
      font-size: clamp(1.8rem, 3.8vw, 3rem);
      font-weight: 900;
      letter-spacing: -0.04em;
    }
    .section-head p { color: var(--color-muted); font-size: 1rem; margin-top: 8px; }

    /* 3 Main Products Bento Cards */
    .products-list { display: grid; gap: 24px; }
    .product-bento {
      display: grid;
      grid-template-columns: 36% 1fr;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--gradient-card);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-brand);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .product-bento:hover {
      transform: translateY(-4px);
      border-color: rgba(78, 182, 231, 0.45);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(78, 182, 231, 0.2);
    }
    .product-bento:nth-child(even) { grid-template-columns: 1fr 36%; }
    .product-bento:nth-child(even) .product-media { order: 2; border-right: none; border-left: 1px solid var(--line-subtle); }
    .product-media {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 32px 24px;
      background: radial-gradient(circle at 50% 50%, rgba(78, 182, 231, 0.2) 0%, rgba(7, 19, 34, 0.95) 75%);
      border-right: 1px solid var(--line-subtle);
      overflow: hidden;
    }
    /* Halo lumineux en arrière-plan */
    .product-media::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78, 182, 231, 0.4) 0%, rgba(47, 127, 209, 0.18) 50%, transparent 70%);
      filter: blur(25px);
      pointer-events: none;
      z-index: 1;
    }
    .product-ebook-img {
      width: 100%;
      max-width: 230px;
      height: auto;
      max-height: 270px;
      object-fit: contain;
      filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.95)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 25px rgba(78, 182, 231, 0.35));
      position: relative;
      z-index: 2;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
    }
    .product-bento:hover .product-ebook-img {
      transform: translateY(-4px) scale(1.03);
      filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 35px rgba(78, 182, 231, 0.5));
    }
    .product-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 36px 32px;
    }
    .product-kicker {
      color: var(--color-accent);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .product-copy h3 {
      margin: 8px 0 10px;
      font-size: clamp(1.35rem, 2.5vw, 1.85rem);
      font-weight: 900;
      letter-spacing: -0.03em;
    }
    .product-copy p { margin: 0; color: #CBD5E1; font-size: 0.95rem; line-height: 1.55; }
    .product-bullets {
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
      font-size: 0.9rem;
      color: #E2E8F0;
    }
    .product-bullets li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--color-accent);
      font-weight: 900;
    }

    /* ==========================================================================
       8. 7 BONUS GRID (Exactement Style SecretUnion)
       ========================================================================== */
    .bonus-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .bonus-card {
      position: relative;
      padding: 26px 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--gradient-card);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }
    .bonus-card:hover {
      transform: translateY(-3px);
      border-color: rgba(78, 182, 231, 0.45);
    }
    .bonus-top-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }
    .bonus-number {
      color: var(--color-accent);
      font: 900 0.74rem "Plus Jakarta Sans", sans-serif;
      letter-spacing: 0.14em;
    }
    .bonus-card h3 {
      margin: 6px 0 8px;
      font-size: 1.18rem;
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: -0.02em;
    }
    .bonus-card p {
      margin: 0;
      color: var(--color-muted);
      font-size: 0.88rem;
      line-height: 1.5;
    }
    .bonus-val-tag {
      display: inline-block;
      margin-top: 12px;
      color: var(--color-accent-light);
      font-size: 0.78rem;
      font-weight: 800;
      background: rgba(78, 182, 231, 0.08);
      padding: 3px 8px;
      border-radius: 4px;
      border: 1px solid rgba(78, 182, 231, 0.2);
    }
    .bonus-card.wide { grid-column: 1 / -1; }

    /* ==========================================================================
       9. PROOF / AUTHORITY BOX
       ========================================================================== */
    .authority-box {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--gradient-panel);
      padding: 56px 40px;
      box-shadow: var(--shadow-brand);
    }
    .authority-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 36px;
    }
    .authority-card {
      background: rgba(10, 20, 32, 0.8);
      border: 1px solid rgba(78, 182, 231, 0.15);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      text-align: center;
      transition: transform 0.2s;
    }
    .authority-card:hover { transform: translateY(-3px); }
    .authority-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 16px;
      background: rgba(78, 182, 231, 0.1);
      border: 1.5px solid var(--color-accent);
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      color: var(--color-accent-light);
      font-size: 1.4rem;
    }
    .authority-card h4 {
      margin: 0 0 8px;
      font-size: 1.1rem;
      font-weight: 800;
    }
    .authority-card p {
      margin: 0;
      font-size: 0.88rem;
      color: #CBD5E1;
      line-height: 1.5;
    }

    /* ==========================================================================
       10. RESTACK CARD & GUARANTEE
       ========================================================================== */
    .restack-card {
      max-width: 980px;
      margin: auto;
      padding: 52px 40px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 50% 0%, rgba(78, 182, 231, 0.14), transparent 60%), var(--gradient-panel);
      backdrop-filter: blur(12px);
      text-align: center;
      box-shadow: var(--shadow-brand);
    }
    .restack-card h2 {
      margin: 8px auto 16px;
      max-width: 780px;
      font-size: clamp(1.8rem, 3.8vw, 2.8rem);
      font-weight: 900;
      letter-spacing: -0.045em;
    }
    .restack-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-bottom: 22px;
    }
    .restack-badge {
      background: rgba(78, 182, 231, 0.1);
      border: 1px solid rgba(78, 182, 231, 0.25);
      color: var(--color-accent-light);
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 700;
    }
    .restack-3d-mockup-img {
      width: 100%;
      max-width: 620px;
      max-height: 330px;
      margin: 16px auto 10px;
      object-fit: contain;
      filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.95)) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 40px rgba(78, 182, 231, 0.3));
      position: relative;
      z-index: 2;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
    }
    .restack-3d-mockup-img:hover {
      transform: translateY(-4px) scale(1.015);
      filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 50px rgba(78, 182, 231, 0.45));
    }
    .restack-values {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 36px;
      margin: 22px auto 28px;
      padding-top: 20px;
      border-top: 1px solid var(--line-subtle);
    }
    .restack-val-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 4px;
    }
    .val-label {
      color: var(--color-muted);
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .restack-val-box s {
      color: #64748B;
      font-size: 1.4rem;
      font-weight: 700;
    }
    .restack-val-box strong {
      color: var(--color-accent-light);
      font-size: 3rem;
      font-weight: 900;
      line-height: 1;
      background-image: var(--gradient-brand);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .final-cta-btn {
      display: inline-flex;
      min-height: 56px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 36px;
      border-radius: 12px;
      background-image: var(--gradient-brand);
      color: #040B15;
      font-weight: 900;
      font-size: 1.05rem;
      text-decoration: none;
      box-shadow: 0 10px 40px rgba(78, 182, 231, 0.3);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .final-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 45px rgba(78, 182, 231, 0.45);
    }

    /* Guarantee Box */
    .guarantee-box {
      max-width: 860px;
      margin: auto;
      text-align: center;
      padding: 48px 36px;
      background: radial-gradient(circle at 50% 30%, rgba(78, 182, 231, 0.08), transparent 70%), var(--gradient-panel);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-brand);
      backdrop-filter: blur(12px);
    }
    .guarantee-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
      background: rgba(78, 182, 231, 0.12);
      border: 1.5px solid var(--color-accent);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--color-accent-light);
      font-size: 2rem;
      box-shadow: 0 0 20px rgba(78, 182, 231, 0.25);
    }
    .guarantee-title-underline {
      font-size: clamp(1.8rem, 3.8vw, 2.4rem);
      font-weight: 900;
      color: #FFFFFF;
      text-decoration: underline;
      text-underline-offset: 8px;
      text-decoration-thickness: 3px;
      text-decoration-color: var(--color-accent);
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      text-transform: uppercase;
    }
    .guarantee-box p {
      max-width: 720px;
      margin: 0 auto 28px;
      color: #E2E8F0;
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      line-height: 1.65;
    }

    /* FAQ */
    .faq-list { max-width: 880px; margin: auto; display: grid; gap: 12px; }
    details {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(10, 20, 32, 0.92);
      backdrop-filter: blur(8px);
      transition: border-color 0.2s;
    }
    details[open] { border-color: rgba(78, 182, 231, 0.5); background: rgba(16, 32, 53, 0.95); }
    summary {
      padding: 18px 50px 18px 22px;
      cursor: pointer;
      list-style: none;
      font-weight: 800;
      font-size: 1.05rem;
      position: relative;
      color: #FFFFFF;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 15px;
      color: var(--color-accent);
      font-size: 1.4rem;
      font-weight: 900;
    }
    details[open] summary::after { content: "−"; color: var(--color-accent-light); }
    details p { margin: 0; padding: 0 22px 20px; color: #CBD5E1; font-size: 0.95rem; line-height: 1.55; }

    /* Footer */
    footer {
      padding: 56px 0 36px;
      border-top: 1px solid var(--line-subtle);
      background: #02060c;
      text-align: center;
      margin-bottom: 0;
    }
    .footer-brand {
      font-size: 1.2rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      color: #FFFFFF;
      margin-bottom: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 24px;
      margin-bottom: 16px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--color-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .footer-links a:hover { color: var(--color-accent); }
    .footer-copy {
      font-size: 0.8rem;
      color: #64748B;
      line-height: 1.5;
    }

    /* ==========================================================================
       11. RESPONSIVE
       ========================================================================== */
    @media (max-width: 960px) {
      .checkout-grid { grid-template-columns: 1fr; }
      .checkout-shell { position: static; }
      .product-bento, .product-bento:nth-child(even) { grid-template-columns: 1fr; }
      .product-bento:nth-child(even) .product-media { order: 0; border-left: none; border-bottom: 1px solid var(--line-subtle); }
      .product-media { border-right: none; border-bottom: 1px solid var(--line-subtle); }
      .authority-grid { grid-template-columns: 1fr; }
      .bonus-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .wrap { width: min(calc(100% - 24px), var(--content-width)); }
      .deadline-inner { flex-direction: column; gap: 6px; }
      header { padding: 24px 0 16px; }
      .offer { padding: 24px 18px; }
      .restack-card { padding: 32px 18px; }
      .restack-values { gap: 20px; }
      .guarantee-box { padding: 32px 18px; }
      .form-grid-2 { grid-template-columns: 1fr; }
    }

    /* ==========================================================================
       12. LIVE VISUAL EDITOR DOCK
       ========================================================================== */
    body.editor-active [contenteditable="true"] {
      outline: 1.5px dashed rgba(78, 182, 231, 0.5) !important;
      outline-offset: 3px;
      border-radius: 4px;
      cursor: text;
    }
    body.editor-active [contenteditable="true"]:hover {
      outline: 1.5px dashed var(--color-accent) !important;
      background: rgba(78, 182, 231, 0.08) !important;
    }
    body.editor-active [contenteditable="true"]:focus {
      outline: 2px solid var(--color-accent-light) !important;
      background: rgba(78, 182, 231, 0.12) !important;
    }
    
    #live-editor-dock { display: none !important;
      position: fixed;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 99999;
      background: rgba(10, 20, 32, 0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1.5px solid rgba(78, 182, 231, 0.35);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 24px rgba(78, 182, 231, 0.25);
      border-radius: 40px;
      padding: 6px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      user-select: none;
    }
    .editor-group { display: flex; align-items: center; gap: 6px; }
    .editor-divider { width: 1px; height: 22px; background: rgba(78, 182, 231, 0.25); }
    .editor-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(78, 182, 231, 0.2);
      color: #fff;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.15s ease;
    }
    .editor-btn:hover {
      background: rgba(78, 182, 231, 0.15);
      border-color: var(--color-accent);
      color: var(--color-accent-light);
    }
    .editor-btn.primary {
      background: var(--gradient-brand);
      color: #040B15;
      border-color: transparent;
    }
    .editor-btn.active {
      background: var(--color-accent);
      color: #040B15;
    }
    .editor-badge-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      color: var(--color-accent-light);
      padding: 0 6px;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #10B981;
      box-shadow: 0 0 8px #10B981;
    }
    .status-dot.editing {
      background: #38BDF8;
      box-shadow: 0 0 8px #38BDF8;
      animation: pulseGlow 1.5s infinite;
    }
    #editor-toast {
      position: fixed;
      top: 60px;
      right: 20px;
      z-index: 100000;
      background: rgba(10, 20, 32, 0.95);
      border: 1.5px solid var(--color-accent);
      color: #fff;
      padding: 10px 18px;
      border-radius: 8px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 14px;
      font-weight: 700;
      display: none;
      align-items: center;
      gap: 8px;
    }
    #editor-toast.show { display: flex; }

    /* ==========================================================================
       GUTENBERG EDITOR 1:1 VISUAL FIDELITY & DARK MODE SUPPORT
       ========================================================================== */
    .checkout-page-container {
      background-color: #040B15 !important;
      background-image: 
        radial-gradient(circle at 50% 10%, rgba(78, 182, 231, 0.16) 0%, transparent 60%),
        radial-gradient(circle at 10% 40%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(78, 182, 231, 0.10) 0%, transparent 50%) !important;
      color: #F8FAFC !important;
      min-height: 100vh;
      width: 100%;
      position: relative;
      padding-bottom: 40px;
      font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* Override Gutenberg editor white canvas so editing has identical dark aesthetics */
    .editor-styles-wrapper,
    .block-editor-writing-flow,
    .edit-post-visual-editor,
    .block-editor-block-list__layout,
    .wp-block-post-content,
    .is-root-container,
    div[data-block] {
      background-color: #040B15 !important;
      color: #F8FAFC !important;
    }

    /* Hide Gutenberg default post title block and residual title input */
    .editor-post-title,
    .editor-post-title__block,
    .wp-block-post-title,
    h1.editor-post-title__input,
    .editor-post-title__input {
      display: none !important;
      visibility: hidden !important;
      height: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .editor-styles-wrapper p,
    .editor-styles-wrapper h1,
    .editor-styles-wrapper h2,
    .editor-styles-wrapper h3,
    .editor-styles-wrapper span,
    .editor-styles-wrapper div {
      color: inherit;
    }