.moyd-plan-notif {
      position: fixed;
      left: 20px;
      top: 30%;
      z-index: 99999;
      width: 320px;
      background: #273351;
      border: 1px solid rgba(91, 159, 189, 0.3);
      border-radius: 14px;
      padding: 20px 20px 18px;
      font-family: -apple-system, BlinkMacSystemFont, 'Montserrat', 'Segoe UI', sans-serif;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(91, 159, 189, 0.1);
      transform: translateX(calc(-100% - 40px));
      opacity: 0;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
      overflow: hidden;
    }

    .moyd-plan-notif::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #5B9FBD, #A9CCE1);
      z-index: 1;
    }

    .moyd-plan-notif.visible {
      transform: translateX(0);
      opacity: 1;
    }

    .moyd-plan-notif.dismissed {
      transform: translateX(calc(-100% - 40px));
      opacity: 0;
      pointer-events: none;
    }

    .moyd-plan-notif-close {
      position: absolute;
      top: 10px;
      right: 12px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      padding: 2px 6px;
      font-size: 16px;
      line-height: 1;
      transition: color 0.2s ease;
      z-index: 2;
    }

    .moyd-plan-notif-close:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    .moyd-plan-notif-label {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #5B9FBD;
      margin-bottom: 8px;
    }

    .moyd-plan-notif-title {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .moyd-plan-notif-desc {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.45;
      margin-bottom: 16px;
    }

    .moyd-plan-notif-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(91, 159, 189, 0.15);
      color: #A9CCE1;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 9px 18px;
      border-radius: 999px;
      border: 1px solid rgba(91, 159, 189, 0.25);
      transition: all 0.2s ease;
    }

    .moyd-plan-notif-cta:hover {
      background: rgba(91, 159, 189, 0.25);
      border-color: rgba(91, 159, 189, 0.5);
      color: #fff;
      text-decoration: none;
      transform: translateY(-1px);
    }

    .moyd-plan-notif-cta svg {
      width: 12px;
      height: 12px;
      transition: transform 0.2s ease;
    }

    .moyd-plan-notif-cta:hover svg {
      transform: translateX(2px);
    }

    @media (max-width: 767px) {
      .moyd-plan-notif {
        width: calc(100% - 24px);
        left: 12px;
        top: auto;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        border-radius: 10px;
        padding: 12px 36px 12px 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
      }

      .moyd-plan-notif::before {
        height: 2px;
      }

      .moyd-plan-notif-close {
        top: 6px;
        right: 6px;
        font-size: 14px;
        padding: 2px 5px;
      }

      .moyd-plan-notif-label {
        display: none;
      }

      .moyd-plan-notif-desc {
        display: none;
      }

      .moyd-plan-notif-title {
        font-size: 13px;
        font-weight: 700;
        margin: 0;
        flex: 1;
        min-width: 0;
      }

      .moyd-plan-notif-cta {
        font-size: 9px;
        padding: 7px 12px;
        flex-shrink: 0;
        letter-spacing: 0.06em;
      }

      .moyd-plan-notif.visible {
        transform: translateY(0);
      }

      .moyd-plan-notif {
        transform: translateY(calc(100% + 40px));
      }

      .moyd-plan-notif.dismissed {
        transform: translateY(calc(100% + 40px));
      }
    }
  

/* Contact page capture head rule (harmless globally) */
.grecaptcha-badge { visibility: hidden; }
