/* ComplianceOS Landing Page Styles */
body { padding-top: 56px; }

.hero-section {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #f8f9fa;
    transform: skewY(-2deg);
}
.hero-section h1 { font-size: 3rem; font-weight: 800; }
.hero-section p.lead { font-size: 1.25rem; opacity: 0.9; }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card { transition: transform 0.2s, box-shadow 0.2s; border-radius: 12px; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important; }
.pricing-popular { border: 2px solid #3498db !important; }
.pricing-popular .card-header { background: #3498db !important; color: #fff; }
.price-amount { font-size: 2.5rem; font-weight: 800; }
.price-period { font-size: 0.875rem; color: #666; }

.stat-counter { font-size: 2.5rem; font-weight: 800; color: #3498db; }
.stat-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; color: #666; }

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2rem; }
    .hero-section { padding: 60px 0 50px; }
}
