/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066FF;
    --secondary-color: #00D4FF;
    --dark-color: #0A0E27;
    --light-color: #F8F9FF;
    --text-color: #333;
    --text-light: #666;
    --success-color: #00C851;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.primary-button {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

.secondary-button {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button {
    background: var(--gradient);
    color: white;
    font-size: 14px;
    padding: 10px 25px;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.vmix-logo {
    height: 60px;
    width: auto;
}

.integration-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 20px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: var(--text-light);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 100px 0;
    background: white;
}

.problem-solution h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    font-size: 18px;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-color);
}

.features h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
    line-height: 1.8;
}

.feature-partner-logo {
    height: 40px;
    width: auto;
    margin-top: 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.feature:hover .feature-partner-logo {
    opacity: 1;
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background: white;
}

.use-cases h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.use-case {
    padding: 30px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
}

.use-case:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.use-case h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: var(--light-color);
}

.demo h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card {
    max-width: 500px;
    margin: 60px auto;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
}

.pricing-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.price {
    font-size: 72px;
    font-weight: bold;
    color: var(--primary-color);
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.features-list li {
    padding: 10px 0;
    font-size: 18px;
}

.guarantee {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.comparison {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
}

.comparison h4 {
    margin-bottom: 20px;
}

.comparison p {
    margin: 10px 0;
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light-color);
}

.faq h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Download CTA */
.download-cta {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.download-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.download-cta p {
    font-size: 20px;
    margin-bottom: 40px;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.download-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    min-width: 150px;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.os-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.os-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.download-button:hover .os-icon svg {
    transform: scale(1.1);
}

.os-icon.linux-text {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, monospace;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.download-button:hover .os-icon.linux-text {
    transform: scale(1.1);
}

.secure-checkout {
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-color);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
    }
}