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

*,
*::before,
*::after {
    box-sizing: inherit;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #0f0f0f;
    --border-light: #e5e5e5;
    --accent: #000000;
    --accent-gold: #d4af37;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

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

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
    z-index: 1001;
}

.nav-logo:hover {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                 0 0 40px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gold), rgba(212, 175, 55, 0.5));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-link:hover {
    color: var(--text-light);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), 
                url('images/studio-hero.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
}

.title-main {
    display: block;
    color: var(--text-light);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3),
                 0 0 80px rgba(212, 175, 55, 0.2),
                 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.3),
                     0 0 80px rgba(212, 175, 55, 0.2),
                     0 10px 30px rgba(0, 0, 0, 0.5);
    }
    50% { 
        text-shadow: 0 0 60px rgba(212, 175, 55, 0.5),
                     0 0 100px rgba(212, 175, 55, 0.3),
                     0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.title-sub {
    display: block;
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.5em;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 13px;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

/* Service Sections */
.service-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-section.alt::after {
    left: -100px;
    right: auto;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.service-section.alt {
    background: var(--bg-light);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--text-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-dark), var(--accent-gold));
    border-radius: 3px;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Images */
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    filter: contrast(1.05) saturate(1.1);
}

.service-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}

.service-image.guitar-image {
    aspect-ratio: 3/4;
}

.service-image.cymbal-image img {
    object-position: center 75%;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.service-content:hover .service-image::before {
    opacity: 1;
}

.manager-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15), 
                0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(212, 175, 55, 0.2);
}

.pricing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.05);
}

.pricing-start-image .pricing-img {
    object-position: center 20%;
}

.pricing-premium-image .pricing-img {
    object-position: center 60%;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    filter: grayscale(0.2) contrast(1.05);
}

.image-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 600;
}

.mix-images {
    aspect-ratio: 1;
}

/* DAW & Plugins Section */
.daw-plugins-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.daw-plugins-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.02) 48%, rgba(212, 175, 55, 0.02) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.02) 48%, rgba(212, 175, 55, 0.02) 52%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

.section-title-center-dark {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 25px;
}

.section-title-center-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-dark), rgba(0, 0, 0, 0.3));
    border-radius: 2px;
}

.daw-plugins-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.subsection-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--text-dark);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, var(--text-dark), var(--accent-gold), transparent) 1;
    padding-bottom: 12px;
    letter-spacing: -0.01em;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.tech-list {
    list-style: none;
}

.tech-list li {
    padding: 14px 0;
    font-size: 1.02rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.tech-list li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    transition: width 0.3s ease;
}

.tech-list li:hover {
    padding-left: 20px;
    color: #000;
}

.tech-list li:hover::before {
    width: 10px;
}

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

.plugin-name {
    font-weight: 600;
}

.plugin-version {
    color: #666;
    font-size: 0.9rem;
}

/* Managers Section */
.managers-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.managers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.managers-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(212, 175, 55, 0.02) 20px,
            rgba(212, 175, 55, 0.02) 21px
        );
    pointer-events: none;
    border-radius: 50%;
}

.section-title-center {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 25px;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gold), rgba(212, 175, 55, 0.3));
    border-radius: 2px;
}

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

.manager-card {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.manager-image {
    margin-bottom: 30px;
}

.manager-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 35px;
    overflow: hidden;
    border-radius: 50%;
}

.manager-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    min-height: 100px;
}

.manager-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 20px;
    letter-spacing: -0.01em;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 25px;
    padding: 45px 35px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--text-dark) 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.pricing-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

.pricing-image {
    margin-bottom: 30px;
}

.pricing-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 35px;
    position: relative;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 1.02rem;
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 8px;
    font-weight: bold;
    font-size: 1.3rem;
}

.pricing-button {
    width: 100%;
    padding: 18px 35px 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.pricing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.pricing-button:hover::before {
    left: 100%;
}

.pricing-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pricing-card.featured .pricing-button {
    background: var(--primary-dark);
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 51%);
    background-size: 40px 40px;
    pointer-events: none;
    border-radius: 50%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    color: var(--text-dark);
}

.contact-brand {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-name {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 45px;
    line-height: 1.05;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark) 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details {
    margin-bottom: 45px;
}

.contact-label {
    font-size: 1rem;
    color: #888;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.contact-bio {
    margin-bottom: 45px;
}

.contact-bio p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
    font-style: italic;
    color: #666;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.05), rgba(228, 64, 95, 0.02));
    border-radius: 50px;
    width: fit-content;
    transition: all 0.4s ease;
    border: 1px solid rgba(228, 64, 95, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 64, 95, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(228, 64, 95, 0.05));
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(228, 64, 95, 0.2);
}

.social-icon {
    width: 32px;
    height: 32px;
}

.contact-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 40px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 0.5px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 40px;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #000;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.vip-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: -10px;
    text-align: center;
}

.vip-modal-content {
    max-width: 400px;
}

/* VIP Section */
.vip-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.vip-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.vip-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    position: relative;
}

.vip-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-dark), var(--accent-gold));
    border-radius: 2px;
}

.vip-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 0.03em;
}

.vip-button {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.vip-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.vip-button:hover::before {
    left: 100%;
}

.vip-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* VIP Download Page */
.vip-download-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0520 100%);
    position: relative;
    overflow: hidden;
}

.vip-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vip-download-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.vip-download-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493, #8a2be2, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.4));
}

.vip-download-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    letter-spacing: 0.05em;
}

.download-buttons {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.download-btn:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: #ff1493;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff1493, #8a2be2, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.download-btn:hover .download-icon {
    transform: scale(1.1);
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.back-link:hover {
    color: #ff1493;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        text-align: left;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .service-content,
    .service-content.reverse,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        padding-left: 15px;
    }
    
    .section-title::before {
        width: 4px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .managers-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .daw-plugins-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-content,
    .contact-content {
        gap: 60px;
    }
}

/* VIP DAW Pages */
.vip-daw-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0520 100%);
    position: relative;
    overflow: hidden;
}

.vip-daw-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vip-daw-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.vip-daw-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493, #8a2be2, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.4));
}

.vip-daw-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.daw-list {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.daw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    gap: 30px;
}

.daw-item:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: #ff1493;
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.3);
}

.daw-info {
    flex: 1;
}

.daw-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.daw-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.daw-original-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.daw-discount-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.daw-discount-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 20, 147, 0.2));
    border: 1px solid #ff1493;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff1493;
    letter-spacing: 0.05em;
}

.daw-download-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, #ff1493 0%, #8a2be2 50%, #1e90ff 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
    white-space: nowrap;
}

.daw-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.6);
}

.vip-navigation {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.vip-navigation .back-link {
    font-size: 1.05rem;
}

/* Responsive pour les pages DAW */
@media (max-width: 768px) {
    .daw-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 20px;
    }
    
    .daw-name {
        font-size: 1.5rem;
    }
    
    .daw-pricing {
        gap: 10px;
    }
    
    .daw-discount-price {
        font-size: 1.3rem;
    }
    
    .daw-download-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }
    
    .vip-navigation {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
    }
}
