:root {
    --background-color: #0a0a0a;
    --text-color: #e0e0e0;
    --primary-accent: #00ffff;
    --secondary-accent: #9747FF;
    --container-bg: #121212;
    --font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    animation: fadeInDown 1s ease-in-out;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-accent);
    letter-spacing: -2px;
    transition: text-shadow 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 10px var(--primary-accent);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-accent);
    text-shadow: 0 0 5px var(--primary-accent);
}

nav a:hover::after {
    width: 100%;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 50px 0;
}

.hero-text {
    max-width: 50%;
    animation: fadeInLeft 1.5s ease-in-out;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -3px;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 10px 0;
    color: var(--primary-accent);
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(224, 224, 224, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-accent), 0 0 30px var(--secondary-accent);
}

.hero-visual {
    width: 45%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.features {
    padding: 100px 0;
    text-align: center;
}

.features h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(224, 224, 224, 0.8);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.feature {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: left;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 1.8rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature p {
    font-weight: 300;
    line-height: 1.7;
    color: rgba(224, 224, 224, 0.9);
}

.enterprise {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.02), rgba(151, 71, 255, 0.02));
}

.enterprise h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

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

.enterprise-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(15px);
    text-align: left;
}

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

.enterprise-card h3 {
    font-size: 1.5rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
    font-weight: 700;
}

.enterprise-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: rgba(224, 224, 224, 0.9);
}

.testimonial-author {
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.6);
    font-weight: 500;
}

.vision {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('https://images.unsplash.com/photo-1511377117364-c1f67351b241?q=80&w=2070') no-repeat center center/cover;
}

.vision h2 {
    font-size: 3.5rem;
    font-weight: 900;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.2;
}

.vision p {
    font-size: 1.5rem;
    color: var(--primary-accent);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.4;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.vision-stat {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.vision-stat h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-accent);
    margin: 0 0 10px 0;
}

.vision-stat p {
    font-size: 1rem;
    margin: 0;
    color: rgba(224, 224, 224, 0.8);
    font-weight: 300;
}

.pricing {
    padding: 100px 0;
    text-align: center;
}

.pricing h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.pricing .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 50px;
}

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

.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-accent);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), 0 0 60px rgba(0, 255, 255, 0.2);
}

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

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(224, 224, 224, 0.7);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li i {
    font-size: 1.2rem;
}

.pricing-card ul li .fa-check {
    color: var(--primary-accent);
}

.pricing-card ul li .fa-times {
    color: #ff4d4d;
}

.pricing-card .cta-button {
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.pricing-card .cta-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.demo {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.02), rgba(151, 71, 255, 0.02));
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.demo h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-accent);
}

.demo .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.demo-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.table-container {
    flex: 3;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 400px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.table-container:hover {
    border-color: var(--primary-accent);
}

/* Custom scrollbar styling */
.table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 4px;
    transition: all 0.3s ease;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, var(--secondary-accent), var(--primary-accent));
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.table-container::-webkit-scrollbar-corner {
    background: rgba(255, 255, 255, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    table-layout: fixed;
    min-width: 1600px;
}

th, td {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

th {
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 255, 255, 0.05);
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 2;
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: rgba(0, 255, 255, 0.05);
}

tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.01);
}

td {
    font-size: 0.8rem;
    color: rgba(224, 224, 224, 0.9);
}

td:first-child {
    font-weight: 600;
    color: var(--primary-accent);
}

/* Set specific column widths for better alignment */
th:nth-child(1), td:nth-child(1) { width: 100px; } /* CLIENTNUM */
th:nth-child(2), td:nth-child(2) { width: 120px; } /* Attrition_Flag */
th:nth-child(3), td:nth-child(3) { width: 80px; }  /* Customer_Age */
th:nth-child(4), td:nth-child(4) { width: 60px; }  /* Gender */
th:nth-child(5), td:nth-child(5) { width: 100px; } /* Dependent_count */
th:nth-child(6), td:nth-child(6) { width: 120px; } /* Education_Level */
th:nth-child(7), td:nth-child(7) { width: 100px; } /* Marital_Status */
th:nth-child(8), td:nth-child(8) { width: 120px; } /* Income_Category */
th:nth-child(9), td:nth-child(9) { width: 80px; }  /* Card_Category */
th:nth-child(10), td:nth-child(10) { width: 100px; } /* Months_on_book */
th:nth-child(11), td:nth-child(11) { width: 140px; } /* Total_Relationship_Count */
th:nth-child(12), td:nth-child(12) { width: 140px; } /* Months_Inactive_12_mon */
th:nth-child(13), td:nth-child(13) { width: 140px; } /* Contacts_Count_12_mon */
th:nth-child(14), td:nth-child(14) { width: 100px; } /* Credit_Limit */
th:nth-child(15), td:nth-child(15) { width: 120px; } /* Total_Revolving_Bal */
th:nth-child(16), td:nth-child(16) { width: 120px; } /* Avg_Open_To_Buy */
th:nth-child(17), td:nth-child(17) { width: 140px; } /* Total_Amt_Chng_Q4_Q1 */
th:nth-child(18), td:nth-child(18) { width: 120px; } /* Total_Trans_Amt */
th:nth-child(19), td:nth-child(19) { width: 100px; } /* Total_Trans_Ct */
th:nth-child(20), td:nth-child(20) { width: 140px; } /* Total_Ct_Chng_Q4_Q1 */
th:nth-child(21), td:nth-child(21) { width: 140px; } /* Avg_Utilization_Ratio */

.upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

#csv-upload {
    display: none;
}

.upload-container .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#file-name {
    font-weight: 300;
    color: var(--text-color);
}

.audio-player-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audio-player {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.audio-visualizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(151, 71, 255, 0.05) 0%, transparent 50%);
}

.audio-player:hover {
    border-color: var(--primary-accent);
    transform: translateY(-2px);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.play-button {
    background: linear-gradient(145deg, var(--primary-accent), var(--secondary-accent));
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 255, 255, 0.3);
    flex-shrink: 0;
}

.play-button i {
    color: #000;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

.track-info {
    flex: 1;
    text-align: left;
}

.track-info h4 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-accent);
}

.track-info p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(224, 224, 224, 0.8);
    line-height: 1.4;
}

footer {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.9), rgba(10, 10, 10, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: var(--primary-accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    display: block;
    color: rgba(224, 224, 224, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    margin: 0;
    font-weight: 300;
    color: rgba(224, 224, 224, 0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(224, 224, 224, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-accent);
}

/* Animations */
@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 150px; }
}

@keyframes pulse {
    from {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
    }
    to {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse-width {
    0%, 100% { 
        width: 100px; 
        opacity: 1; 
    }
    50% { 
        width: 150px; 
        opacity: 0.7; 
    }
}

@keyframes pulse-line {
    0%, 100% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scaleY(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scaleY(1.2); 
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scan {
    0%, 100% { 
        transform: translateX(-100%); 
        opacity: 0; 
    }
    50% { 
        transform: translateX(0%); 
        opacity: 1; 
    }
}

/* Demo section entrance animations */
.demo-container {
    animation: slideInUp 1s ease-out 0.5s both;
}

.table-container {
    animation: slideInLeft 1s ease-out 0.7s both;
}

.audio-player-container {
    animation: slideInRight 1s ease-out 0.9s both;
}

.audio-player:nth-child(1) {
    animation: slideInRight 1s ease-out 1.1s both;
}

.audio-player:nth-child(2) {
    animation: slideInRight 1s ease-out 1.3s both;
}

.audio-player:nth-child(3) {
    animation: slideInRight 1s ease-out 1.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual {
        width: 80%;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .demo {
        padding: 80px 0;
    }

    .demo h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .demo .subtitle {
        font-size: 1.2rem;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .demo .subtitle::before,
    .demo .subtitle::after {
        display: none;
    }

    .demo-container {
        flex-direction: column;
        gap: 30px;
    }

    .demo-container::before {
        display: none;
    }

    .table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px;
        max-height: 350px;
    }

    .table-container::after {
        font-size: 0.6rem;
        top: 10px;
        right: 15px;
        padding: 3px 6px;
    }

    table {
        min-width: 800px;
        font-size: 0.8rem;
    }

    th, td {
        padding: 12px 10px;
        font-size: 0.75rem;
    }

    th {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .audio-player-container {
        gap: 15px;
    }

    .audio-player {
        padding: 20px;
    }

    .player-controls {
        gap: 15px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .play-button i {
        font-size: 1.4rem;
    }

    .track-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .track-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat {
        align-items: center;
        text-align: center;
    }

    .features h2, .pricing h2, .vision h2, .enterprise h2 {
        font-size: 2.5rem;
    }

    .feature-grid, .pricing-grid, .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .vision-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-content {
        padding: 0 10px;
    }

    .footer-bottom {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .demo {
        padding: 60px 0;
    }

    .demo h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .demo .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 15px;
        line-height: 1.5;
    }

    .demo-container {
        gap: 20px;
    }

    .table-container {
        padding: 15px;
        max-height: 300px;
        border-radius: 15px;
    }

    .table-container::after {
        font-size: 0.5rem;
        top: 8px;
        right: 10px;
        padding: 2px 4px;
    }

    table {
        min-width: 600px;
        font-size: 0.7rem;
    }

    th, td {
        padding: 8px 6px;
        font-size: 0.65rem;
    }

    th {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    .audio-player-container {
        gap: 12px;
    }

    .audio-player {
        padding: 15px;
        border-radius: 15px;
    }

    .player-controls {
        gap: 12px;
        flex-direction: row;
        align-items: center;
    }

    .play-button {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .play-button i {
        font-size: 1.2rem;
    }

    .track-info {
        flex: 1;
        min-width: 0;
    }

    .track-info h4 {
        font-size: 0.95rem;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .track-info p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }

    .vision h2 {
        font-size: 2.5rem;
    }

    .vision p {
        font-size: 1.2rem;
    }

    nav {
        display: none; /* Simple solution for now, could be replaced with a hamburger menu */
    }

    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .container {
        width: 95%;
        padding: 10px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .demo h2 {
        font-size: 1.8rem;
    }

    .demo .subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .table-container {
        padding: 10px;
        max-height: 250px;
    }

    table {
        min-width: 500px;
        font-size: 0.6rem;
    }

    th, td {
        padding: 6px 4px;
        font-size: 0.55rem;
    }

    .audio-player {
        padding: 12px;
    }

    .player-controls {
        gap: 10px;
    }

    .play-button {
        width: 45px;
        height: 45px;
    }

    .play-button i {
        font-size: 1rem;
    }

    .track-info h4 {
        font-size: 0.85rem;
    }

    .track-info p {
        font-size: 0.7rem;
    }

    .container {
        width: 98%;
        padding: 5px;
    }
}
