/*
Theme Name: Music Mix Pro
Theme URI: https://musicmixpro.com
Author: Music Mix Pro Team
Author URI: https://musicmixpro.com
Description: A neo-futuristic WordPress theme for Music Mix Pro - Learn music production from fundamentals to advanced mixing.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: musicmixpro
Tags: dark, music, education, woocommerce, one-page
*/

/* ========================================
   CSS Variables - Neo-Futuristic Theme
   ======================================== */
:root {
    /* Neon Colors */
    --neon-cyan: #00f5ff;
    --neon-magenta: #ff00ff;
    --neon-purple: #bf00ff;
    --neon-pink: #ff0080;
    --neon-blue: #0080ff;
    
    /* Dark Colors */
    --dark-50: #f0f0f5;
    --dark-100: #e0e0ea;
    --dark-200: #c0c0d5;
    --dark-300: #9090b0;
    --dark-400: #606080;
    --dark-500: #404060;
    --dark-600: #303050;
    --dark-700: #202040;
    --dark-800: #151528;
    --dark-900: #0a0a18;
    --dark-950: #050510;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--dark-950);
    color: white;
    line-height: 1.6;
    background-image: 
        radial-gradient(ellipse at top, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

::selection {
    background: rgba(0, 245, 255, 0.3);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text-neo {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 40px rgba(0, 245, 255, 0.3);
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ========================================
   Components - Cards
   ======================================== */
.card-neo {
    background: linear-gradient(135deg, rgba(10, 10, 24, 0.9) 0%, rgba(20, 20, 40, 0.8) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(32, 32, 64, 0.5);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.card-neo:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
}

/* ========================================
   Components - Buttons
   ======================================== */
.btn-solid-neo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 50%, var(--neon-magenta) 100%);
    color: var(--dark-950);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.btn-solid-neo:hover {
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.5), 0 0 80px rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
}

.btn-neo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-neo:hover {
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4), 0 0 60px rgba(255, 0, 255, 0.2);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* ========================================
   Components - Neo Border/Glow
   ======================================== */
.neo-border {
    border: 1px solid rgba(0, 245, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.1), inset 0 0 10px rgba(0, 245, 255, 0.02);
}

.neo-glow {
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.3),
        0 0 40px rgba(0, 245, 255, 0.1),
        inset 0 0 20px rgba(0, 245, 255, 0.05);
}

/* ========================================
   Grid Background
   ======================================== */
.grid-bg {
    background-size: 50px 50px;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
}

/* ========================================
   Header
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(32, 32, 64, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-magenta));
    padding: 1px;
}

.logo-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.site-logo:hover .logo-icon-inner {
    background: var(--dark-800);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--neon-cyan);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.main-nav a {
    color: var(--dark-300);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--neon-cyan);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.header-actions .sign-in {
    color: var(--dark-300);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-actions .sign-in:hover {
    color: white;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--dark-300);
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(32, 32, 64, 0.5);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark-300);
    font-weight: 500;
}

.mobile-nav a:hover {
    color: var(--neon-cyan);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 11rem 0 8rem;
    }
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: 25%;
    left: -8rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 245, 255, 0.2);
    border-radius: 50%;
    filter: blur(128px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 25%;
    right: -8rem;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 0, 255, 0.2);
    border-radius: 50%;
    filter: blur(128px);
}

.hero-glow-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(191, 0, 255, 0.1);
    border-radius: 50%;
    filter: blur(128px);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(10, 10, 24, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--neon-cyan);
}

.hero-badge span {
    font-size: 0.875rem;
    color: var(--dark-200);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--dark-300);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .hero-description { font-size: 1.25rem; }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    color: var(--dark-400);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.hero-stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--dark-700);
}

/* ========================================
   Waveform Player
   ======================================== */
.waveform-player {
    margin-top: 5rem;
    position: relative;
}

.waveform-card {
    padding: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.waveform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.waveform-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.waveform-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--neon-magenta);
    animation: pulse 2s infinite;
}

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

.waveform-filename {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--dark-400);
}

.waveform-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.waveform-time .current {
    color: var(--neon-cyan);
}

.waveform-time .total {
    color: var(--dark-500);
}

.waveform-bars {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.waveform-bar {
    width: 4px;
    background: linear-gradient(to top, var(--neon-cyan), var(--neon-magenta));
    border-radius: 9999px;
    animation: waveform 1s ease-in-out infinite;
}

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

.waveform-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.waveform-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--dark-800);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.waveform-btn:hover {
    color: var(--neon-cyan);
}

.waveform-btn-play {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: var(--dark-950);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.waveform-btn-play:hover {
    transform: scale(1.05);
    color: var(--dark-950);
}

.waveform-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(32, 32, 64, 0.5);
}

.waveform-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.waveform-volume svg {
    width: 1rem;
    height: 1rem;
    color: var(--dark-500);
}

.volume-bar {
    width: 6rem;
    height: 6px;
    background: var(--dark-800);
    border-radius: 9999px;
    overflow: hidden;
}

.volume-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-magenta));
    border-radius: 9999px;
}

.waveform-bpm {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--dark-500);
}

.waveform-bpm .bpm-value {
    color: var(--neon-cyan);
}

.waveform-bpm .time-sig {
    color: var(--neon-magenta);
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    position: relative;
    padding: 5rem 0 8rem;
}

@media (min-width: 1024px) {
    .features-section { padding: 8rem 0; }
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 3rem; }
}

.section-description {
    font-size: 1.125rem;
    color: var(--dark-300);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    padding: 1.5rem;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    padding: 1px;
    margin-bottom: 1.25rem;
}

.feature-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-icon-inner {
    background: var(--dark-800);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--dark-400);
    line-height: 1.6;
}

/* Gradient backgrounds for feature icons */
.gradient-cyan-blue { background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue)); }
.gradient-magenta-pink { background: linear-gradient(135deg, var(--neon-magenta), var(--neon-pink)); }
.gradient-purple-magenta { background: linear-gradient(135deg, var(--neon-purple), var(--neon-magenta)); }
.gradient-cyan-purple { background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple)); }
.gradient-pink-magenta { background: linear-gradient(135deg, var(--neon-pink), var(--neon-magenta)); }
.gradient-blue-cyan { background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan)); }

/* ========================================
   Learning Tracks Section
   ======================================== */
.tracks-section {
    position: relative;
    padding: 5rem 0 8rem;
    background: rgba(10, 10, 24, 0.3);
}

@media (min-width: 1024px) {
    .tracks-section { padding: 8rem 0; }
}

.tracks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .tracks-grid { grid-template-columns: repeat(3, 1fr); }
}

.track-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.track-card:hover {
    transform: scale(1.02);
}

.track-gradient-bar {
    height: 4px;
}

.track-content {
    padding: 1.5rem;
}

.track-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.track-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    padding: 1px;
}

.track-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    background: var(--dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.track-badge {
    padding: 0.25rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 0, 255, 0.2);
    color: var(--neon-magenta);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 9999px;
}

.track-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.track-description {
    color: var(--dark-400);
    margin-bottom: 1.5rem;
}

.track-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.track-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--dark-300);
}

.track-meta-item svg {
    width: 1rem;
    height: 1rem;
}

.track-meta-item svg.cyan {
    color: var(--neon-cyan);
}

.track-meta-item svg.magenta {
    color: var(--neon-magenta);
}

.track-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.track-skill {
    padding: 0.25rem 0.75rem;
    background: rgba(21, 21, 40, 0.8);
    border: 1px solid var(--dark-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--dark-300);
}

.track-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(32, 32, 64, 0.5);
}

.track-modules {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--dark-400);
}

.track-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.track-price {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

.track-original-price {
    font-size: 1.125rem;
    color: var(--dark-500);
    text-decoration: line-through;
}

.track-savings {
    font-size: 0.875rem;
    color: var(--neon-cyan);
    font-weight: 500;
}

.track-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-btn-primary {
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple), var(--neon-magenta));
    color: var(--dark-950);
}

.track-btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.track-btn-secondary {
    background: var(--dark-800);
    color: white;
    border: 1px solid var(--dark-700);
}

.track-btn-secondary:hover {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

/* ========================================
   Studio Demo Section
   ======================================== */
.studio-section {
    position: relative;
    padding: 5rem 0 8rem;
}

@media (min-width: 1024px) {
    .studio-section { padding: 8rem 0; }
}

.studio-card {
    max-width: 56rem;
    margin: 0 auto;
    overflow: hidden;
}

.studio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(21, 21, 40, 0.5);
    border-bottom: 1px solid rgba(32, 32, 64, 0.5);
}

.studio-dots {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.studio-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.studio-dot.magenta { background: var(--neon-magenta); }
.studio-dot.yellow { background: #eab308; }
.studio-dot.cyan { background: var(--neon-cyan); }

.studio-title {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--dark-400);
    margin-left: 0.75rem;
}

.studio-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-cyan);
}

.studio-live svg {
    width: 1rem;
    height: 1rem;
    animation: pulse 2s infinite;
}

.studio-content {
    padding: 1.5rem;
}

.mixer-channels {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mixer-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.channel-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--dark-500);
    margin-bottom: 0.5rem;
}

.channel-fader {
    position: relative;
    width: 8px;
    height: 8rem;
    background: var(--dark-800);
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.fader-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 9999px;
    background: linear-gradient(to top, var(--neon-cyan), var(--neon-magenta));
}

.fader-handle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1rem;
    height: 0.5rem;
    background: white;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.channel-meter {
    display: flex;
    gap: 2px;
    height: 4rem;
    align-items: flex-end;
}

.meter-bar {
    width: 4px;
    border-radius: 9999px;
    background: linear-gradient(to top, var(--neon-cyan), var(--neon-cyan), var(--neon-magenta));
}

.channel-knob {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--dark-700);
    border: 2px solid var(--dark-600);
    margin-top: 0.5rem;
    position: relative;
}

.knob-indicator {
    position: absolute;
    top: 4px;
    left: 50%;
    width: 2px;
    height: 0.5rem;
    background: var(--neon-cyan);
    border-radius: 9999px;
    transform-origin: bottom center;
}

.studio-transport {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(32, 32, 64, 0.5);
}

.transport-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--dark-800);
    border: 1px solid var(--dark-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.transport-btn:hover {
    color: var(--neon-cyan);
    border-color: rgba(0, 245, 255, 0.5);
}

.transport-btn-play {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    border: none;
    color: var(--dark-950);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.transport-btn-play:hover {
    transform: scale(1.05);
    color: var(--dark-950);
}

.transport-btn-record:hover {
    color: var(--neon-magenta);
    border-color: rgba(255, 0, 255, 0.5);
}

.studio-note {
    text-align: center;
    color: var(--dark-400);
    margin-top: 1.5rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    position: relative;
    padding: 5rem 0 8rem;
    background: rgba(10, 10, 24, 0.3);
}

@media (min-width: 1024px) {
    .testimonials-section { padding: 8rem 0; }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    padding: 1.5rem;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    fill: var(--neon-cyan);
    color: var(--neon-cyan);
}

.testimonial-content {
    color: var(--dark-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 245, 255, 0.3);
}

.testimonial-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: white;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--dark-400);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    position: relative;
    padding: 5rem 0 8rem;
}

@media (min-width: 1024px) {
    .faq-section { padding: 8rem 0; }
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(21, 21, 40, 0.3);
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    padding-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--neon-cyan);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-text {
    padding: 0 1.5rem 1.25rem;
    color: var(--dark-300);
    line-height: 1.6;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: 5rem 0 8rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cta-section { padding: 8rem 0; }
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 245, 255, 0.05), rgba(191, 0, 255, 0.05), rgba(255, 0, 255, 0.05));
}

.cta-glow-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 245, 255, 0.2);
    border-radius: 50%;
    filter: blur(128px);
}

.cta-glow-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 0, 255, 0.2);
    border-radius: 50%;
    filter: blur(128px);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .cta-title { font-size: 3rem; }
}

.cta-description {
    font-size: 1.125rem;
    color: var(--dark-300);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 24, 0.5);
    border: 1px solid rgba(32, 32, 64, 0.5);
    border-radius: 9999px;
}

.cta-benefit svg {
    width: 1rem;
    height: 1rem;
    color: var(--neon-cyan);
}

.cta-benefit span {
    font-size: 0.875rem;
    color: var(--dark-200);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    color: var(--dark-400);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: rgba(10, 10, 24, 0.5);
    border-top: 1px solid rgba(32, 32, 64, 0.5);
    padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
    .site-footer { padding: 4rem 0; }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(6, 1fr); }
}

.footer-brand {
    grid-column: span 2;
}

.footer-description {
    color: var(--dark-400);
    max-width: 20rem;
    margin-top: 1rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--dark-400);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(32, 32, 64, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--dark-400);
    font-size: 0.875rem;
}

.footer-tagline {
    color: var(--dark-500);
    font-size: 0.875rem;
}

/* ========================================
   Utility Classes
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   WooCommerce Overrides
   ======================================== */
.woocommerce-content {
    color: var(--dark-300);
}

.woocommerce-content a {
    color: var(--neon-cyan);
}

.woocommerce-content a:hover {
    color: var(--neon-magenta);
}

.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 50%, var(--neon-magenta) 100%);
    color: var(--dark-950);
    font-family: var(--font-display);
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover {
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.woocommerce-message,
.woocommerce-info {
    background: rgba(0, 245, 255, 0.1);
    border-left-color: var(--neon-cyan);
    color: var(--dark-200);
}

.woocommerce-error {
    background: rgba(255, 0, 128, 0.1);
    border-left-color: var(--neon-pink);
    color: var(--dark-200);
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-600);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 245, 255, 0.5);
}
