/* Features Showcase Styles */

.features-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF5F1 0%, #FFFFFF 50%, #FFF8F5 100%);
}

.showcase-header {
    text-align: center;
    margin-bottom: 64px;
}

.showcase-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-header p {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Sections */
.feature-section {
    padding: 60px 0;
}

.feature-section.alt-bg {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    margin: 0 -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.section-badge.community {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-badge.crime {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.section-badge.ai {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* Features Grid */
.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card-alt {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.feature-card-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ffc107 50%, var(--primary-orange) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-card-alt:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 117, 31, 0.2);
}

.feature-icon-large {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 117, 31, 0.3));
}

.feature-card-alt h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-orange-dark);
}

.feature-card-alt p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

/* Features CTA */
.features-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ff751f 0%, #ff9a56 50%, #ff751f 100%);
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: 0 20px 60px rgba(255, 117, 31, 0.4);
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.features-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.features-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 16px 40px;
    background: white;
    color: var(--primary-orange);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    padding: 16px 40px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-orange);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(180deg, #e3f2fd 0%, #f1f8ff 100%);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(66, 133, 244, 0.2);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(255, 117, 31, 0.3);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.social-proof h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-orange);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 117, 31, 0.15);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.author {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradient 8s ease infinite;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.btn-final-cta {
    display: inline-block;
    padding: 20px 48px;
    background: white;
    color: #667eea;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.btn-final-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-header h2 {
        font-size: 28px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .features-grid-alt {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}
