/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === COLORS === */
:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --bg-dark: #0f0f23;
    --bg-darker: #0a0a1a;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --text-white: #f8fafc;
    --green: #10b981;
    --red: #ef4444;
    --border: #e5e7eb;
    --card-bg: #f8fafc;
}

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-bars { display: flex; align-items: end; gap: 2px; height: 18px; margin-left: 10px; }
.logo-bars i {
    display: block; width: 3px; border-radius: 2px;
    background: var(--primary);
    animation: logoBars 0.9s ease-in-out infinite alternate;
}
.logo-bars i:nth-child(1) { height: 6px; animation-delay: 0s; }
.logo-bars i:nth-child(2) { height: 14px; animation-delay: 0.12s; }
.logo-bars i:nth-child(3) { height: 8px; animation-delay: 0.24s; }
.logo-bars i:nth-child(4) { height: 16px; animation-delay: 0.36s; }
.logo-bars i:nth-child(5) { height: 10px; animation-delay: 0.48s; }
@keyframes logoBars {
    0% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0.5); }
}
.logo:hover .logo-icon { animation: logoPulse 0.5s ease; }
.logo-icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), #9333ea);
    border-radius: 10px;
    animation: logoFloat 3s ease-in-out infinite;
    box-shadow: 0 2px 12px rgba(124,58,237,0.3);
}
.logo-text { font-size: 1.85rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.logo-accent { color: var(--primary); }
.section-dark .logo-text { color: white; }
.footer .logo-text { color: white; }
@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-2deg); }
    75% { transform: translateY(2px) rotate(2deg); }
}
@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15) rotate(8deg); }
    100% { transform: scale(1); }
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-light); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

/* Mobile menu */
.mobile-menu-btn {
    display: none; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer; color: var(--text); padding: 4px;
}
.mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
    background: white; border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 16px 24px 24px; gap: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-10px); opacity: 0; transition: all 0.3s;
    pointer-events: none;
}
.mobile-menu.open {
    display: flex; transform: translateY(0); opacity: 1; pointer-events: all;
}
.mobile-menu a { font-size: 1.05rem; font-weight: 500; color: var(--text); padding: 8px 0; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 24px; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
    transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: white; }
.nav .btn-primary { background: var(--primary); color: white; font-weight: 700; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(124,58,237,0.3); }
.btn-outline { border: 2px solid var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.nav .btn-outline { color: var(--text); border-color: var(--border); }
.nav .btn-primary { color: white; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* === HERO === */
.hero {
    padding: 140px 24px 80px;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    min-height: 100vh;
}
.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: rgba(124,58,237,0.1); color: var(--primary);
    font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.5px; }
.highlight { color: var(--primary); }
.hero-subtitle { font-size: 1.2rem; color: var(--text-light); margin-bottom: 32px; max-width: 520px; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin-bottom: 40px; }
.hero-note { font-size: 0.85rem; color: var(--text-light); }
.hero-counters { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.hero-counter { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.counter-number, .counter-number-static {
    font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1;
}
.counter-plus { font-size: 1rem; font-weight: 800; color: var(--primary); }
.counter-label { font-size: 0.85rem; color: var(--text-light); }
.hero-counter-sep { color: var(--text-light); font-size: 1.2rem; padding: 0 16px; }

/* === PLAYER MOCKUP === */
.player-mockup {
    background: var(--bg-dark); border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.player-header {
    padding: 12px 16px; display: flex; gap: 8px;
    background: rgba(255,255,255,0.05);
}
.player-dot { width: 12px; height: 12px; border-radius: 50%; }
.player-dot.red { background: #ff5f57; }
.player-dot.yellow { background: #febc2e; }
.player-dot.green { background: #28c840; }
.player-content { padding: 32px; }
.player-now-playing { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.player-art {
    width: 64px; height: 64px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.player-info { display: flex; flex-direction: column; }
.player-title { color: white; font-weight: 600; font-size: 1.1rem; }
.player-artist { color: var(--primary-light); font-size: 0.85rem; margin-top: 4px; }
.player-wave { display: flex; align-items: end; gap: 3px; height: 64px; margin-bottom: 16px; }
.wave-bar {
    flex: 1; background: linear-gradient(to top, var(--primary), var(--primary-light)); border-radius: 3px;
    animation: waveAnim 1.2s ease-in-out infinite alternate;
    min-height: 4px;
}
.wave-bar:nth-child(1) { animation-delay: 0s; height: 35%; }
.wave-bar:nth-child(2) { animation-delay: 0.08s; height: 65%; }
.wave-bar:nth-child(3) { animation-delay: 0.16s; height: 45%; }
.wave-bar:nth-child(4) { animation-delay: 0.24s; height: 80%; }
.wave-bar:nth-child(5) { animation-delay: 0.32s; height: 55%; }
.wave-bar:nth-child(6) { animation-delay: 0.4s; height: 95%; }
.wave-bar:nth-child(7) { animation-delay: 0.48s; height: 40%; }
.wave-bar:nth-child(8) { animation-delay: 0.56s; height: 70%; }
.wave-bar:nth-child(9) { animation-delay: 0.64s; height: 50%; }
.wave-bar:nth-child(10) { animation-delay: 0.72s; height: 88%; }
.wave-bar:nth-child(11) { animation-delay: 0.8s; height: 35%; }
.wave-bar:nth-child(12) { animation-delay: 0.88s; height: 60%; }
.wave-bar:nth-child(13) { animation-delay: 0.96s; height: 75%; }
.wave-bar:nth-child(14) { animation-delay: 1.04s; height: 42%; }
.wave-bar:nth-child(15) { animation-delay: 0.05s; height: 90%; }
.wave-bar:nth-child(16) { animation-delay: 0.13s; height: 55%; }
.wave-bar:nth-child(17) { animation-delay: 0.21s; height: 68%; }
.wave-bar:nth-child(18) { animation-delay: 0.29s; height: 82%; }
.wave-bar:nth-child(19) { animation-delay: 0.37s; height: 38%; }
.wave-bar:nth-child(20) { animation-delay: 0.45s; height: 72%; }
.wave-bar:nth-child(21) { animation-delay: 0.53s; height: 58%; }
.wave-bar:nth-child(22) { animation-delay: 0.61s; height: 85%; }
.wave-bar:nth-child(23) { animation-delay: 0.69s; height: 48%; }
.wave-bar:nth-child(24) { animation-delay: 0.77s; height: 65%; }
@keyframes waveAnim {
    0% { transform: scaleY(0.4); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.6); opacity: 0.8; }
}
.player-progress { margin-bottom: 20px; }
.player-progress-bar { width: 100%; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.player-progress-fill { width: 37%; height: 100%; background: var(--primary-light); border-radius: 2px; }
.player-times { display: flex; justify-content: space-between; margin-top: 6px; }
.player-times span { font-size: 0.7rem; color: #64748b; }
.player-controls { display: flex; justify-content: center; gap: 32px; }
.control { color: white; font-size: 1.5rem; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.control:hover { opacity: 1; }
.control.play { font-size: 2rem; opacity: 1; color: var(--primary-light); }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-dark); color: var(--text-white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.section-header p { font-size: 1.15rem; color: var(--text-light); }
.section-dark .section-header p { color: #94a3b8; }

/* === COMPARISON === */
.comparison-table { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.comparison-card {
    padding: 40px 32px; border-radius: 16px; position: relative;
}
.comparison-card.bad { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.comparison-card.good {
    background: rgba(124,58,237,0.1); border: 2px solid var(--primary);
    box-shadow: 0 8px 40px rgba(124,58,237,0.2);
}
.comparison-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.price-tag { font-size: 2.2rem; font-weight: 800; margin-bottom: 24px; }
.price-tag span { font-size: 1rem; font-weight: 400; color: #94a3b8; }
.comparison-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.comparison-card li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.negative::before { content: '✕'; color: var(--red); font-weight: 700; }
.positive::before { content: '✓'; color: var(--green); font-weight: 700; }
.badge-popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white; padding: 4px 16px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
}

/* === STEPS === */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; padding: 32px; }
.step-number {
    width: 56px; height: 56px; border-radius: 50%; background: var(--primary);
    color: white; font-size: 1.4rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step p { color: var(--text-light); font-size: 0.95rem; }

/* === FEATURES SHOWCASE (tabs + visual) === */
.features-showcase {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
    background: linear-gradient(135deg, var(--primary), #9333ea, var(--primary-dark));
    border-radius: 24px; padding: 48px; position: relative;
    box-shadow: 0 20px 60px rgba(124,58,237,0.25);
    overflow: hidden;
}
.features-showcase::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.features-showcase::after {
    content: ''; position: absolute; bottom: -30%; left: -10%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.features-tabs { display: flex; flex-direction: column; gap: 0; }
.feature-tab {
    display: flex; align-items: flex-start; gap: 16px; padding: 24px 20px;
    background: none; border: none; border-left: 3px solid rgba(255,255,255,0.2);
    text-align: left; cursor: pointer; transition: all 0.3s; font-family: inherit;
    position: relative; z-index: 1;
}
.feature-tab:hover { background: rgba(255,255,255,0.08); border-radius: 0 12px 12px 0; }
.feature-tab.active { border-left-color: white; background: rgba(255,255,255,0.12); border-radius: 0 12px 12px 0; }
.feature-tab-icon { color: rgba(255,255,255,0.5); flex-shrink: 0; margin-top: 2px; transition: color 0.3s; }
.feature-tab.active .feature-tab-icon { color: white; }
.feature-tab-text h3 { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 6px; transition: color 0.3s; }
.feature-tab.active .feature-tab-text h3 { color: white; }
.feature-tab-text p { color: rgba(255,255,255,0.3); font-size: 0.85rem; line-height: 1.5; max-height: 0; overflow: hidden; transition: all 0.4s; opacity: 0; }
.feature-tab.active .feature-tab-text p { max-height: 100px; opacity: 1; color: rgba(255,255,255,0.7); }
.feature-tab-progress { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.1); }
.progress-line { height: 100%; width: 0; background: white; }
.feature-tab.active .progress-line { animation: progressFill 6s linear forwards; }
@keyframes progressFill { from { width: 0; } to { width: 100%; } }

/* Feature screens */
.features-visual { position: relative; min-height: 400px; }
.feature-screen { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transform: translateY(20px) scale(0.98); transition: all 0.5s ease; pointer-events: none; }
.feature-screen.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

/* Feature visual wrapper */
.features-visual {
    position: relative; min-height: 400px;
}

/* Screen mockup */
.screen-mockup { background: #1e1e2e; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.screen-header { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,0.05); }
.screen-dots { display: flex; gap: 6px; }
.screen-dots span { width: 10px; height: 10px; border-radius: 50%; }
.screen-dots span:nth-child(1) { background: #ff5f57; }
.screen-dots span:nth-child(2) { background: #febc2e; }
.screen-dots span:nth-child(3) { background: #28c840; }
.screen-url { font-size: 0.75rem; color: #64748b; background: rgba(255,255,255,0.05); padding: 4px 12px; border-radius: 6px; }
.screen-body { padding: 24px; min-height: 320px; }

/* Mock playlist */
.mock-genre-header { color: var(--primary-light); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.mock-track { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; color: #94a3b8; font-size: 0.9rem; transition: background 0.2s; }
.mock-track:hover { background: rgba(255,255,255,0.05); }
.mock-track.playing-anim { color: white; background: rgba(124,58,237,0.15); }
.mock-num { width: 20px; text-align: center; color: #475569; }
.mock-dur { margin-left: auto; font-size: 0.8rem; color: #475569; }
.mock-bars { display: flex; gap: 2px; align-items: end; height: 16px; }
.mock-bars i { width: 3px; background: var(--primary-light); border-radius: 2px; animation: barPulse 0.8s ease-in-out infinite alternate; }
.mock-bars i:nth-child(1) { height: 8px; animation-delay: 0s; }
.mock-bars i:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.mock-bars i:nth-child(3) { height: 6px; animation-delay: 0.3s; }
.mock-bars i:nth-child(4) { height: 12px; animation-delay: 0.45s; }
@keyframes barPulse { 0% { height: 4px; } 100% { height: 16px; } }

/* Mock schedule */
.mock-schedule { color: white; }
.schedule-header { display: flex; gap: 0; margin-bottom: 20px; }
.schedule-header span { flex: 1; text-align: center; padding: 8px; font-size: 0.8rem; color: #64748b; font-weight: 500; }
.schedule-header .active { color: var(--primary-light); background: rgba(124,58,237,0.15); border-radius: 8px; }
.schedule-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.time { width: 70px; font-size: 0.75rem; color: #475569; flex-shrink: 0; }
.schedule-block { flex: 1; padding: 12px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; }
.schedule-block.jazz { background: rgba(251,191,36,0.15); color: #fbbf24; border-left: 3px solid #fbbf24; }
.schedule-block.pop { background: rgba(239,68,68,0.15); color: #f87171; border-left: 3px solid #f87171; }
.schedule-block.chill { background: rgba(56,189,248,0.15); color: #38bdf8; border-left: 3px solid #38bdf8; }
.schedule-block.lounge { background: rgba(167,139,250,0.15); color: #a78bfa; border-left: 3px solid #a78bfa; }

/* Mock certificate */
.mock-certificate { background: white; border-radius: 12px; padding: 32px; text-align: center; color: #1a1a2e; position: relative; }
.cert-logo { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.cert-title { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 20px; color: #374151; }
.cert-text { font-size: 0.85rem; line-height: 1.8; color: #6b7280; }
.cert-name { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin: 8px 0; }
.cert-ref { margin-top: 16px; font-family: monospace; font-size: 0.8rem; color: #9ca3af; }
.cert-badge { position: absolute; top: 16px; right: 16px; background: #10b981; color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

/* Mock devices */
.mock-devices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 20px; }
.device { text-align: center; padding: 24px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.device:hover { border-color: var(--primary); transform: translateY(-4px); }
.device-screen { margin-bottom: 12px; display: flex; justify-content: center; }
.device span { font-size: 0.85rem; color: #94a3b8; }

/* === BUSINESS GRID === */
.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.business-card {
    text-align: center; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border); transition: all 0.3s;
}
.business-card:hover { border-color: var(--primary); box-shadow: 0 8px 30px rgba(124,58,237,0.15); transform: translateY(-6px); }
.business-img {
    width: 100%; height: 160px; background-size: cover; background-position: center;
    transition: transform 0.4s; position: relative; overflow: hidden;
}
.business-card:hover .business-img { transform: scale(1.05); }
.business-hover {
    position: absolute; inset: 0;
    background: rgba(124,58,237,0.85);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.business-card:hover .business-hover { opacity: 1; }
.hover-amount {
    font-size: 2rem; font-weight: 800; color: white;
    transform: translateY(10px); transition: transform 0.3s ease;
}
.business-card:hover .hover-amount { transform: translateY(0); }
.hover-label {
    font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 4px;
    transform: translateY(10px); transition: transform 0.3s ease 0.05s;
}
.business-card:hover .hover-label { transform: translateY(0); }
.business-card h3 {
    font-size: 0.95rem; font-weight: 600; padding: 14px 16px;
    margin: 0; color: var(--text);
}

/* === ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.7s; }

/* Hero entrance animation */
.hero-content { animation: fadeInUp 0.8s ease forwards; }
.hero-visual { animation: fadeInUp 1s ease 0.2s forwards; opacity: 0; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === PRICING === */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.pricing-card {
    padding: 40px 32px; border-radius: 16px; position: relative;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.pricing-card.featured {
    background: rgba(124,58,237,0.1); border: 2px solid var(--primary);
    box-shadow: 0 8px 40px rgba(124,58,237,0.2);
    transform: scale(1.05);
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.price { font-size: 2.8rem; font-weight: 800; }
.price span { font-size: 1rem; font-weight: 400; color: #94a3b8; }
.price-note { font-size: 0.85rem; color: #94a3b8; margin-bottom: 24px; }
.pricing-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-card li { font-size: 0.9rem; padding-left: 20px; position: relative; }
.pricing-card li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* === FAQ === */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; padding: 20px 0; background: none; border: none;
    font-size: 1.05rem; font-weight: 600; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: inherit; color: var(--text);
}
.faq-toggle { font-size: 1.5rem; color: var(--primary); transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* === CTA FINAL === */
.section-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center; color: white;
}
.section-cta h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.section-cta p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; }
.section-cta .btn-primary { background: white; color: var(--primary); }
.section-cta .btn-primary:hover { background: #f1f5f9; }
.section-cta .hero-note { color: rgba(255,255,255,0.7); display: block; margin-top: 12px; }

/* === FOOTER === */
.footer { background: var(--bg-darker); color: #94a3b8; padding: 60px 0 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: white; font-size: 0.95rem; margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* === LISTEN / PLAYER SECTION === */
.listen-categories { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cat-btn {
    padding: 8px 20px; border-radius: 20px; border: 1px solid var(--border);
    background: transparent; font-family: inherit; font-size: 0.9rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s; color: var(--text-light);
}
.cat-btn:hover { border-color: var(--primary); color: var(--primary); }
.cat-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

.tracks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Large track cards */
.track-card.large { border: none; padding: 0; border-radius: 16px; overflow: hidden; }
.track-art-large {
    width: 100%; height: 200px; background-size: cover; background-position: center;
    position: relative; border-radius: 16px; overflow: hidden; transition: transform 0.3s;
}
.track-card.large:hover .track-art-large { transform: scale(1.02); }
.track-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: transparent; transition: background 0.3s;
    cursor: pointer; z-index: 5;
}
.track-card.large:hover .track-overlay,
.track-card.active-track .track-overlay { background: rgba(0,0,0,0.35); }
.play-btn-lg {
    width: 56px; height: 56px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.95); color: #1a1a2e; font-size: 1.3rem;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    pointer-events: all; position: relative; z-index: 10;
}
.track-card.large .play-btn-lg { opacity: 0.9; }
.track-card.large:hover .play-btn-lg { opacity: 1; transform: scale(1.1); }
.play-btn-lg:hover { transform: scale(1.15); background: white; }
.track-card.active-track .play-btn-lg { background: var(--primary); color: white; opacity: 1; }
.track-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex; flex-direction: column;
}
.track-label .track-title { color: white; font-weight: 700; font-size: 1.05rem; }
.track-label .track-genre { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 4px; }

/* === AUDIO BAR (fixed bottom) === */
.audio-bar {
    position: fixed; bottom: 0; left: 0; width: 100%; z-index: 200;
    background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateY(100%); transition: transform 0.3s ease;
    padding: 12px 0;
}
.audio-bar.visible { transform: translateY(0); }
.audio-bar-content {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 24px;
}
.audio-bar-info { display: flex; align-items: center; gap: 12px; min-width: 200px; }
.audio-bar-art { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; }
.audio-bar-title { color: white; font-weight: 600; font-size: 0.9rem; display: block; }
.audio-bar-genre { color: var(--primary-light); font-size: 0.75rem; display: block; margin-top: 2px; }
.audio-bar-controls { display: flex; align-items: center; gap: 16px; }
.audio-bar-btn {
    background: none; border: none; color: white; font-size: 1.2rem;
    cursor: pointer; opacity: 0.7; transition: opacity 0.2s; padding: 4px;
}
.audio-bar-btn:hover { opacity: 1; }
.audio-bar-btn.play { font-size: 1.6rem; opacity: 1; color: var(--primary-light); }
.audio-bar-progress { flex: 1; }
.progress-bar {
    width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px;
    overflow: hidden; cursor: pointer;
}
.progress-fill { height: 100%; background: var(--primary); border-radius: 2px; width: 0%; transition: width 0.1s linear; }
.audio-bar-time { display: flex; justify-content: space-between; margin-top: 4px; }
.audio-bar-time span { font-size: 0.7rem; color: #94a3b8; }
.audio-bar-volume { display: flex; align-items: center; gap: 8px; min-width: 120px; }
.audio-bar-volume span { font-size: 1rem; }
.volume-slider {
    -webkit-appearance: none; width: 80px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.2); outline: none;
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
    background: var(--primary-light); cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    /* NAV */
    .nav-links { display: none; }
    .nav-container { padding: 0 16px; height: 64px; }
    .mobile-menu-btn { display: flex; }
    .logo-text { font-size: 1.5rem; }
    .logo-icon { width: 34px; height: 34px; }
    .logo-bars { height: 14px; }
    .logo-bars i { width: 2.5px; }

    /* HERO MOBILE — 2 écrans */
    .hero {
        grid-template-columns: 1fr; padding: 90px 20px 0; gap: 0;
        min-height: auto; align-items: start;
    }
    .hero-badge { font-size: 0.75rem; padding: 5px 12px; margin-bottom: 12px; }
    .hero h1 { font-size: 1.7rem; line-height: 1.25; margin-bottom: 16px; }
    .hero-subtitle { display: none; }
    .hero-ctas { display: none; }
    .hero-counters { display: none; }

    /* Player visible en mobile */
    .hero-visual {
        display: block !important; margin-top: 24px; padding-bottom: 32px;
        animation: none; opacity: 1;
    }

    /* Deuxième écran mobile : sous-titre + CTA + compteurs */
    .hero-mobile-bottom {
        display: flex !important; flex-direction: column; gap: 20px;
        padding: 40px 20px;
        background: var(--card-bg); border-top: 1px solid var(--border);
    }
    .hero-mobile-bottom .mobile-subtitle {
        font-size: 0.95rem; color: var(--text-light); line-height: 1.7;
    }
    .hero-mobile-bottom .btn-lg {
        width: 100%; text-align: center; padding: 16px 28px; font-size: 1rem;
    }
    .hero-mobile-bottom .mobile-note {
        font-size: 0.8rem; color: var(--text-light); text-align: center;
    }
    .hero-mobile-bottom .mobile-badges {
        display: flex; flex-wrap: nowrap; gap: 6px; justify-content: center;
        overflow-x: auto; -webkit-overflow-scrolling: touch;
    }
    .hero-mobile-bottom .m-badge {
        padding: 6px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600;
        background: rgba(124,58,237,0.1); color: var(--primary);
        border: 1px solid rgba(124,58,237,0.2);
        white-space: nowrap; flex-shrink: 0;
    }
    .hero-mobile-bottom .mobile-features-list {
        list-style: none; display: flex; flex-direction: column; gap: 10px;
    }
    .hero-mobile-bottom .mobile-features-list li {
        font-size: 0.9rem; color: var(--text); padding-left: 24px; position: relative; line-height: 1.4;
    }
    .hero-mobile-bottom .mobile-features-list li::before {
        content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700;
    }

    /* SECTIONS */
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 32px; }
    .section-header h2 { font-size: 1.5rem; line-height: 1.3; }
    .section-header p { font-size: 0.9rem; }

    /* COMPARISON */
    .comparison-table { grid-template-columns: 1fr; gap: 20px; }
    .comparison-card { padding: 28px 20px; }
    .price-tag { font-size: 1.8rem; }

    /* LISTEN */
    .listen-categories { gap: 8px; margin-bottom: 24px; }
    .cat-btn { padding: 6px 14px; font-size: 0.8rem; }
    .tracks-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .track-art-large { height: 140px; }
    .play-btn-lg { width: 44px; height: 44px; font-size: 1rem; }
    .track-label .track-title { font-size: 0.85rem; }
    .track-label .track-genre { font-size: 0.7rem; }
    .track-label { padding: 30px 10px 10px; }

    /* STEPS */
    .steps { grid-template-columns: 1fr; gap: 12px; }
    .step {
        padding: 24px 20px; display: flex; flex-direction: column; align-items: center;
        text-align: center; gap: 0;
        background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(147,51,234,0.05));
        border: 1px solid rgba(124,58,237,0.15);
        border-radius: 16px;
    }
    .step-number {
        width: 40px; height: 40px; font-size: 1rem; margin: 0 0 12px 0;
        background: var(--primary); color: white;
    }
    .step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--primary-dark); }
    .step p { font-size: 0.85rem; line-height: 1.6; color: var(--text-light); }

    /* FEATURES */
    .features-showcase { grid-template-columns: 1fr; padding: 24px 16px; gap: 24px; border-radius: 16px; }
    .features-visual { min-height: 300px; }
    .feature-tab { padding: 16px 12px; gap: 12px; }
    .feature-tab-text h3 { font-size: 0.95rem; }
    .screen-body { padding: 16px; min-height: 260px; }
    .mock-track { font-size: 0.8rem; padding: 8px; }
    .schedule-header span { font-size: 0.65rem; padding: 4px; }
    .schedule-block { padding: 8px 10px; font-size: 0.75rem; }
    .time { width: 50px; font-size: 0.65rem; }
    .mock-devices { gap: 12px; padding: 12px; }
    .device { padding: 16px; }

    /* BUSINESS */
    .business-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .business-img { height: 120px; }
    .business-card h3 { font-size: 0.85rem; padding: 10px 12px; }
    .hover-amount { font-size: 1.4rem; }
    .hover-label { font-size: 0.7rem; }

    /* PRICING */
    .pricing-cards { grid-template-columns: 1fr; gap: 16px; }
    .pricing-card { padding: 28px 20px; }
    .pricing-card.featured { transform: none; }
    .price { font-size: 2.2rem; }

    /* FAQ */
    .faq-question { font-size: 0.95rem; padding: 16px 0; }

    /* CTA */
    .section-cta h2 { font-size: 1.5rem; }
    .section-cta p { font-size: 0.95rem; }

    /* FOOTER */
    .footer { padding: 40px 0 80px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-col { gap: 8px; }

    /* AUDIO BAR */
    .audio-bar-volume { display: none; }
    .audio-bar-info { min-width: 100px; }
    .audio-bar-content { gap: 12px; padding: 0 12px; }
    .audio-bar-progress { display: none; }
    .audio-bar-art { width: 36px; height: 36px; }
    .audio-bar-title { font-size: 0.8rem; }
    .audio-bar-genre { font-size: 0.65rem; }
}
