
    /* Clean Minimalism Theme styles */
    .glass {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }
    .hero-gradient {
      background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 50%), radial-gradient(circle at 100% 100%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    }
    .card-shadow {
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    }
    .mockup-border {
      border: 8px solid #1e293b;
      border-radius: 12px;
    }
    html {
      scroll-behavior: smooth;
    }
    /* Simple custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f5f9;
    }
    ::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #94a3b8;
    }
    .floating-cta {
      position: fixed;
      left: 50%;
      bottom: 24px;
      z-index: 45;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 9999px;
      background: #2563eb;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
      transform: translate(-50%, 120px);
      transition: transform .35s cubic-bezier(.16, 1, .3, 1), background-color .2s;
    }
    .floating-cta.is-visible {
      transform: translate(-50%, 0);
    }
    .floating-cta:hover {
      background: #1d4ed8;
    }
    @media (max-width: 480px) {
      .floating-cta {
        bottom: 16px;
        width: calc(100% - 32px);
        justify-content: center;
      }
    }
  