/**
 * Landing Page Specific Styles
 * Custom styles unique to the landing page
 * 
 * These styles enhance the landing page experience with custom
 * hero sections, feature cards, and CTA elements that differ
 * from the standard unified design system.
 */

/* ============================================
   Hero Section - Landing Specific
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 60vh;
}

/* ============================================
   Feature Cards - Enhanced Hover for Landing Page
   Uses card-modern as base, adds landing-specific enhancements
   ============================================ */
.features-section .card-modern {
    border-radius: 1.5rem !important;
    overflow: hidden;
}

.features-section .card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* ============================================
   Simple Cards - How It Works Section
   ============================================ */
.simple-card {
    transition: all 0.3s ease;
}

.simple-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.simple-card ol {
    padding-left: 1.5rem;
}

.simple-card li {
    line-height: 1.8;
}

/* ============================================
   CTA Box - Landing Specific Gradient
   ============================================ */
.cta-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%) !important;
    border: 2px solid rgba(13, 110, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h3 {
    color: #2c3e50;
}

/* ============================================
   Trust Indicators
   ============================================ */
.trust-item {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

/* ============================================
   Responsive Adjustments - Landing Specific
   ============================================ */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-box {
        padding: 2rem !important;
    }

    .simple-card {
        margin-bottom: 1.5rem;
    }
}
