/* MediaFlowStudio Product Page CSS */
/* Optimized for inline conversion and modern design */

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

/* Screenshot Stats Styles */
.screenshot-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin: 1rem 0 1.25rem;
}

.stat-item {
    flex: 0 1 180px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
    border-color: var(--accent-border);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}

.stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: #94a3b8;
    letter-spacing: 0.3px;
}

@media (max-width: 600px) {
    .screenshot-stats {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .stat-item {
        flex: 1 1 140px;
        padding: 0.85rem 1rem;
    }
    .stat-number {
        font-size: 1.6rem;
    }
}

:root {
    /* Blender orange accent system */
    --accent: #EA7600;
    --accent-weak: rgba(234,118,0,0.10);
    --accent-border: rgba(234,118,0,0.30);
}

/* Utility classes */
.text-center {
    text-align: center;
}

.accent {
    color: var(--accent);
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    width: 100%;
}

/* Header styles */
.header {
    text-align: center;
    padding: 3rem 0 4rem;
    background: var(--accent-weak);
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.subtitle {
    font-size: 1.4rem;
    color: #cbd5e1;
    font-weight: 300;
}

/* Section styles */
section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.section-headline {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.icon-spacing {
    margin-right: 0.75rem;
}

/* Intro section */
.intro-section {
    padding: 2rem 0;
}

.intro {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #e2e8f0;
    line-height: 1.8;
}

.promo {
    background: var(--accent);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 10px 30px var(--accent-border);
    border: 2px solid rgba(255,255,255,0.1);
}

.hero-container {
    background: var(--accent-weak);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-container {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-container h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Responsive video adjustments */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 2rem 1rem;
    }
    
    .video-container {
        padding: 1rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .hero-content h3 {
        font-size: 1.8rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-container iframe {
        height: 200px;
    }
    
    .video-container h4 {
        font-size: 1.1rem;
    }
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.problem-box, .solution-box {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.problem-box {
    border-left: 4px solid var(--accent);
}

.solution-box {
    border-left: 4px solid var(--accent);
}

/* Problem & Solution refinements */
.section-title i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.problem-box p,
.solution-box p {
    margin-top: 0.75rem;
    color: #e2e8f0;
}

.problem-box .highlight,
.solution-box .highlight {
    font-weight: 700;
}

.problem-box,
.solution-box {
    background: rgba(234,118,0,0.04);
}

.highlight {
    color: #EA7600;
    font-weight: 600;
}

/* Features section */
.framed-section {
    background: rgba(255,255,255,0.02);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--accent-border);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-desc {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Processing Modes section */
.modes-section {
    padding: 2rem 0;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.mode-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: var(--accent-border);
}

.mode-card:hover::before {
    opacity: 1;
}

.mode-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mode-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mode-desc {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mode-features li {
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mode-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1rem;
}

.mode-features li:last-child {
    margin-bottom: 0;
}

/* Audience section */
.audience-section {
    padding: 2rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.audience-card {
    background: var(--accent-weak);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-3px);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.audience-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Interface section */
.interface-section {
    background: rgba(255,255,255,0.02);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.interface-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.interface-mockup {
    background: #1a202c;
    border-radius: 10px;
    border: 2px solid #4a5568;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mockup-header {
    background: var(--accent);
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-content {
    padding: 1.5rem;
}

.mockup-section {
    margin-bottom: 1.5rem;
}

.mockup-section h4 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.mockup-item {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 0.75rem;
    margin: 0.25rem 0;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.mockup-search {
    background: var(--accent-weak);
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--accent);
    border: 1px solid var(--accent-border);
}

.mockup-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.thumb {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.interface-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #4ecdc4;
    margin-right: 0.75rem;
}

/* Workflow section */
.workflow-section {
    padding: 2rem 0;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
}

.workflow-step {
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 100%;
    margin: 1rem 0;
}

.step-number {
    background: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.workflow-arrow {
    font-size: 2rem;
    color: var(--accent);
    margin: 1rem 0;
}

/* Benefits section */
.benefits-section {
    background: var(--accent-weak);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
}

.benefit-stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: #cbd5e1;
    font-weight: 500;
}

/* Requirements section */
.requirements-section {
    padding: 2rem 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.req-column {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.req-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.req-column ul {
    list-style: none;
}

.req-column li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.req-column li:last-child {
    border-bottom: none;
}

/* Testimonials section */
.testimonials-section {
    background: rgba(255,255,255,0.02);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #e2e8f0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: #ffffff;
    font-weight: 600;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* CTA section */
.cta-section {
    background: var(--accent);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    border: 2px solid rgba(255,255,255,0.1);
    color: #0f172a; /* dark text on orange */
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.cta-subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(15,23,42,0.85);
}

.cta-buttons {
    display: flex;
    gap: 1rem; /* space between buttons only */
    justify-content: space-evenly; /* no side spacing */
    padding: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.primary {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid rgba(0,0,0,0.1);
    backdrop-filter: blur(6px);
}

.cta-button.primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-button.secondary {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid rgba(0,0,0,0.1);
}

.cta-button.secondary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.cta-guarantee {
    color: rgba(15,23,42,0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-content p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 0.5rem 1rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .interface-container {
        grid-template-columns: fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Screenshot Grid Styles */
.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.screenshot-container {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.screenshot-container h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.interface-screenshot {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 2px solid var(--accent-border);
    margin-bottom: 1rem;
}

.screenshot-desc {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}



/* Responsive screenshot adjustments */
@media (max-width: 768px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .screenshot-container {
        padding: 1.5rem;
    }
    
    .screenshot-container h3 {
        font-size: 1.2rem;
    }
}
