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

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

/* Banner */
.banner-notification {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.banner-content {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.btn-close-banner {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-close-banner:hover {
    color: #ffffff;
}

/* Header */
.main-header {
    background-color: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.logo-icon i {
    color: #000;
    font-size: 20px;
}

.logo-text {
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: #cccccc !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ff88 !important;
}

.nav-link.active {
    color: #00ff88 !important;
}

.cta-button {
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    color: #000;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-intro {
    margin-bottom: 3rem;
}

.hero-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
}

.hero-intro p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-actions {
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    color: #000;
}

.btn-outline-light {
    border: 2px solid #333;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #333;
    border-color: #555;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-cta-widget {
    margin-top: 2rem;
}

.btn-cta-widget {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-cta-widget:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Audio Visualizer */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.audio-visualizer {
    position: relative;
}

.visualizer-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 300px;
}

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

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

.bar:nth-child(1) { --i: 1; }
.bar:nth-child(2) { --i: 2; }
.bar:nth-child(3) { --i: 3; }
.bar:nth-child(4) { --i: 4; }
.bar:nth-child(5) { --i: 5; }
.bar:nth-child(6) { --i: 6; }
.bar:nth-child(7) { --i: 7; }
.bar:nth-child(8) { --i: 8; }
.bar:nth-child(9) { --i: 9; }
.bar:nth-child(10) { --i: 10; }
.bar:nth-child(11) { --i: 11; }
.bar:nth-child(12) { --i: 12; }
.bar:nth-child(13) { --i: 13; }
.bar:nth-child(14) { --i: 14; }
.bar:nth-child(15) { --i: 15; }
.bar:nth-child(16) { --i: 16; }
.bar:nth-child(17) { --i: 17; }
.bar:nth-child(18) { --i: 18; }
.bar:nth-child(19) { --i: 19; }
.bar:nth-child(20) { --i: 20; }

/* Company Logos */
.company-logos {
    padding: 60px 0;
    border-bottom: 1px solid #1a1a1a;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    color: #666;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.section-label {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-content .lead {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

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

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

@keyframes dotPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Use Cases Section */
.use-cases-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tab-buttons {
    margin-bottom: 3rem;
}

.tab-btn {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    padding: 20px;
    margin-bottom: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    color: #000;
    border-color: transparent;
    transform: translateX(10px);
}

.tab-pane {
    display: none;
}

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

.tab-pane h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.tab-pane p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.tab-pane ul {
    list-style: none;
    padding: 0;
}

.tab-pane li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.tab-pane li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.tab-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.chart-representation {
    width: 300px;
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 20px;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

/* Integration Section */
.integration-section {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.section-header {
    margin-bottom: 4rem;
}

.integration-grid {
    margin-top: 3rem;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.integration-item i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.integration-item span {
    font-weight: 600;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-label {
    color: #cccccc;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00ff88;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
    color: #ffffff;
}

.form-control::placeholder {
    color: #888;
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
}

.thank-you-message i {
    font-size: 4rem;
    color: #00ff88;
}

.thank-you-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.thank-you-message p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 60px 0 30px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #cccccc;
    margin-top: 1rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #00ff88;
}

.footer-divider {
    border-color: #1a1a1a;
    margin: 2rem 0;
}

.copyright {
    color: #888;
    margin: 0;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-plans {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.pricing-card.featured {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.plan-subtitle {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
}

.price-unit {
    color: #cccccc;
    font-size: 1rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-category h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category li {
    padding: 0.5rem 0;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.feature-category li i {
    color: #00ff88;
    margin-right: 0.5rem;
    width: 16px;
}

.feature-value {
    color: #00ff88;
    font-weight: 600;
}

.plan-action {
    margin-top: auto;
}

.btn-outline-primary {
    border: 2px solid #00ff88;
    color: #00ff88;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #00ff88;
    color: #000;
    transform: translateY(-2px);
}

/* ROI Calculator */
.roi-calculator {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.calculator-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.calculator-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.calculator-results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.accordion-button {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    background: transparent;
    color: #cccccc;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-intro h2 {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .visualizer-bars {
        height: 200px;
    }
    
    .bar {
        width: 8px;
        gap: 4px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-content h2,
    .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .logos-grid {
        justify-content: center;
        text-align: center;
    }
    
    .logo-item {
        font-size: 1rem;
    }
    
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .calculator-wrapper {
        padding: 2rem;
    }
    
    .result-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-intro h2 {
        font-size: 1.3rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .integration-item {
        padding: 1.5rem;
    }
    
    .integration-item i {
        font-size: 2rem;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .calculator-wrapper {
        padding: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.legal-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.last-updated {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
}

.contact-info a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-wrapper {
        padding: 2rem;
    }
    
    .legal-wrapper h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .legal-wrapper {
        padding: 1.5rem;
    }
    
    .legal-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}
