    :root {
        --bg-color: #0a0a0a;
        --card-bg: #111111;
        --text-primary: #ffffff;
        --text-secondary: #a0a0a0;
        --accent-color: #7c3aed;
        --accent-hover: #6d28d9;
        --border-color: #222222;
        --highlight-color: #1a1a1a;
        --gradient-start: #7c3aed;
        --gradient-end: #4f46e5;
    }

    @font-face {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiA.woff2) format('woff2');
    }

    @font-face {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fAZ9hiA.woff2) format('woff2');
    }

    @font-face {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 600;
        src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYAZ9hiA.woff2) format('woff2');
    }

    @font-face {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 700;
        src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYAZ9hiA.woff2) format('woff2');
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background-color: var(--bg-color);
        color: var(--text-primary);
        margin: 0;
        padding: 0;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    /* Background effects */
    .bg-effects {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }

    .gradient-circle {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.15;
    }

    .circle-1 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, #7c3aed, #4f46e5);
        top: -300px;
        left: -300px;
    }

    .circle-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, #4f46e5, #7c3aed);
        bottom: -200px;
        right: -100px;
    }

    .grid-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
    }

    /* Header */
    header {
        padding: 20px 0;
        position: relative;
        z-index: 10;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--text-primary);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 14px;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
        font-size: 15px;
    }

    .nav-links a:hover {
        color: var(--text-primary);
    }

    .auth-buttons {
        display: flex;
        gap: 15px;
    }

    .btn {
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-block;
        font-size: 15px;
    }

    .btn-outline {
        border: 1px solid var(--border-color);
        color: var(--text-primary);
        background: transparent;
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .btn-primary {
        background-color: var(--accent-color);
        color: white;
        border: none;
    }

    .btn-primary:hover {
        background-color: var(--accent-hover);
    }

    /* Hero section */
    .hero {
        padding: 100px 0 150px;
        text-align: center;
        position: relative;
    }

    .hero h1 {
        font-size: 64px;
        font-weight: 700;
        line-height: 1.1;
        margin: 0 auto 30px;
        max-width: 900px;
        background: linear-gradient(to right, #fff, #c7d2fe);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 20px;
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto 50px;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 70px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }

    .btn-secondary {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--text-primary);
        border: none;
    }

    .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .hero-image {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
        z-index: 1;
    }

    /* Features section */
    .features {
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-header h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 18px;
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .feature-card {
        background-color: var(--card-bg);
        border-radius: 12px;
        padding: 30px;
        border: 1px solid var(--border-color);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: white;
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-card p {
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.7;
    }

    /* Customers section */
    .customers {
        padding: 80px 0;
        background-color: var(--highlight-color);
        position: relative;
        overflow: hidden;
    }

    .customers .section-header {
        margin-bottom: 50px;
    }

    .logos-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        align-items: center;
    }

    .logo-item {
        opacity: 0.7;
        transition: opacity 0.3s;
        filter: brightness(0) invert(1);
    }

    .logo-item:hover {
        opacity: 1;
    }

    .logo-item img {
        height: 30px;
        width: auto;
        max-width: 150px;
    }

    /* CTA section */
    .cta {
        padding: 120px 0;
        text-align: center;
        position: relative;
    }

    .cta h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta p {
        font-size: 18px;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto 40px;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    /* Footer */
    footer {
        background-color: var(--highlight-color);
        padding: 60px 0 40px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
    }

    .footer-logo .logo {
        margin-bottom: 20px;
    }

    .footer-logo p {
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        color: var(--text-secondary);
        font-size: 18px;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: var(--text-primary);
    }

    .footer-links h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--text-primary);
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 15px;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--text-primary);
    }

    .footer-bottom {
        border-top: 1px solid var(--border-color);
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright {
        color: var(--text-secondary);
        font-size: 14px;
    }

    .legal-links {
        display: flex;
        gap: 20px;
    }

    .legal-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: var(--text-primary);
    }

    /* Responsive styles */
    @media (max-width: 1024px) {
        .hero h1 {
            font-size: 52px;
        }

        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .hero h1 {
            font-size: 42px;
        }

        .hero p {
            font-size: 18px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 36px;
        }

        .section-header h2 {
            font-size: 32px;
        }

        .cta h2 {
            font-size: 32px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    .transcription_logo img {
        width: 150px;
    }


    /* Solutions Section */
.solutions {
    padding: 100px 0;
    background-color: var(--highlight-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 20px;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    position: relative;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 1px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.features-list li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Docs Section */
.docs {
    padding: 100px 0;
    background-color: var(--highlight-color);
}

.docs-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.docs-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.docs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.docs-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.docs-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.docs-cta {
    text-align: center;
}

/* Responsive styles for new sections */
@media (max-width: 1024px) {
    .solutions-grid,
    .pricing-plans,
    .docs-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid,
    .pricing-plans,
    .docs-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Section offset for fixed header */
section {
    scroll-margin-top: 100px;
}
    