/* * Custom styles for LegitEBusiness.com
 * Assumes Inter font is loaded in index.html
 * Assumes Tailwind CSS is loaded in index.html
 *<!-- [1] SOCIAL PROOF HTML COMPONENT - MAKE SURE TO PLACE THIS HTML SNIPET IN BODY SECTION OF THE SITE -->
    <div id="social-proof-container">
        <span class="sp-dot"></span>
        <p class="sp-text" id="sp-content"></p>
    </div>
 */
  

/* Social proof generated with Gemini */
   body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%); /* Soft gradient background */
        }
        h1, h2, h3 {
            font-family: 'Poppins', sans-serif;
        }
        .container {
            max-width: 1000px;
        }
        .gradient-text {
            background: linear-gradient(90deg, #1d4ed8, #2563eb); /* Tailwind blue-700 to blue-600 */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .shadow-custom {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .form-card {
            background: #ffffff;
            border: 1px solid #e2e8f0; /* light gray border */
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 15px 40px rgba(29, 78, 216, 0.1); /* Blue-tinted shadow for emphasis */
        }
        .icon-circle {
            background-color: #dbeafe; /* Blue-100 */
            color: #2563eb; /* Blue-600 */
            border-radius: 9999px; /* rounded-full */
            width: 3rem; /* w-12 */
            height: 3rem; /* h-12 */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem; /* text-xl */
        }
        .radio-group label {
            transition: all 0.2s;
            cursor: pointer;
        }
        .radio-group input:checked + span {
            background-color: #2563eb; /* Blue-600 */
            color: white;
            border-color: #1d4ed8;
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.5);
        }
        
        /* === Pulse Animation for CTA Button === */
        @keyframes pulse-aggressive {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); /* Blue-600 */
                transform: scale(1);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
                transform: scale(1.02);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
                transform: scale(1);
            }
        }

        .btn-cta-pulse {
            animation: pulse-aggressive 2s infinite cubic-bezier(0.66, 0, 0, 1);
        }
        /* ======================================= */
    
  
        /* ============================================================ */
        /* [1] SOCIAL PROOF CSS - COPY THIS FOR OTHER SITES            */
        /* ============================================================ */
        #social-proof-container {
            position: fixed;
            bottom: 20px;
            left: -450px; /* Hidden state */
            background: white;
            padding: 14px 24px;
            border-radius: 50px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
            display: flex;
            align-items: center;
            z-index: 9999;
            border: 1px solid #e2e8f0;
            transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            min-width: 320px;
            pointer-events: none;
        }
        #social-proof-container.show { left: 20px; pointer-events: auto; }
        .sp-dot {
            height: 10px; width: 10px;
            background-color: #10b981;
            border-radius: 50%;
            display: inline-block;
            margin-right: 14px;
            animation: sp-pulse-green 2s infinite;
        }
        @keyframes sp-pulse-green {
            0% { box-shadow: 0 0 0 0px rgba(16, 185, 129, 0.7); }
            70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0px rgba(16, 185, 129, 0); }
        }
        .sp-text { font-size: 14px; color: #374151; margin: 0; font-family: 'Inter', sans-serif; }
        .sp-bold { font-weight: 700; color: #111827; }
        /* ============================================================ */
  
/* Add any custom utility classes or overrides here */