/* ===================================
   DaVinci Beats - Modern Stylesheet
   =================================== */

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

:root {
    --primary-blue: #4FC3F7;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-glow: rgba(79, 195, 247, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
}

/* ===================================
   Sticky Navigation
   =================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.nav-loaded {
    transform: translateY(0);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('Images/Hero_Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.logo-placeholder {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 7rem;
    position: relative;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-placeholder::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 90%;
    background-image: url('Images/Logo.png');
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scaleY(-1);
    opacity: 0.25;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 65%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 65%);
    animation: logoFloat 3s ease-in-out infinite;
    pointer-events: none;
    filter: blur(1px);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-blue);
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Beat Player Section
   =================================== */
.beat-player-section {
    padding: 5rem 0 3rem;
    background: var(--dark-bg);
}

.player-embed {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.player-embed iframe,
.player-embed embed,
.player-embed object,
.player-embed > * {
    width: 100%;
    border: none !important;
    outline: none !important;
    display: block;
}

.player-placeholder {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    color: var(--text-gray);
}

.player-placeholder i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ===================================
   How It Works
   =================================== */
.how-it-works {
    padding: 5rem 0;
    background: var(--card-bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.step p {
    color: var(--text-gray);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('Images/Pricing_Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

.price-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.price-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: scale(1.05);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 40px var(--accent-glow);
    }
    50% {
        box-shadow: 0 0 60px rgba(79, 195, 247, 0.5), 0 0 80px rgba(79, 195, 247, 0.3);
    }
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.license-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.value-badge {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.features .fa-star {
    color: #FFD700;
}

.features .fa-gift {
    color: #FF6B6B;
}

.contract-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contract-btn:hover {
    background: var(--primary-blue);
    color: var(--dark-bg);
    box-shadow: 0 5px 20px var(--accent-glow);
}

/* ===================================
   Sales Counter
   =================================== */
.sales-counter {
    padding: 4rem 0;
    background: var(--card-bg);
}

.counter-box {
    text-align: center;
    padding: 3rem;
    background: var(--dark-bg);
    border-radius: 20px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 0 40px var(--accent-glow);
}

.counter-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   Bundle Packages Section (Hidden Gem)
   =================================== */
.bundle-packages {
    padding: 5rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('Images/Pricing_Background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    /* UNCOMMENT LINE BELOW TO HIDE UNTIL Q1 */
    /* display: none; */
}

.bundle-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bundle-packages .container {
    position: relative;
    z-index: 2;
}

.bundle-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: gemGlow 3s ease-in-out infinite;
}

@keyframes gemGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(79, 195, 247, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(79, 195, 247, 0.6));
        transform: scale(1.05);
    }
}

.bundle-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bundle-comparison {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(79, 195, 247, 0.2);
    box-shadow: 0 10px 40px rgba(79, 195, 247, 0.1);
    overflow-x: auto;
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-white);
}

.package-table thead th {
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(79, 195, 247, 0.3);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-table tbody td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.package-table tbody tr:last-child td {
    border-bottom: none;
}

.package-row {
    transition: all 0.3s ease;
}

.package-row:hover {
    background: rgba(79, 195, 247, 0.05);
}

.featured-package {
    background: rgba(79, 195, 247, 0.08);
}

.featured-package td {
    font-weight: 500;
}

.highlight-price {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.savings {
    color: #4CAF50;
    font-weight: 600;
}

.best-value {
    font-size: 0.85rem;
    color: #FFD700;
    font-weight: 600;
    white-space: nowrap;
}

.bundle-features {
    margin: 3rem 0;
    text-align: center;
}

.bundle-features h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.bundle-mastering-callout {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 142, 83, 0.15) 100%);
    border: 2px solid rgba(255, 107, 107, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.bundle-mastering-callout i {
    font-size: 2rem;
    color: #FF6B6B;
    flex-shrink: 0;
}

.bundle-mastering-callout strong {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    color: var(--text-gray);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bundle-cta {
    text-align: center;
    margin-top: 3rem;
}

.auto-discount-text {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bundle-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bundle-primary-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary-blue);
    color: var(--dark-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-primary-btn:hover {
    background: #3FB3E7;
    border-color: #3FB3E7;
    box-shadow: 0 10px 30px var(--accent-glow);
    transform: translateY(-3px);
}

.bundle-secondary-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.bundle-secondary-btn:hover {
    background: rgba(79, 195, 247, 0.1);
    transform: translateY(-2px);
}

/* Mobile responsive for bundles */
@media (max-width: 768px) {
    .bundle-comparison {
        padding: 1rem;
    }
    
    .package-table {
        font-size: 0.85rem;
    }
    
    .package-table thead th,
    .package-table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .best-value {
        display: block;
        margin-top: 0.25rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bundle-primary-btn,
    .bundle-secondary-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose {
    padding: 5rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('Images/WhyChoose_Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

.benefit {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.benefit i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.benefit p {
    color: var(--text-gray);
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('Images/Testimonials_Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

.testimonial {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===================================
   Trust Badges
   =================================== */
.trust-badges {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.badge-item span {
    color: var(--text-gray);
    font-weight: 600;
    text-align: center;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 5rem 0;
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('Images/FAQ_Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(79, 195, 247, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-white);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    animation: fadeIn 0.4s ease;
}

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

/* ===================================
   Mastering Info Section
   =================================== */
.mastering-info {
    padding: 5rem 0;
    background: var(--dark-bg);
}

/* Mastering Comparison Player */
.mastering-comparison {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(79, 195, 247, 0.1);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-header i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.comparison-header h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.comparison-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.audio-player-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.play-pause-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: none;
    color: var(--dark-bg);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--accent-glow);
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.play-pause-btn:active {
    transform: scale(0.95);
}

.slider-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.label-left {
    color: #FF6B6B;
}

.label-right {
    color: var(--primary-blue);
}

.slider-track {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #FF6B6B 0%, var(--primary-blue) 100%);
    border-radius: 10px;
    transition: width 0.1s ease;
}

.comparison-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: transparent;
    outline: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin: 0;
}

.comparison-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--text-white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.comparison-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.comparison-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--text-white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.comparison-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.time-display {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mastering-comparison {
        padding: 2rem 1.5rem;
    }
    
    .play-pause-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .comparison-header h3 {
        font-size: 1.5rem;
    }
}

.mastering-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mastering-feature {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mastering-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.mastering-feature i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mastering-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.mastering-feature p {
    color: var(--text-gray);
}

.mastering-note {
    background: rgba(79, 195, 247, 0.1);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.mastering-note i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mastering-note p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===================================
   Forms
   =================================== */
.contact-form,
.mastering-form {
    padding: 5rem 0;
    background: var(--card-bg);
}

.form-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px var(--accent-glow);
}

.form textarea {
    resize: vertical;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border: 2px dashed var(--primary-blue);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: rgba(79, 195, 247, 0.1);
    border-style: solid;
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.file-upload-label span {
    color: var(--text-gray);
    font-weight: 600;
}

.file-upload-label input[type="file"] {
    display: none;
}

.form-note {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #FF6B6B;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.form-note i {
    color: #FF6B6B;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-note p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-blue);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
    background: #3FB3E7;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary-blue);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateX(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

.cookie-text h4 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #3FB3E7;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--primary-blue);
    color: var(--dark-bg);
}

.cookie-btn.accept:hover {
    background: #3FB3E7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* ===================================
   Social Proof Notifications
   =================================== */
.social-proof-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 350px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(79, 195, 247, 0.2);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(-400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-proof-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.notification-beat {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-proof-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .nav-container {
        height: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-card:nth-child(3) {
        order: -1;
    }

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

    .price-card.featured:hover {
        transform: translateY(-10px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .counter-number {
        font-size: 3rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Audio Comparison Player CSS */
/* Add this to your stylesheet or in a <style> tag */

.mastering-comparison {
    max-width: 800px;
    margin: 0 auto 4rem;    background: #1a1a1a;
    border: 2px solid #4FC3F7;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(79, 195, 247, 0.2);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header i {
    font-size: 3rem;
    color: #4FC3F7;
    margin-bottom: 1rem;
}

.comparison-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.comparison-header p {
    color: #ccc;
    font-size: 1rem;
}

.audio-player-wrapper {
    background: #0f0f0f;
    border-radius: 10px;
    padding: 2rem;
}

.play-pause-btn {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #4FC3F7, #0288D1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.5);
}

.play-pause-btn:active {
    transform: scale(0.95);
}

.slider-container {
    margin-bottom: 1.5rem;
    position: relative;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: bold;
}

.label-left {
    color: #ff6b6b;
}

.label-right {
    color: #4FC3F7;
}

.comparison-slider {
    width: 100%;
    height: 8px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.comparison-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 3px solid #4FC3F7;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 10px rgba(79, 195, 247, 0.5);
}

.comparison-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
}

.comparison-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 3px solid #4FC3F7;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 10px rgba(79, 195, 247, 0.5);
}

.slider-track {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, #ff6b6b 0%, #4FC3F7 100%);
    border-radius: 4px;
    pointer-events: none;
}

.slider-fill {
    height: 100%;
    background: rgba(79, 195, 247, 0.3);
    border-radius: 4px;
    transition: width 0.1s;
}

.time-display {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mastering-comparison {
        padding: 2rem 1rem;
    }

    .play-pause-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .comparison-header h3 {
        font-size: 1.4rem;
    }

    .comparison-header i {
        font-size: 2.5rem;
    }
}

/* Mastering Service Description Section - Matches Site Design */
/* Add this to your styles.css file */

.mastering-service-description {
    background: var(--card-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px var(--accent-glow);
    position: relative;
}

.mastering-service-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(79, 195, 247, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}

.mastering-service-description h3 {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
}

.mastering-service-description h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.service-column {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.service-column:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.service-column h4 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(79, 195, 247, 0.2);
}

.service-column h4 i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.service-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-column ul li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    gap: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-column ul li:last-child {
    border-bottom: none;
}

.service-column ul li:hover {
    color: var(--text-white);
    padding-left: 0.5rem;
}

.service-column ul li i {
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.service-column p {
    color: var(--text-gray);
    padding: 0.75rem 0;
    line-height: 1.8;
    font-size: 1rem;
}

.service-column p:first-of-type {
    margin-top: 0.5rem;
}

.service-note {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(79, 195, 247, 0.08);
    border: 2px solid rgba(79, 195, 247, 0.3);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.service-note::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
}

.service-note p {
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    padding-left: 1rem;
}

.service-note p i {
    color: var(--primary-blue);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.service-note strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mastering-service-description {
        padding: 2rem 1.5rem;
    }

    .mastering-service-description h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .service-column {
        padding: 1.5rem;
    }

    .service-column h4 {
        font-size: 1.2rem;
    }

    .service-note {
        padding: 1.25rem 1.5rem;
    }
}

/* =============================================
   STICKY PROMO HEADER STYLES
   Paste this into your existing stylesheet
   ============================================= */

/* Main header container */
.promo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 55px;
  background: rgba(30, 30, 30, 0.98);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Visible state */
.promo-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Content wrapper */
.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
}

/* Promo text styling */
.promo-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  letter-spacing: 0.3px;
}

.promo-text strong {
  color: #ffffff;
  font-weight: 600;
  margin-right: 8px;
}

/* Instagram icon */
.promo-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease, transform 0.3s ease;
}

.promo-instagram svg {
  width: 22px;
  height: 22px;
}

.promo-instagram:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* Glowing bottom border */
.promo-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: glowSweep 3s ease-in-out infinite;
}

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

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .promo-header {
    height: 50px;
  }

  .promo-content {
    gap: 16px;
    padding: 0 15px;
  }

  .promo-text {
    font-size: 13px;
    text-align: center;
  }

  .promo-instagram svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .promo-header {
    height: 45px;
  }

  .promo-text {
    font-size: 11.5px;
    letter-spacing: 0.2px;
  }

  .promo-text strong {
    display: block;
    margin-bottom: 2px;
  }

  .promo-instagram svg {
    width: 18px;
    height: 18px;
  }
}

/* =============================================
   IMPORTANT: Add padding to your body/main 
   content to prevent overlap when header shows
   ============================================= */

/*
   Option A: Add this class to body when header is visible via JS
   
   body.promo-visible {
     padding-top: 55px;
   }

  Option B: Or always reserve the space if you prefer
   
   body {
     padding-top: 55px;
   }
  */
