/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0e0e13;
    color: #fffaea;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Banner */
.banner {
    background: linear-gradient(90deg, #62f6b5 0%, #4ade80 100%);
    color: #09090b;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: #09090b;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fffaea;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.navbar-brand .logo i {
    font-size: 24px;
    color: #62f6b5;
}

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

.nav-links a {
    color: #d8d7d4;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #62f6b5;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cta-button {
    background: #62f6b5;
    color: #09090b;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #4ade80;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(98, 246, 181, 0.2);
}

.hero-intro h4 {
    color: #62f6b5;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #d8d7d4;
}

.hero-section h1 {
    font-size: 96px;
    font-weight: 400;
    line-height: 96px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fffaea 0%, #62f6b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #62f6b5;
    color: #09090b;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    background: #4ade80;
    transform: translateY(-2px);
    color: #09090b;
}

.btn-secondary {
    background: transparent;
    color: #fffaea;
    padding: 12px 24px;
    border: 1px solid #d8d7d4;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fffaea;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Audio Visualization */
.hero-visual {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.audio-bars {
    display: flex;
    gap: 4px;
    align-items: end;
    height: 60px;
}

.bar {
    width: 8px;
    height: var(--height);
    background: var(--color);
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes pulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.talk-button {
    margin: 40px 0;
}

.talk-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #d8d7d4;
    color: #fffaea;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.talk-btn:hover {
    background: rgba(98, 246, 181, 0.1);
    border-color: #62f6b5;
}

/* Clients Section */
.clients-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    flex-wrap: wrap;
    opacity: 0.6;
}

.client-placeholder {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #d8d7d4;
}

/* Value Proposition Section */
.value-prop-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.colorful-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-dots {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    width: 300px;
    height: 300px;
}

.dot {
    width: 20px;
    height: 20px;
    background: var(--color);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    border-left: 4px solid #62f6b5;
}

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

.section-label {
    display: inline-block;
    background: rgba(98, 246, 181, 0.1);
    color: #62f6b5;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 68px;
    font-weight: 400;
    line-height: 76px;
    margin-bottom: 20px;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d8d7d4;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(98, 246, 181, 0.1);
    border-color: #62f6b5;
    color: #62f6b5;
}

.tab-content {
    display: none;
    text-align: center;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.stat i {
    color: #62f6b5;
    font-size: 20px;
}

.case-study-btn,
.try-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-study-btn {
    color: #62f6b5;
    font-weight: 600;
}

.case-study-btn:hover {
    color: #4ade80;
}

.try-now-btn {
    background: #62f6b5;
    color: #09090b;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.try-now-btn:hover {
    background: #4ade80;
    color: #09090b;
}

.testimonial {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
}

.testimonial h4 {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    color: #fffaea;
}

.testimonial-author {
    color: #d8d7d4;
    font-size: 14px;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.integration-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.integration-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #d8d7d4;
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: rgba(98, 246, 181, 0.1);
    color: #62f6b5;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.step {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(98, 246, 181, 0.05);
    border-color: rgba(98, 246, 181, 0.2);
}

.step-number {
    color: #62f6b5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 48px;
    color: #62f6b5;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

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

/* Features Section */
.features-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(98, 246, 181, 0.05);
    border-color: rgba(98, 246, 181, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: #62f6b5;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.feature p {
    color: #d8d7d4;
    line-height: 1.6;
}

/* Enterprise Section */
.enterprise-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.enterprise-titles {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.enterprise-titles h2 {
    font-size: 68px;
    font-weight: 400;
    line-height: 76px;
    background: linear-gradient(135deg, #fffaea 0%, #62f6b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.enterprise-feature {
    text-align: center;
    padding: 40px 20px;
}

.enterprise-feature .feature-icon {
    font-size: 48px;
    color: #62f6b5;
    margin-bottom: 20px;
}

.enterprise-feature h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.enterprise-feature p {
    color: #d8d7d4;
    line-height: 1.6;
}

/* Pricing Preview Section */
.pricing-preview-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #62f6b5;
    background: rgba(98, 246, 181, 0.05);
}

.pricing-card:hover {
    background: rgba(98, 246, 181, 0.05);
    border-color: rgba(98, 246, 181, 0.3);
}

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

.price {
    font-size: 48px;
    font-weight: 700;
    color: #62f6b5;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: #d8d7d4;
    font-weight: 400;
}

.pricing-card p {
    color: #d8d7d4;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    color: #62f6b5;
    border: 1px solid #62f6b5;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #62f6b5;
    color: #09090b;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fffaea;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fffaea;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #62f6b5;
    background: rgba(98, 246, 181, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-success {
    background: rgba(98, 246, 181, 0.1);
    border: 1px solid #62f6b5;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.success-content i {
    font-size: 48px;
    color: #62f6b5;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.success-content p {
    color: #d8d7d4;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fffaea;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #62f6b5;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #d8d7d4;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fffaea;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-logo .logo i {
    font-size: 24px;
    color: #62f6b5;
}

.footer-brand p {
    color: #d8d7d4;
    line-height: 1.6;
}

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

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fffaea;
}

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

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

.footer-section ul li a {
    color: #d8d7d4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #62f6b5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #d8d7d4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 48px;
        line-height: 52px;
    }
    
    .section-header h2 {
        font-size: 36px;
        line-height: 40px;
    }
    
    .enterprise-titles h2 {
        font-size: 36px;
        line-height: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .value-prop-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enterprise-titles {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 32px;
        line-height: 36px;
    }
    
    .section-header h2 {
        font-size: 28px;
        line-height: 32px;
    }
    
    .enterprise-titles h2 {
        font-size: 28px;
        line-height: 32px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .hero-intro {
        padding: 20px;
    }
}
