/* ==========================================================================
   --- LEAFUP DIGITAL INNOVATIONS - WEBSITE DESIGN PROMO LANDING PAGE CSS ---
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #05070c;
    color: #e2e8f0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Minimal Conversion Top Bar */
.top-conversion-bar {
    background-color: rgba(5, 7, 12, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Ambient Atmosphere */
.promo-hero-glow {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 60% at 75% 25%, rgba(16, 185, 129, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 20% 70%, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: glowShift 10s ease-in-out infinite alternate;
}

@keyframes glowShift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.05) translate(-2%, 2%); }
}

/* Call to action button animation */
.promo-cta-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.promo-cta-btn:hover::after {
    left: 100%;
}

/* Standout Feature Cards */
.feature-card-standout {
    background: #090e1a;
    color: #ffffff;
    border: 1px solid #1e293b;
    border-radius: 24px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px -10px rgba(9, 14, 26, 0.25);
    position: relative;
    overflow: hidden;
}

.feature-card-standout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #00f29d);
}

.feature-card-standout:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
}

/* Pricing Cards */
.promo-package-card {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}

.promo-package-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.12);
}

.promo-package-popular {
    background: #090e1a;
    color: #ffffff;
    border: 2px solid #10b981;
    border-radius: 24px;
    transition: all 0.35s ease;
    box-shadow: 0 25px 50px -12px rgba(9, 14, 26, 0.4);
}

.promo-package-popular:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(16, 185, 129, 0.28);
}

/* Pulse Animation for urgent badges */
@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.animate-urgent {
    animation: urgentPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
