.phone-dash-background {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background: #f8faff;
      gap: 28px;
      position: relative;
      overflow: hidden;
      padding: 30px 20px;
      width: 100%;
    }

    /* subtle gradient glow */
    .phone-dash-background::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle at 20% 30%, rgba(99,102,241,0.06) 0%, transparent 70%);
      top: -100px;
      left: -100px;
      z-index: 0;
      pointer-events: none;
    }

    .phone-dash-background::after {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle at 80% 70%, rgba(59,130,246,0.05) 0%, transparent 70%);
      bottom: -80px;
      right: -80px;
      z-index: 0;
      pointer-events: none;
    }

    /* ===== TITLE ===== */
    .phone-dash-text-header {
      font-weight: 900;
      font-size: 2.4rem;
      color: #0b1124;
      font-family: "Nunito", sans-serif;
      letter-spacing: -0.02em;
      position: relative;
      z-index: 2;
      text-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }

    .phone-dash-text-header span {
      background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .phone-dash-text-bottom {
      max-width: 560px;
      text-align: center;
      font-size: 1.05rem;
      line-height: 1.7;
      color: #334155;
      font-weight: 500;
      letter-spacing: 0.01em;
      padding: 0 16px;
      font-family: "Nunito", sans-serif;
      position: relative;
      z-index: 2;
      background: rgba(255,255,255,0.4);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      padding: 14px 28px;
      border-radius: 60px;
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    }

    /* ===== PHONE FRAME — enhanced ===== */
    .phone {
      width: 210px;
      height: 420px;
      background: #0b1124;
      border-radius: 30px;
      position: relative;
      box-shadow: 
        0 30px 80px rgba(15, 23, 42, 0.20),
        0 0 0 1px rgba(255,255,255,0.08) inset,
        0 0 0 1px rgba(0,0,0,0.06);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 2;
    }

    .phone:hover {
      transform: scale(1.01);
      box-shadow: 0 40px 100px rgba(15, 23, 42, 0.25);
    }

    .phone::after {
      content: "";
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 40%;
      height: 4px;
      background: #1e293b;
      border-radius: 999px;
      z-index: 10;
      opacity: 0.6;
    }

    /* ===== NOTCH ===== */
    .phone-notch {
      width: 40%;
      height: 18px;
      background: #0b1124;
      border-radius: 30px;
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .phone-notch::before {
      content: "";
      position: absolute;
      width: 12%;
      aspect-ratio: 1/1;
      background: #1e293b;
      border-radius: 50%;
      top: 50%;
      left: 14%;
      transform: translateY(-50%);
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.05);
    }

    .phone-notch::after {
      content: "";
      position: absolute;
      width: 8%;
      aspect-ratio: 1/0.6;
      background: #1e293b;
      border-radius: 12px;
      top: 50%;
      right: 14%;
      transform: translateY(-50%);
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.05);
    }

    /* ===== SCREEN ===== */
    .phone-screen {
      width: 100%;
      height: 100%;
      background: #ffffff;
      border-radius: 30px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phone-screen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 0.4s ease;
    }

    /* ===== FLOATING BADGE — refined ===== */
    .floating-badge {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.8rem 1.2rem;
      border-radius: 28px;
      z-index: 30;
      animation: floaty 5s ease-in-out infinite;
      transition: transform 0.25s ease, box-shadow 0.3s ease;
      cursor: default;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.7);
      box-shadow: 0 16px 40px -12px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.3) inset;
    }

    .floating-badge:hover {
      transform: scale(1.02) translateY(-4px);
      box-shadow: 0 24px 48px -12px rgba(0,0,0,0.25);
    }

    @keyframes floaty {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }

    /* different delays */
    .badge-top {
      top: 50%;
      left: 5%;
      animation-delay: 0.6s;
    }

    .badge-bottom {
      bottom: 28%;
      right: 5%;
      animation-delay: 1.8s;
    }

    /* ===== ICON ===== */
    .badge-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.5);
      box-shadow: 0 4px 8px rgba(0,0,0,0.02);
    }

    .blue-icon {
      background: linear-gradient(135deg, #eff6ff, #dbeafe);
      border: 1px solid rgba(59,130,246,0.2);
      color: #2563eb;
    }

    .indigo-icon {
      background: linear-gradient(135deg, #eef2ff, #e0e7ff);
      border: 1px solid rgba(99,102,241,0.2);
      color: #4f46e5;
    }

    /* ===== TEXT ===== */
    .badge-title {
      color: #0b1124;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .badge-sub {
      color: #475569;
      font-size: 0.7rem;
      font-weight: 600;
      opacity: 0.7;
      letter-spacing: 0.02em;
    }

    /* small screen adjust */
    @media (max-width: 500px) {
      .phone-dash-text-header {
        font-size: 1.8rem;
      }
      .phone-dash-text-bottom {
        font-size: 0.9rem;
        padding: 12px 20px;
        max-width: 90%;
      }
      .phone {
        width: 170px;
        height: 340px;
      }
      .floating-badge {
        padding: 0.5rem 0.8rem;
        gap: 0.5rem;
        border-radius: 20px;
      }
      .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
      }
      .badge-title {
        font-size: 0.7rem;
      }
      .badge-sub {
        font-size: 0.6rem;
      }
      .badge-top {
        top: 22%;
        left: 5%;
      }
      .badge-bottom {
        bottom: 29%;
        right: 5%;
      }
    }

    /* extra modern micro-detail */
    .phone-dash-background .phone-screen img {
      filter: brightness(1.02) contrast(1.02);
    }

    /* subtle shine on phone */
    .phone::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06) 0%, transparent 60%);
      pointer-events: none;
      z-index: 5;
      border-radius: 40px;
    }

    /* better badge spacing */
    .floating-badge > div {
      display: flex;
      flex-direction: column;
      line-height: 1.3;
    }

    /* remove old .floating-ui-badge specific, merged into .floating-badge */
    .floating-ui-badge {
      /* all styles merged into .floating-badge */
    }