/* =====================================
   HIGH-CONVERSION LANDING PAGE STYLES
   ===================================== */

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #1F2937;
    --light: #F9FAFB;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1F2937;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1rem 0;
}

.brand-gradient {
    background: linear-gradient(135deg, var(--primary), #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== HERO SECTION ===== */
.bg-gradient-light {
    background: linear-gradient(135deg, #F0F4FF 0%, #FFFFFF 50%);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
}

/* Stats */
.stats-row {
    margin-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.floating-metric {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.metric-1 {
    top: 10%;
    right: -5%;
}

.metric-2 {
    bottom: 10%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== LOGO BAR ===== */
.company-logo {
    font-weight: 700;
    color: #9CA3AF;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

/* ===== PROBLEM CARDS ===== */
.problem-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #FEE2E2;
    height: 100%;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ===== STEP CARDS ===== */
.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #06B6D4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-icons i {
    font-size: 2rem;
    margin: 0 0.5rem;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #F3F4F6;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.9rem;
}

/* ===== BENEFITS LIST ===== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #F0FDF4;
}

.benefit-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== FINAL CTA ===== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* ===== ACCORDION ===== */
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(79, 70, 229, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(79, 70, 229, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1F2937, #111827);
}

.text-light-muted {
    color: #9CA3AF;
    text-decoration: none;
}

.text-light-muted:hover {
    color: #818CF8;
}

/* ===== UTILITY CLASSES ===== */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .floating-metric {
        position: relative;
        margin: 1rem 0;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    body {
        padding-bottom: 5rem;
    }
}

@media (max-width: 767px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PERFORMANCE ===== */
img {
    max-width: 100%;
    height: auto;
}

.btn {
    cursor: pointer;
}

a {
    transition: all 0.2s ease;
}
