/* Demo Page Styling */

.demo-page-wrapper {
    background: #ffffff;
    min-height: 100vh;
}

/* Hero Section */
.demo-hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.demo-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Introduction Section */
.demo-intro {
    padding: 80px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* Why Lawft Section */
.why-lawft {
    padding: 80px 0;
    background: #f8fafc;
}

.why-lawft h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Video Demo Section */
.video-demo {
    padding: 80px 0;
    background: white;
}

.video-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.video-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-intro p {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.demo-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .demo-hero {
        padding: 60px 0 40px;
    }

    .demo-hero h1 {
        font-size: 2.5rem;
    }

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

    .demo-intro,
    .why-lawft,
    .video-demo,
    .demo-cta {
        padding: 60px 0;
    }

    .intro-text {
        font-size: 1.125rem;
    }

    .why-lawft h2,
    .video-intro h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .benefit-card {
        padding: 30px;
    }

    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

    .video-intro {
        margin-bottom: 40px;
    }

    .video-intro p {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .demo-hero h1 {
        font-size: 2rem;
    }

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

    .benefit-card {
        padding: 24px;
    }

    .video-container {
        border-radius: 8px;
    }
}

