    *, *::before, *::after { box-sizing: border-box; }

    html, body { height: 100%; margin: 0; }

    .site-wrapper { min-height: 100vh; }

    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1030;
      background: transparent;
    }

    /* ══════════════════════════
       WIZARD PAGE
    ══════════════════════════ */
    .wizard-page {
      min-height: 100vh;
      padding-top: 108px;
      padding-bottom: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .wizard-inner {
      width: 100%;
      max-width: 800px;
      padding: 0 20px;
    }

    /* ══════════════════════════
       TOP PROGRESS BEAM
    ══════════════════════════ */
    .wizard-progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      background: linear-gradient(90deg, #3498db, #2575fc, #0dcaf0);
      z-index: 9999;
      transition: width 0.55s cubic-bezier(.4,0,.2,1);
      border-radius: 0 3px 3px 0;
      box-shadow: 0 0 12px rgba(52,152,219,0.55);
    }

    /* ══════════════════════════
       STEP INDICATOR
    ══════════════════════════ */
    .step-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2.5rem;
    }

    .step-dot-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      min-height: 46px;
      position: relative;
      z-index: 1;
    }

    .step-dot {
      width: 46px; height: 46px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      transition: all 0.35s cubic-bezier(.4,0,.2,1);
      border: 2.5px solid transparent;
    }

    :root[data-theme="light"] .step-dot {
      background: rgba(255,255,255,0.75);
      border-color: #d8e8f5;
      color: #bbb;
    }
    :root[data-theme="dark"] .step-dot {
      background: rgba(20,28,42,0.8);
      border-color: rgba(52,152,219,0.38);
      color: #8898aa;
    }

    .step-dot.done {
      background: linear-gradient(135deg, #3498db, #2575fc);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 4px 14px rgba(52,152,219,0.4);
    }

    .step-dot.active {
      background: linear-gradient(135deg, #3498db, #1a3a5f);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 6px 24px rgba(52,152,219,0.55);
      transform: scale(1.2);
    }

    .step-dot-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      white-space: nowrap;
      transition: color 0.3s;
      position: absolute;
      top: calc(100% + 7px);
      left: 50%;
      transform: translateX(-50%);
      margin: 0;
    }
    :root[data-theme="light"] .step-dot-label { color: #bbb; }
    :root[data-theme="dark"]  .step-dot-label { color: #667888; }
    .step-dot-wrap.s-active .step-dot-label,
    .step-dot-wrap.s-done   .step-dot-label { color: #3498db; }

    .step-connector {
      flex: 1; max-width: 64px;
      height: 2px;
      border-radius: 4px;
      margin: 0;
      align-self: center;
      position: relative;
      overflow: hidden;
    }
    :root[data-theme="light"] .step-connector { background: #dde9f5; }
    :root[data-theme="dark"]  .step-connector { background: rgba(52,152,219,0.28); }

    .step-connector::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, #3498db, #2575fc);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    }
    .step-connector.done::after { transform: scaleX(1); }

    /* ══════════════════════════
       GLASS CARD
    ══════════════════════════ */
    .glass-card {
      border-radius: 26px;
      padding: 2.5rem 2.75rem;
      position: relative;
      overflow: hidden;
    }

    :root[data-theme="light"] .glass-card {
      background: rgba(255,255,255,0.72);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255,255,255,0.92);
      box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 10px 40px rgba(52,152,219,0.1), 0 30px 60px rgba(0,0,0,0.05);
    }

    :root[data-theme="dark"] .glass-card {
      background: rgba(18,28,46,0.84);
      backdrop-filter: blur(24px) saturate(160%);
      -webkit-backdrop-filter: blur(24px) saturate(160%);
      border: 1px solid rgba(52,152,219,0.24);
      box-shadow: 0 2px 6px rgba(0,0,0,0.25), 0 10px 40px rgba(0,0,0,0.3), 0 30px 60px rgba(0,0,0,0.2);
    }

    .glass-card::before {
      content: '';
      position: absolute;
      top: -50px; right: -50px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(52,152,219,0.14) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ══════════════════════════
       STEP HEADER TEXT
    ══════════════════════════ */
    .step-eyebrow {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #3498db;
      margin-bottom: 0.35rem;
    }

    .step-heading {
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 0.45rem;
    }
    :root[data-theme="light"] .step-heading { color: #0d1b2a; }
    :root[data-theme="dark"]  .step-heading { color: #eef2f7; }

    .step-desc {
      font-size: 0.93rem;
      line-height: 1.65;
      opacity: 0.58;
      margin-bottom: 1.85rem;
    }

    /* ══════════════════════════
       ORG GRID
    ══════════════════════════ */
    .org-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .org-option { position: relative; }
    .org-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

    .org-option label {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 15px 18px;
      border-radius: 16px;
      cursor: pointer;
      font-size: 0.97rem;
      font-weight: 700;
      transition: all 0.22s cubic-bezier(.4,0,.2,1);
      user-select: none;
    }

    :root[data-theme="light"] .org-option label {
      background: rgba(237,246,255,0.8);
      border: 2px solid #d8eaf7;
      color: #24354a;
    }
    :root[data-theme="dark"] .org-option label {
      background: rgba(52,152,219,0.08);
      border: 2px solid rgba(52,152,219,0.34);
      color: #a8cce4;
    }

    .org-option label:hover {
      border-color: #3498db;
      transform: translateY(-2px);
      box-shadow: 0 5px 18px rgba(52,152,219,0.16);
    }

    .org-option input[type="radio"]:checked + label {
      background: linear-gradient(135deg, rgba(52,152,219,0.13), rgba(37,117,252,0.1));
      border-color: #3498db;
      color: #3498db;
      box-shadow: 0 5px 20px rgba(52,152,219,0.22);
    }
    :root[data-theme="dark"] .org-option input[type="radio"]:checked + label { color: #6dbfee; }

    .org-check {
      position: absolute;
      top: 10px; right: 11px;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3498db, #2575fc);
      color: #fff;
      font-size: 10px;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: scale(0.3);
      transition: all 0.22s cubic-bezier(.4,0,.2,1);
    }
    .org-option input[type="radio"]:checked ~ .org-check { opacity: 1; transform: scale(1); }

    .org-emoji { font-size: 1.35rem; }

    .org-other-wrap {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.32s ease;
    }
    .org-other-wrap.visible { max-height: 80px; }

    /* ══════════════════════════
       FEATURE GRID
    ══════════════════════════ */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }

    .feature-card { position: relative; }
    .feature-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

    .feature-card label {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 26px 10px;
      border-radius: 18px;
      cursor: pointer;
      text-align: center;
      font-size: 0.84rem;
      font-weight: 800;
      transition: all 0.22s cubic-bezier(.4,0,.2,1);
      user-select: none;
      min-height: 115px;
      letter-spacing: 0.01em;
    }

    :root[data-theme="light"] .feature-card label {
      background: rgba(237,246,255,0.8);
      border: 2px solid #d8eaf7;
      color: #24354a;
    }
    :root[data-theme="dark"] .feature-card label {
      background: rgba(52,152,219,0.08);
      border: 2px solid rgba(52,152,219,0.34);
      color: #a8cce4;
    }

    .feature-card label:hover {
      border-color: #3498db;
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(52,152,219,0.18);
    }

    .feature-card input[type="checkbox"]:checked + label {
      background: linear-gradient(135deg, rgba(52,152,219,0.13), rgba(37,117,252,0.09));
      border-color: #3498db;
      color: #3498db;
      box-shadow: 0 8px 28px rgba(52,152,219,0.24);
    }
    :root[data-theme="dark"] .feature-card input[type="checkbox"]:checked + label { color: #6dbfee; }

    .feat-icon { font-size: 1.9rem; display: block; }

    .feat-check {
      position: absolute;
      top: 10px; right: 10px;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3498db, #2575fc);
      color: #fff; font-size: 11px;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: scale(0.3) rotate(-90deg);
      transition: all 0.25s cubic-bezier(.4,0,.2,1);
    }
    .feature-card input[type="checkbox"]:checked ~ .feat-check {
      opacity: 1; transform: scale(1) rotate(0deg);
    }

    /* ══════════════════════════
       NI INPUT
    ══════════════════════════ */
    .ni-label {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #3498db;
      margin-bottom: 8px;
      display: block;
    }

    .ni-input {
      display: block;
      width: 100%;
      border-radius: 14px;
      padding: 14px 18px;
      font-size: 1rem;
      font-weight: 500;
      outline: none;
      transition: all 0.22s ease;
    }

    :root[data-theme="light"] .ni-input {
      background: rgba(237,246,255,0.8);
      border: 2px solid #d8eaf7;
      color: #111;
    }
    :root[data-theme="dark"] .ni-input {
      background: rgba(52,152,219,0.09);
      border: 2px solid rgba(52,152,219,0.34);
      color: #eaeaea;
    }
    :root[data-theme="dark"] .ni-input::placeholder { color: rgba(255,255,255,0.28); }

    .ni-input:focus {
      border-color: #3498db;
      box-shadow: 0 0 0 4px rgba(52,152,219,0.14);
    }

    /* ══════════════════════════
       LOGO DROP
    ══════════════════════════ */
    .logo-drop {
      border-radius: 18px;
      border: 2px dashed #3498db;
      padding: 2rem 1.5rem;
      text-align: center;
      cursor: pointer;
      position: relative;
      transition: all 0.22s ease;
    }
    :root[data-theme="light"] .logo-drop { background: rgba(237,246,255,0.7); color: #334; }
    :root[data-theme="dark"]  .logo-drop { background: rgba(52,152,219,0.08); color: #90bcda; }

    .logo-drop:hover, .logo-drop.drag-over {
      background: rgba(52,152,219,0.11);
      border-color: #2575fc;
      box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
    }

    .logo-drop input[type="file"] {
      position: absolute; inset: 0;
      opacity: 0; cursor: pointer;
      width: 100%; height: 100%;
    }

    .logo-drop-icon { font-size: 2.4rem; display: block; margin-bottom: 7px; }

    .logo-preview-row {
      display: none;
      align-items: center;
      gap: 14px;
      margin-top: 13px;
      padding: 13px 16px;
      border-radius: 14px;
    }
    :root[data-theme="light"] .logo-preview-row { background: rgba(237,246,255,0.9); }
    :root[data-theme="dark"]  .logo-preview-row { background: rgba(52,152,219,0.14); border: 1px solid rgba(52,152,219,0.25); }
    .logo-preview-row.visible { display: flex; }

    .logo-preview-row img {
      max-height: 56px; max-width: 150px;
      object-fit: contain; border-radius: 8px;
    }

    .no-logo-wrap {
      display: flex;
      justify-content: center;
      margin-top: 12px;
    }

    .btn-no-logo {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.76rem;
      font-weight: 600;
      border: 1.5px solid;
      background: transparent;
      cursor: pointer;
      transition: all 0.2s ease;
      opacity: 0.55;
    }
    .btn-no-logo:hover { opacity: 1; }
    :root[data-theme="light"] .btn-no-logo { border-color: #ccc; color: #777; }
    :root[data-theme="dark"]  .btn-no-logo { border-color: #383838; color: #666; }
    .btn-no-logo:hover { border-color: #6c757d; background: rgba(108,117,125,0.09); }
    .btn-no-logo.active { opacity: 1; background: rgba(108,117,125,0.14); color: #6c757d !important; border-color: #6c757d; }

    /* ══════════════════════════
       COLOR SLOTS (placeholder)
    ══════════════════════════ */
    .color-slots {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .color-slot {
      border-radius: 16px;
      padding: 18px 20px;
      display: flex; align-items: center; gap: 14px;
    }
    :root[data-theme="light"] .color-slot { background: rgba(237,246,255,0.8); border: 2px solid #d8eaf7; }
    :root[data-theme="dark"]  .color-slot { background: rgba(52,152,219,0.09); border: 2px solid rgba(52,152,219,0.32); }

    .color-ring {
      width: 46px; height: 46px; flex-shrink: 0;
      border-radius: 50%;
      border: 3px dashed rgba(52,152,219,0.45);
      position: relative;
    }
    .color-ring::after {
      content: '+';
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      color: #3498db; font-size: 1.15rem; font-weight: 300;
    }

    /* ── Color picker — supprime les carrés blancs dans le rond ── */
    .color-slot input[type="color"] {
      -webkit-appearance: none;
      appearance: none;
      border-radius: 50%;
      overflow: hidden;
    }
    .color-slot input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
    .color-slot input[type="color"]::-webkit-color-swatch { border: none; border-radius: 50%; }
    .color-slot input[type="color"]::-moz-color-swatch { border: none; border-radius: 50%; }

    .coming-badge {
      font-size: 0.6rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 50px;
      background: rgba(52,152,219,0.11);
      color: #3498db;
      border: 1px solid rgba(52,152,219,0.22);
    }

    .info-box {
      margin-top: 1.4rem;
      padding: 1rem 1.2rem;
      border-radius: 14px;
      font-size: 0.84rem;
      line-height: 1.65;
      opacity: 0.82;
    }
    :root[data-theme="light"] .info-box { background: rgba(237,246,255,0.85); border: 1px solid #d8eaf7; }
    :root[data-theme="dark"]  .info-box { background: rgba(52,152,219,0.11); border: 1px solid rgba(52,152,219,0.3); }

    /* ══════════════════════════
       PREVIEW STEP
    ══════════════════════════ */
    .preview-layout {
      display: grid;
      grid-template-columns: 1fr 148px;
      gap: 22px;
      align-items: stretch;
    }

    .preview-left { display: flex; flex-direction: column; }

    .summary-list { list-style: none; padding: 0; margin: 0; }
    .summary-list li {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 13px 0;
      font-size: 0.9rem;
    }
    .summary-list li + li { border-top: 1px solid rgba(52,152,219,0.08); }

    .sum-icon {
      width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
      background: linear-gradient(135deg, rgba(52,152,219,0.13), rgba(37,117,252,0.09));
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }

    .sum-label {
      font-size: 0.68rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: #3498db; margin-bottom: 2px;
    }

    .sum-value { font-weight: 700; font-size: 0.9rem; }
    :root[data-theme="light"] .sum-value { color: #0d1b2a; }
    :root[data-theme="dark"]  .sum-value { color: #eef2f7; }

    .feat-tag {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 3px 11px; border-radius: 50px;
      font-size: 0.76rem; font-weight: 700; margin: 2px;
    }
    :root[data-theme="light"] .feat-tag { background: #deeeff; color: #1a3a5f; }
    :root[data-theme="dark"]  .feat-tag { background: rgba(52,152,219,0.14); color: #6dbfee; }

    /* Phone mockup */
    .phone-wrap { display: flex; flex-direction: column; align-items: center; align-self: stretch; }

    .phone {
      width: 195px;
      flex: 1;
      border-radius: 28px;
      border: 3px solid #222;
      padding: 10px 6px;
      display: flex; flex-direction: column;
      background: #000;
      box-shadow: 0 12px 40px rgba(0,0,0,0.45);
      overflow: hidden;
    }

    .phone-notch {
      width: 60px; height: 8px; border-radius: 8px; margin: 0 auto 0;
      background: #1a1a1a;
    }

    .phone-screen {
      flex: 1;
      display: flex; align-items: center; justify-content: center;
      background: #000;
      border-radius: 0 0 22px 22px;
    }

    .phone-screen-text {
      color: rgba(255,255,255,0.35);
      font-size: 0.82rem;
      font-weight: 600;
      font-style: italic;
      text-align: center;
      letter-spacing: 0.03em;
      line-height: 1.5;
    }

    /* ══════════════════════════
       NAVIGATION BUTTONS
    ══════════════════════════ */
    .wizard-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.6rem;
      gap: 10px;
    }

    .btn-back {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 12px 26px;
      border-radius: 50px;
      font-size: 0.93rem; font-weight: 700;
      border: 2px solid;
      background: transparent; cursor: pointer;
      transition: all 0.22s ease;
    }
    :root[data-theme="light"] .btn-back { border-color: #d8e8f5; color: #55698a; }
    :root[data-theme="dark"]  .btn-back { border-color: rgba(52,152,219,0.42); color: #7dbad8; }
    .btn-back:hover { border-color: #3498db; color: #3498db; background: rgba(52,152,219,0.07); }
    .btn-back.hidden { visibility: hidden; pointer-events: none; }

    .btn-next {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 36px;
      border-radius: 50px;
      font-size: 0.97rem; font-weight: 800;
      border: none;
      background: linear-gradient(135deg, #3498db 0%, #1f5fa8 100%);
      color: #fff;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 4px 18px rgba(52,152,219,0.32);
      letter-spacing: 0.01em;
    }
    .btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(52,152,219,0.44); }
    .btn-next:active { transform: translateY(0); }
    .btn-next:disabled { opacity: 0.42; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

    .btn-checkout {
      padding: 15px 42px;
      font-size: 1.05rem;
      background: linear-gradient(135deg, #3498db 0%, #2575fc 50%, #1a3a5f 100%);
      background-size: 200%;
      transition: background-position 0.45s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
    }
    .btn-checkout:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(52,152,219,0.5) !important; }

    .checkout-note {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 11px 16px; border-radius: 14px;
      font-size: 0.79rem; line-height: 1.55;
      margin-top: 1.1rem;
    }
    :root[data-theme="light"] .checkout-note { background: rgba(237,246,255,0.85); color: #55698a; border: 1px solid #d8eaf7; }
    :root[data-theme="dark"]  .checkout-note { background: rgba(52,152,219,0.12); color: #8ab4cc; border: 1px solid rgba(52,152,219,0.22); }

    /* ══════════════════════════
       STEP ANIMATIONS
    ══════════════════════════ */
    .step-panel { display: none; opacity: 0; }

    .step-panel.active {
      display: block;
      animation: stepFwdIn 0.38s cubic-bezier(.4,0,.2,1) forwards;
    }
    .step-panel.exit-fwd {
      display: block;
      animation: stepFwdOut 0.28s cubic-bezier(.4,0,.2,1) forwards;
    }
    .step-panel.enter-back {
      display: block;
      animation: stepBackIn 0.38s cubic-bezier(.4,0,.2,1) forwards;
    }
    .step-panel.exit-back {
      display: block;
      animation: stepBackOut 0.28s cubic-bezier(.4,0,.2,1) forwards;
    }

    @keyframes stepFwdIn   { from { opacity:0; transform:translateX(48px); }  to { opacity:1; transform:translateX(0); } }
    @keyframes stepFwdOut  { from { opacity:1; transform:translateX(0); }     to { opacity:0; transform:translateX(-40px); } }
    @keyframes stepBackIn  { from { opacity:0; transform:translateX(-48px); } to { opacity:1; transform:translateX(0); } }
    @keyframes stepBackOut { from { opacity:1; transform:translateX(0); }     to { opacity:0; transform:translateX(40px); } }

    @keyframes shake {
      0%,100% { transform:translateX(0); }
      18%      { transform:translateX(-9px); }
      36%      { transform:translateX(9px); }
      54%      { transform:translateX(-7px); }
      72%      { transform:translateX(7px); }
    }
    .shake { animation: shake 0.42s ease; }

    .step-hint {
      font-size: 0.8rem; color: #e74c3c;
      font-weight: 600; margin-top: 10px;
      display: none;
    }
    .step-hint.visible { display: block; }

    /* ══════════════════════════
       RESPONSIVE
    ══════════════════════════ */

    /* ── Wider screens: give the wizard room to breathe ── */
    @media (min-width: 960px) {
      .wizard-inner { max-width: 940px; }
      .org-grid { grid-template-columns: repeat(4, 1fr); }
      .feature-grid { grid-template-columns: repeat(4, 1fr); }
      .preview-layout { grid-template-columns: 1fr 220px; gap: 32px; }
      .phone { width: 220px; }
    }

    @media (min-width: 1280px) {
      .wizard-inner { max-width: 1100px; }
      .glass-card { padding: 3rem 3.5rem; }
    }

    /* ── Narrow screens ── */
    @media (max-width: 580px) {
      .wizard-inner { padding: 0 14px; }
      .glass-card { padding: 1.6rem 1.3rem; }
      .step-heading { font-size: 1.4rem; }
      .org-grid { gap: 10px; }
      .feature-grid { gap: 10px; }
      .feature-card label { padding: 18px 6px; min-height: 95px; }
      .feat-icon { font-size: 1.5rem; }
      .step-connector { max-width: 28px; }
      .step-dot { width: 38px; height: 38px; font-size: 0.88rem; }
      .step-dot-wrap { min-height: 38px; }
      .step-dot-label { display: none; }
      .preview-layout { grid-template-columns: 1fr; }
      .phone-wrap { order: -1; margin-bottom: 1rem; }
      .phone { width: 180px; height: 380px; flex: none; }
      .color-slots { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════
       EMAIL GATE MODAL
    ══════════════════════════ */
    .email-modal-overlay {
      position: fixed; inset: 0;
      display: flex; align-items: center; justify-content: center;
      z-index: 10000; padding: 20px;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
      opacity: 0; pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .email-modal-overlay.open { opacity: 1; pointer-events: all; }
    .email-modal-box {
      width: 100%; max-width: 440px;
      border-radius: 26px; padding: 2.5rem 2rem;
      position: relative;
      transform: translateY(32px) scale(0.95);
      transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    }
    .email-modal-overlay.open .email-modal-box { transform: translateY(0) scale(1); }
    :root[data-theme="light"] .email-modal-box {
      background: rgba(255,255,255,0.99);
      box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(52,152,219,0.1);
    }
    :root[data-theme="dark"] .email-modal-box {
      background: rgba(16,24,42,0.99);
      border: 1px solid rgba(52,152,219,0.3);
      box-shadow: 0 24px 64px rgba(0,0,0,0.65);
    }
    .email-modal-close {
      position: absolute; top: 16px; right: 18px;
      background: transparent; border: none;
      font-size: 1.1rem; cursor: pointer; opacity: .35;
      transition: opacity .2s; padding: 4px;
    }
    :root[data-theme="light"] .email-modal-close { color: #222; }
    :root[data-theme="dark"]  .email-modal-close { color: #ccc; }
    .email-modal-close:hover { opacity: 1; }
    .email-modal-icon { font-size: 2.8rem; text-align: center; margin-bottom: 10px; }
    .email-modal-title {
      font-size: 1.48rem; font-weight: 800; text-align: center; margin-bottom: 8px;
    }
    :root[data-theme="light"] .email-modal-title { color: #0d1b2a; }
    :root[data-theme="dark"]  .email-modal-title { color: #eef2f7; }
    .email-modal-desc {
      font-size: .88rem; line-height: 1.65; text-align: center; margin-bottom: 1.5rem;
    }
    :root[data-theme="light"] .email-modal-desc { color: #55698a; }
    :root[data-theme="dark"]  .email-modal-desc { color: #90aec8; }
    .email-modal-footer {
      font-size: .7rem; text-align: center; margin-top: 12px;
    }
    :root[data-theme="light"] .email-modal-footer { color: #888; }
    :root[data-theme="dark"]  .email-modal-footer { color: #6a8aa8; }
    .email-modal-footer a { color: inherit; text-decoration: underline; }
    /* Hide the default reCAPTCHA badge — we show the privacy link ourselves */
    .grecaptcha-badge { visibility: hidden; }

    /* ── Email submit button spinner ── */
    .email-btn-spinner {
      width: 18px;
      height: 18px;
      border: 2.5px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: emailSpin 0.7s linear infinite;
      display: inline-block;
      vertical-align: middle;
    }
    @keyframes emailSpin {
      to { transform: rotate(360deg); }
    }

    /* ── Spinner générique wizard ── */
    .pv-spin {
      display: inline-block;
      width: 13px;
      height: 13px;
      border: 2px solid rgba(100,100,100,.25);
      border-top-color: #666;
      border-radius: 50%;
      animation: emailSpin .7s linear infinite;
      vertical-align: middle;
      margin-right: 5px;
    }
    .phone-spin {
      display: inline-block;
      width: 14px;
      height: 14px;
      border: 2px solid rgba(255,255,255,.15);
      border-top-color: rgba(255,255,255,.55);
      border-radius: 50%;
      animation: emailSpin .8s linear infinite;
      vertical-align: middle;
      margin-bottom: 6px;
    }
