/* 4 Dash Records - Main Styles */
/* Optimized and extracted from inline styles */

/* CSS Variables for Brand Colors */
:root {
    --gradient-primary: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --color-primary: #ff6b6b;
    --color-secondary: #ffa726;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-bg: #fefefe;
    --color-bg-alt: #f8f8f8;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --header-height: 80px;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    font-weight: 400;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.language-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
}

.language-toggle-btn:hover {
    background: rgba(255, 107, 107, 0.1);
}

.lang-option {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.lang-option:hover {
    color: var(--color-text);
}

.lang-option.active {
    color: var(--color-primary);
    font-weight: 600;
}

.lang-separator {
    color: var(--color-text-light);
    opacity: 0.5;
    font-weight: 300;
}

/* CTA Button */
.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    letter-spacing: 0.02em;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(26, 26, 26, 0.15);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.2);
}

/* Main Content */
.main-content {
    margin-top: var(--header-height);
}

.section {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-text {
    max-width: 600px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: var(--gradient-primary);
    padding: 4px;
}

.hero-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    background: var(--color-bg-alt);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 167, 38, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials {
    background: var(--gradient-dark);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.testimonial {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.testimonial cite {
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.95rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.process-step p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Occasions Grid */
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.occasion-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
    border-radius: 20px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.occasion-image {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.occasion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.occasion-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.occasion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.occasion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.occasion-card:hover::before {
    transform: scaleX(1);
}

.occasion-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.occasion-card p {
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Audio Examples */
.audio-examples {
    background: var(--color-bg-alt);
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audio-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.audio-title {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.artist-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.song-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.audio-card h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #2c7873;
    margin-bottom: 1rem;
}

.audio-placeholder {
    background: var(--gradient-primary);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin: 1rem 0;
}

.audio-placeholder .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audio-placeholder h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.audio-placeholder p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.audio-description {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-primary) border-box;
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-text), var(--color-text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Artists Section */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.artist-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.artist-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c7873, #d4af37);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 167, 38, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    letter-spacing: 0.02em;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Messages */
.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
}

/* Loading State */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Legal Pages Overlay */
.legal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.legal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    max-height: 90%;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.legal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.legal-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.legal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
    line-height: 1.6;
}

.legal-body h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.2);
    padding-bottom: 0.5rem;
}

.legal-body h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-light);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1rem;
}

.legal-body p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.legal-body a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-body a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.legal-body strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Etsy Badge */
.etsy-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.etsy-badge h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.etsy-badge p {
    margin: 0 0 1rem 0;
    opacity: 0.95;
}

.etsy-badge a {
    background: white;
    color: var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.etsy-badge a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .language-toggle {
        margin-right: 0;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .language-toggle-btn {
        padding: 0.4rem 0.8rem;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-video-container {
        max-width: 350px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .occasion-image {
        height: 180px;
    }

    .legal-overlay {
        padding: 1rem;
    }

    .legal-header {
        padding: 1.5rem;
    }

    .legal-header h2 {
        font-size: 1.2rem;
    }

    .legal-body {
        padding: 1.5rem;
        max-height: calc(90vh - 100px);
    }

    .legal-body h3 {
        font-size: 1.1rem;
    }
}

/* Expert Story Section */
#expert-story .section-header h2 {
    color: white;
}

#expert-story .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.expert-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.story-point:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.3);
}

.story-point .emoji {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.story-point h3 {
    margin: 0 0 0.75rem 0;
    color: #ffa726;
    font-size: 1.3rem;
    font-weight: 600;
}

.story-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
}

/* Expert CTA */
.expert-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.expert-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Audio Comparison Player (Synced A/B) */
.audio-comparison-player {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.audio-comparison-player:hover {
    transform: translateY(-3px);
}

.comparison-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffa726;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Toggle Switch */
.comparison-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.toggle-label.active {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.toggle-label-left::before {
    content: '❌ ';
    margin-right: 0.3rem;
}

.toggle-label-right::before {
    content: '✅ ';
    margin-right: 0.3rem;
}

.comparison-toggle {
    position: relative;
    display: inline-block;
    width: 68px;
    height: 36px;
}

.comparison-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b, #e74c3c);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

input:checked + .toggle-slider:before {
    transform: translateX(32px);
}

/* Playback Controls */
.playback-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.play-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.5);
    flex-shrink: 0;
}

.play-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.7);
}

.play-button:active {
    transform: scale(0.96);
}

.play-button svg {
    width: 28px;
    height: 28px;
}

.play-button.playing svg {
    display: none;
}

.play-button.playing::after {
    content: '⏸';
    font-size: 28px;
}

.time-display {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-display span {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: white;
    font-weight: 500;
    min-width: 48px;
}

.seek-bar {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.seek-bar::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.seek-bar::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.comparison-description {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-point {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .story-point .emoji {
        font-size: 2.5rem;
    }
    
    .story-point h3 {
        font-size: 1.1rem;
    }
    
    .story-point p {
        font-size: 0.95rem;
    }
    
    .expert-cta p {
        font-size: 1rem;
    }
    
    .audio-comparison-player {
        padding: 2rem 1.5rem;
    }
    
    .comparison-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .comparison-toggle-container {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .toggle-label {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .playback-controls {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
    
    .play-button.playing::after {
        font-size: 24px;
    }
    
    .time-display {
        gap: 0.75rem;
    }
    
    .time-display span {
        font-size: 0.9rem;
        min-width: 42px;
    }
    
    .seek-bar {
        height: 6px;
    }
    
    .comparison-description {
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
