/* --- Marketing Content Expansion --- */

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

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

body.darkmode .section-subtitle {
    color: #ccc;
}

/* --- Use Cases (Infinite Possibilities) --- */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.darkmode .use-case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.darkmode .use-case-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.use-case-icon {
    font-size: 2.5rem;
}

.use-case-info h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.use-case-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

body.darkmode .use-case-info p {
    color: #aaa;
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.darkmode .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.stars {
    color: #FFD700;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 700;
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FAQ (Accordion style) --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0;
}

body.darkmode .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: default;
    /* For now static */
}

.faq-answer {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

body.darkmode .faq-answer {
    color: #aaa;
}

/* Section Spacing overrides */
.app__section {
    margin-bottom: 120px;
}

/* Demo Section Workflow List (Clean Typographic) */
.demo-workflow-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    /* Subtle timeline line */
    padding-left: 24px;
}

body.darkmode .demo-workflow-list {
    border-left-color: rgba(255, 255, 255, 0.1);
}

.demo-workflow-list li {
    font-size: 1.15rem;
    margin-bottom: 32px;
    position: relative;
    padding: 0;
    background: transparent;
    /* No more cards */
    border: none;
    box-shadow: none;
    color: var(--text-color);
    line-height: 1.5;
}

/* Bullet Point Accent */
.demo-workflow-list li::before {
    content: "";
    position: absolute;
    left: -29px;
    /* Align with border center */
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-color);
    /* Cutout effect */
}

body.darkmode .demo-workflow-list li::before {
    box-shadow: 0 0 0 4px var(--bg-color);
}

/* Hover Effect - Subtle Slide */
.demo-workflow-list li:hover {
    transform: translateX(5px);
    background: transparent;
    box-shadow: none;
}

.demo-workflow-list li strong {
    color: var(--primary);
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

body.darkmode .demo-workflow-list li strong {
    color: #a27afe;
}

/* Viral CTA Button */
.app__button-viral {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF5E5E 0%, #8751FE 100%);
    color: white !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(135, 81, 254, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-viral 2s infinite;
}

.app__button-viral:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(135, 81, 254, 0.6);
}

@keyframes pulse-viral {
    0% {
        box-shadow: 0 0 0 0 rgba(135, 81, 254, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(135, 81, 254, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(135, 81, 254, 0);
    }
}

/* App Demo Video */
.app-demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Border radius removed to let wrapper clip it */
    z-index: 1;
    position: relative;
    pointer-events: none;
    display: block;
}

/* Ensure wrapper holds the aspect ratio and structure */
.app-demo-wrapper {
    overflow: hidden;
    /* Force clipping for iframes in some browsers */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}