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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expertise-badge {
    background: #F5A623;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
}

.crisis-stats {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff4444;
    border-radius: 10px;
    padding: 15px;
    margin: 20px auto 30px auto;
    max-width: 600px;
    text-align: center;
}

.crisis-stats p {
    margin: 0;
    color: white;
    font-size: 1rem;
    line-height: 1.4;
}

.crisis-stats p:first-child {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Hero Section - Dark Background */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
    border: 1px solid #4a4a4a;
}

.assessment-embed {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.cta-button {
    background: #4A90E2;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
}

.cta-button:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trust-indicator {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* Social Proof Banner */
.social-proof {
    background: #f8f9fa;
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.social-proof-title {
    text-align: center;
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.logo-scroll {
    display: flex;
    animation: scroll 20s linear infinite;
    align-items: center;
    gap: 60px;
}

.logo-item {
    flex-shrink: 0;
    color: #718096;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Subtle badge for contextual notes (e.g., "formerly") next to a logo */
.logo-note {
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 9999px;
    background: #edf2f7;
    color: #4a5568;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pain Points Section - Light Background */
.pain-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Styles */
.timeline-section {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
    text-align: center;
}

.timeline-title {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #F5A623;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 25px;
    margin: 0 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #F5A623;
    text-align: center;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: center;
}

.timeline-step {
    background: #F5A623;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    min-width: 180px;
    text-align: center;
}

.timeline-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-marker {
    display: none;
}

.proskauer-banner {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #F5A623;
    margin: 40px 0;
    text-align: center;
}

.proskauer-banner h3 {
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.proskauer-banner p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 10px 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pain-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #4A90E2;
    /* Equal-height cards within each grid row */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pain-card h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pain-card p {
    color: #4a5568;
    line-height: 1.7;
    /* Fill remaining space to balance card heights */
    flex-grow: 1;
}

/* Mobile tweaks for spacing and readability */
@media (max-width: 640px) {
    .pain-section {
        padding: 60px 0;
    }
    .pain-grid {
        gap: 20px;
    }
    .pain-card {
        padding: 20px;
    }
    .pain-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
}

/* Testimonial Section - Light Background */
.testimonial {
    background: #f7f7f7;
    padding: 80px 0;
}

.testimonial .container {
    max-width: 900px;
}

.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.4;
}

.testimonial cite {
    color: #718096;
    font-weight: 600;
}

/* Competitive Section - Dark Background */
.competitive-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
    color: white;
}

.competitive-section .section-header h2 {
    color: white;
}

.competitive-section .section-header p {
    color: white;
    opacity: 0.9;
}

.vs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vs-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #4a4a4a;
    transition: all 0.3s ease;
}

.vs-card:hover {
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.vs-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.vs-card ul {
    list-style: none;
}

.vs-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.vs-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
}

/* Final CTA Section - Dark Background */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.urgency-box {
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid #4A90E2;
    border-radius: 15px;
    padding: 30px;
    margin: 30px auto;
    max-width: 600px;
}

.urgency-box p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .expertise-badge {
        margin-bottom: 20px;
    }

    .crisis-stats {
        margin: 15px auto 20px auto;
        padding: 12px;
    }

    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial blockquote {
        font-size: 1.2rem;
    }

    .vs-grid {
        grid-template-columns: 1fr;
    }
}
