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

:root {    --primary-color: #2C5282;
    --primary-dark: #1A365D;
    --primary-light: #3182CE;
    --secondary-color: #38A169;
    --secondary-dark: #2F855A;
    --accent-color: #4299E1;
    --dark-color: #2D3748;
    --light-color: #F7FAFC;
    --text-color: #2D3748;
    --text-light: #718096;
    --background-light: #F8FAFC;
    --white: #FFFFFF;
    --success-color: #38A169;
    --warning-color: #D69E2E;
    --error-color: #E53E3E;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section - Creative & Musical */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.music-wave {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatWave 8s ease-in-out infinite;
}

.wave-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.wave-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: 2s;
}

.wave-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.color-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: blobFloat 10s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(72, 219, 251, 0.3) 0%, transparent 70%);
    bottom: -175px;
    left: -175px;
    animation-delay: 3s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(162, 155, 254, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

.hero-badge i {
    color: #FFD700;
    animation: sparkle 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: titleSlideIn 1s ease-out;
}

.highlight-gradient {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    font-weight: 900;
}

.highlight-rainbow {
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 25%, #fecfef 50%, #f093fb 75%, #f5576c 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowShift 4s ease-in-out infinite;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: subtitleFadeIn 1s ease-out 0.3s both;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: featuresSlideUp 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-cta-container {
    animation: ctaSlideUp 1s ease-out 0.9s both;
    text-align: left;
}

.cta-button-creative {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: buttonPulse 3s ease-in-out infinite;
}

.cta-button-creative:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.button-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.button-glow {
    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.6s ease;
}

.cta-button-creative:hover .button-glow {
    left: 100%;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: subtextBlink 2s ease-in-out infinite;
}

.hero-visual-creative {
    position: relative;
    height: 600px;
    animation: visualSlideIn 1s ease-out 0.5s both;
}

.vinyl-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-stack {
    position: relative;
}

.vinyl-record {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.vinyl-1 {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    animation: vinylSpin 15s linear infinite;
    z-index: 3;
}

.vinyl-2 {
    background: linear-gradient(45deg, #4ECDC4, #45B7D1);
    animation: vinylSpin 20s linear infinite reverse;
    transform: translate(-40%, -40%) scale(0.8);
    z-index: 2;
}

.vinyl-3 {
    background: linear-gradient(45deg, #96CEB4, #FFECD2);
    animation: vinylSpin 25s linear infinite;
    transform: translate(-60%, -60%) scale(0.6);
    z-index: 1;
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vinyl-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.vinyl-lines::before,
.vinyl-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.vinyl-lines::before {
    width: 70%;
    height: 70%;
}

.vinyl-lines::after {
    width: 50%;
    height: 50%;
}

.floating-music-notes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.note-group {
    position: absolute;
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.group-1 {
    top: 10%;
    right: 10%;
    animation: noteFloat 6s ease-in-out infinite;
}

.group-2 {
    bottom: 20%;
    left: 10%;
    animation: noteFloat 8s ease-in-out infinite 2s;
}

.group-3 {
    top: 40%;
    right: -10%;
    animation: noteFloat 7s ease-in-out infinite 4s;
}

.note-group i {
    animation: noteBounce 3s ease-in-out infinite;
}

.note-group i:nth-child(2) {
    animation-delay: 0.5s;
}

.note-group i:nth-child(3) {
    animation-delay: 1s;
}

.sound-waves {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: end;
}

.wave-bar {
    width: 8px;
    background: linear-gradient(to top, #FF6B6B, #4ECDC4);
    border-radius: 4px;
    animation: waveHeight 1.5s ease-in-out infinite;
}

.bar-1 { height: 30px; animation-delay: 0s; }
.bar-2 { height: 50px; animation-delay: 0.1s; }
.bar-3 { height: 80px; animation-delay: 0.2s; }
.bar-4 { height: 100px; animation-delay: 0.3s; }
.bar-5 { height: 70px; animation-delay: 0.4s; }
.bar-6 { height: 90px; animation-delay: 0.5s; }
.bar-7 { height: 40px; animation-delay: 0.6s; }
.bar-8 { height: 60px; animation-delay: 0.7s; }

.scroll-indicator-creative {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: scrollBounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.scroll-arrow-creative {
    font-size: 1.5rem;
    animation: arrowBounce 2s ease-in-out infinite;
}

/* Creative Hero Animations */
@keyframes floatWave {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

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

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes rainbowShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes subtitleFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 0.95; transform: translateY(0); }
}

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

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

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes subtextBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

@keyframes vinylSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes noteBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes waveHeight {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1.5); }
}

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

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

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Section - Creative & Musical */
.process-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 25%, #d299c2 50%, #fef9d7 75%, #89f7fe 100%);
    position: relative;
    overflow: hidden;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.musical-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: waveFloat 12s ease-in-out infinite;
}

.wave-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.wave-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    animation-delay: 4s;
}

.wave-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 8s;
}

.floating-instruments {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-instruments i {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
    animation: instrumentFloat 15s ease-in-out infinite;
}

.instrument-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.instrument-2 {
    top: 20%;
    right: 10%;
    animation-delay: 3s;
}

.instrument-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 6s;
}

.instrument-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 9s;
}

.instrument-5 {
    top: 60%;
    left: 50%;
    animation-delay: 12s;
}

.section-header-creative {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #333;
    animation: badgeFloat 3s ease-in-out infinite;
}

.header-badge i {
    color: #FF6B6B;
    animation: magicSparkle 2s ease-in-out infinite;
}

.section-title-creative {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #333;
    animation: titleBounceIn 1s ease-out;
}

.title-highlight {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFECD2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowText 4s ease-in-out infinite;
    font-weight: 900;
}

.section-subtitle-creative {
    font-size: 1.4rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: subtitleSlideUp 1s ease-out 0.3s both;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 5rem;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 260px);
    background: linear-gradient(to bottom, #FF6B6B, #4ECDC4, #45B7D1);
    border-radius: 2px;
    z-index: 1;
}

.step-creative {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6rem;
    position: relative;
    animation: stepSlideIn 1s ease-out;
    min-height: 200px;
}

.step-creative:nth-child(even) {
    flex-direction: row-reverse;
}

.step-creative:nth-child(even) .step-card {
    margin-right: 6rem;
    margin-left: 0;
    margin-top: 1rem;
}

.step-creative:last-child {
    margin-bottom: 2rem;
}

.step-creative[data-step="1"] {
    animation-delay: 0.5s;
}

.step-creative[data-step="2"] {
    animation-delay: 0.7s;
}

.step-creative[data-step="3"] {
    animation-delay: 0.9s;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: numberPulse 3s ease-in-out infinite;
}

.number-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    margin-left: 6rem;
    margin-top: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    z-index: 5;
}

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

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-icon-creative {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    animation: iconBounce 2s ease-in-out infinite;
}

.icon-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 2s;
}

.step-content-creative {
    text-align: center;
}

.step-content-creative h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.step-content-creative p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: tagFloat 3s ease-in-out infinite;
}

.feature-tag:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-tag:nth-child(3) {
    animation-delay: 1s;
}

.process-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ctaBounceIn 1s ease-out 1.2s both;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}

.cta-content p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.process-cta-button {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: ctaButtonPulse 3s ease-in-out infinite;
}

.process-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6);
}

.process-cta-button i {
    font-size: 1.5rem;
    animation: rocketSpin 3s ease-in-out infinite;
}

/* Process Creative Animations */
@keyframes waveFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes instrumentFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

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

@keyframes magicSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes titleBounceIn {
    0% { opacity: 0; transform: translateY(-50px) scale(0.8); }
    60% { opacity: 1; transform: translateY(10px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes rainbowText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes stepSlideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes numberPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

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

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 1; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}

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

@keyframes ctaBounceIn {
    0% { opacity: 0; transform: translateY(50px) scale(0.8); }
    60% { opacity: 1; transform: translateY(-10px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ctaButtonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes rocketSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Styles Section - Creative & Musical */
.styles-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    position: relative;
    overflow: hidden;
}

.styles-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.music-spectrum {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    gap: 8px;
    opacity: 0.1;
}

.spectrum-bar {
    width: 12px;
    background: linear-gradient(to top, #FF6B6B, #4ECDC4, #45B7D1);
    border-radius: 6px;
    animation: spectrumPulse 2s ease-in-out infinite;
}

.bar-1 { height: 60px; animation-delay: 0s; }
.bar-2 { height: 120px; animation-delay: 0.1s; }
.bar-3 { height: 180px; animation-delay: 0.2s; }
.bar-4 { height: 240px; animation-delay: 0.3s; }
.bar-5 { height: 300px; animation-delay: 0.4s; }
.bar-6 { height: 240px; animation-delay: 0.5s; }
.bar-7 { height: 180px; animation-delay: 0.6s; }
.bar-8 { height: 120px; animation-delay: 0.7s; }
.bar-9 { height: 60px; animation-delay: 0.8s; }
.bar-10 { height: 100px; animation-delay: 0.9s; }

.floating-notes-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-notes-bg i {
    position: absolute;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.08);
    animation: notesFloat 20s ease-in-out infinite;
}

.note-bg-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.note-bg-2 {
    top: 20%;
    right: 15%;
    animation-delay: 4s;
}

.note-bg-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 8s;
}

.note-bg-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 12s;
}

.note-bg-5 {
    top: 50%;
    left: 50%;
    animation-delay: 16s;
}

.section-header-styles {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.styles-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    animation: stylesBadgeFloat 3s ease-in-out infinite;
}

.styles-badge i {
    color: #FFD700;
    animation: paletteRotate 4s ease-in-out infinite;
}

.section-title-styles {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    animation: stylesTitleBounce 1s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.styles-highlight {
    background: linear-gradient(45deg, #FFD700, #FF6B6B, #4ECDC4, #96CEB4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: stylesRainbow 4s ease-in-out infinite;
    font-weight: 900;
}

.section-subtitle-styles {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: stylesSubtitleSlide 1s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.styles-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.style-card-creative {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: styleCardFloat 1s ease-out;
}

.style-card-creative:nth-child(1) { animation-delay: 0.1s; }
.style-card-creative:nth-child(2) { animation-delay: 0.2s; }
.style-card-creative:nth-child(3) { animation-delay: 0.3s; }
.style-card-creative:nth-child(4) { animation-delay: 0.4s; }
.style-card-creative:nth-child(5) { animation-delay: 0.5s; }
.style-card-creative:nth-child(6) { animation-delay: 0.6s; }
.style-card-creative:nth-child(7) { animation-delay: 0.7s; }
.style-card-creative:nth-child(8) { animation-delay: 0.8s; }

.style-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.romantic .style-glow { background: linear-gradient(135deg, #FF6B6B, #FF8A80); }
.energetic .style-glow { background: linear-gradient(135deg, #4ECDC4, #26C6DA); }
.playful .style-glow { background: linear-gradient(135deg, #96CEB4, #81C784); }
.intimate .style-glow { background: linear-gradient(135deg, #FFECD2, #FCB045); }
.celebration .style-glow { background: linear-gradient(135deg, #667eea, #764ba2); }
.custom .style-glow { background: linear-gradient(135deg, #f093fb, #f5576c); }
.urban .style-glow { background: linear-gradient(135deg, #FF6B6B, #4ECDC4); }
.elegant .style-glow { background: linear-gradient(135deg, #667eea, #764ba2); }

.style-card-creative:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.style-card-creative:hover .style-glow {
    opacity: 1;
    animation: glowPulseStyle 2s ease-in-out infinite;
}

.style-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: iconHover 3s ease-in-out infinite;
}

.romantic .style-icon-container { background: linear-gradient(135deg, #FF6B6B, #FF8A80); }
.energetic .style-icon-container { background: linear-gradient(135deg, #4ECDC4, #26C6DA); }
.playful .style-icon-container { background: linear-gradient(135deg, #96CEB4, #81C784); }
.intimate .style-icon-container { background: linear-gradient(135deg, #FFECD2, #FCB045); color: #333; }
.celebration .style-icon-container { background: linear-gradient(135deg, #667eea, #764ba2); }
.custom .style-icon-container { background: linear-gradient(135deg, #f093fb, #f5576c); }
.urban .style-icon-container { background: linear-gradient(135deg, #FF6B6B, #4ECDC4); }
.elegant .style-icon-container { background: linear-gradient(135deg, #2C3E50, #34495E); }

.icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: iconPulseEffect 2s ease-in-out infinite;
}

.style-card-creative h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.style-card-creative p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.style-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.style-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: tagWiggle 3s ease-in-out infinite;
}

.style-tag:nth-child(2) {
    animation-delay: 0.5s;
}

.style-emoji {
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    animation: emojiDance 4s ease-in-out infinite;
}

.styles-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-styles-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: stylesCtaBounce 1s ease-out 1s both;
}

.cta-styles-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-styles-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.styles-cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA726 100%);
    color: #333;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: stylesButtonPulse 3s ease-in-out infinite;
}

.styles-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

.styles-cta-button i {
    font-size: 1.5rem;
    animation: magicWand 3s ease-in-out infinite;
}

/* Styles Creative Animations */
@keyframes spectrumPulse {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

@keyframes notesFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    75% { transform: translateY(-15px) rotate(-90deg); }
}

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

@keyframes paletteRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes stylesTitleBounce {
    0% { opacity: 0; transform: translateY(-50px) scale(0.8); }
    60% { opacity: 1; transform: translateY(10px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stylesRainbow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes stylesSubtitleSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 0.9; transform: translateY(0); }
}

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

@keyframes glowPulseStyle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

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

@keyframes iconPulseEffect {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes tagWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes emojiDance {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(10deg); }
    75% { transform: scale(0.9) rotate(-10deg); }
}

@keyframes stylesCtaBounce {
    0% { opacity: 0; transform: translateY(50px) scale(0.8); }
    60% { opacity: 1; transform: translateY(-10px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stylesButtonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes magicWand {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

/* Examples Section - Creative Version */
.examples-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.examples-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.vinyl-collection {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-vinyl {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #333, #000);
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
}

.floating-vinyl::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-bg-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.vinyl-bg-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    transform: scale(0.7);
}

.vinyl-bg-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
    transform: scale(0.9);
}

.sound-waves-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ripple 4s infinite ease-out;
}

.wave-1 {
    top: 20%;
    left: 20%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.wave-2 {
    top: 50%;
    right: 25%;
    width: 150px;
    height: 150px;
    animation-delay: 1s;
}

.wave-3 {
    bottom: 30%;
    left: 40%;
    width: 180px;
    height: 180px;
    animation-delay: 2s;
}

.wave-4 {
    top: 30%;
    right: 10%;
    width: 120px;
    height: 120px;
    animation-delay: 3s;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.musical-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.musical-symbols i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 8s ease-in-out infinite;
}

.symbol-1 {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
}

.symbol-2 {
    top: 70%;
    left: 70%;
    animation-delay: 1.5s;
}

.symbol-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.symbol-4 {
    top: 40%;
    left: 10%;
    animation-delay: 4.5s;
}

.symbol-5 {
    bottom: 40%;
    left: 50%;
    animation-delay: 6s;
}

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

.section-header-examples {
    text-align: center;
    margin-bottom: 4rem;
}

.examples-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: bounce 2s infinite;
}

.section-title-examples {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.examples-highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.section-subtitle-examples {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.examples-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.example-card-creative {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.example-card-creative:hover {
    transform: translateY(-15px) scale(1.02);
}

.card-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 200% 200%;
    border-radius: 22px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.example-card-creative:hover .card-glow-effect {
    opacity: 1;
}

.romantic-vibe .card-glow-effect {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e, #ffa8a8);
}

.joyful-vibe .card-glow-effect {
    background: linear-gradient(45deg, #4ecdc4, #6ee6dd, #8ef0e7);
}

.example-image-creative {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay-creative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.example-card-creative:hover .image-overlay-creative {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.play-button-container {
    position: relative;
    z-index: 3;
}

.play-btn-creative {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: none;
    position: relative;
    backdrop-filter: blur(10px);
}

.play-btn-creative:hover {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.play-btn-creative i {
    margin-left: 3px;
}

.play-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.3);
    animation: rippleEffect 2s infinite;
    opacity: 0;
}

.example-card-creative.playing .play-ripple {
    opacity: 1;
}

@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.audio-info-creative {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.waveform {
    display: flex;
    align-items: center;
    gap: 2px;
}

.waveform .bar {
    width: 3px;
    height: 12px;
    background: #4ecdc4;
    border-radius: 2px;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.waveform .bar:nth-child(1) { animation-delay: 0s; }
.waveform .bar:nth-child(2) { animation-delay: 0.2s; }
.waveform .bar:nth-child(3) { animation-delay: 0.4s; }
.waveform .bar:nth-child(4) { animation-delay: 0.6s; }
.waveform .bar:nth-child(5) { animation-delay: 0.8s; }

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

.audio-duration-creative {
    font-weight: 600;
    font-size: 0.85rem;
}

.genre-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.genre-tag.romantic {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
}

.genre-tag.joyful {
    background: linear-gradient(45deg, #4ecdc4, #6ee6dd);
    color: white;
}

.example-content-creative {
    padding: 2rem;
}

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

.content-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.emotion-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.example-content-creative p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.song-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-pill {
    background: var(--background-light);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.cta-examples-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-examples-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-examples-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.examples-cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.examples-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .examples-section {
        padding: 4rem 0;
    }
    
    .section-title-examples {
        font-size: 2.5rem;
    }
    
    .section-subtitle-examples {
        font-size: 1.1rem;
    }
    
    .examples-grid-creative {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .emotion-indicator {
        align-self: flex-start;
    }
    
    .floating-vinyl {
        width: 100px;
        height: 100px;
    }
    
    .musical-symbols i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title-examples {
        font-size: 2rem;
    }
    
    .example-image-creative {
        height: 200px;
    }
    
    .play-btn-creative {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-examples-content {
        padding: 2rem 1.5rem;
    }
    
    .examples-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Testimonials Section - Creative Version */
.testimonials-section-creative {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        #ff9a9e 0%, 
        #fecfef 20%, 
        #fecfef 40%, 
        #ff9a9e 60%, 
        #a8edea 80%, 
        #fed6e3 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.heart {
    position: absolute;
    font-size: 2rem;
    animation: floatHeart 8s ease-in-out infinite;
    opacity: 0.3;
}

.heart-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.heart-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.heart-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 3s;
}

.heart-4 {
    top: 60%;
    right: 25%;
    animation-delay: 4.5s;
}

.heart-5 {
    bottom: 40%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.musical-notes-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.note {
    position: absolute;
    font-size: 1.5rem;
    animation: musicFloat 6s ease-in-out infinite;
    opacity: 0.2;
}

.note-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.note-2 {
    top: 50%;
    left: 85%;
    animation-delay: 1s;
}

.note-3 {
    bottom: 30%;
    right: 10%;
    animation-delay: 2s;
}

.note-4 {
    top: 70%;
    left: 15%;
    animation-delay: 3s;
}

.note-5 {
    top: 35%;
    right: 30%;
    animation-delay: 4s;
}

.note-6 {
    bottom: 15%;
    left: 60%;
    animation-delay: 5s;
}

@keyframes musicFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.emotion-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: bubbleFloat 10s infinite ease-in-out;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 80%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 30%;
    animation-delay: 6s;
}

.bubble-5 {
    width: 120px;
    height: 120px;
    bottom: 40%;
    right: 60%;
    animation-delay: 8s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-50px);
        opacity: 0.3;
    }
}

.testimonials-section-creative .container {
    position: relative;
    z-index: 2;
}

.section-header-testimonials {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: bounce 2s infinite;
}

.section-title-testimonials {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.testimonials-highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.section-subtitle-testimonials {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonials-creative-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    height: 450px;
}

.testimonial-card-creative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.testimonial-card-creative.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.testimonial-card-creative.active {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1) border-box;
}

.card-decoration {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.floating-emojis {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
}

.emoji {
    font-size: 1.5rem;
    animation: emojiFloat 3s ease-in-out infinite;
}

.emoji-1 {
    animation-delay: 0s;
}

.emoji-2 {
    animation-delay: 0.5s;
}

.emoji-3 {
    animation-delay: 1s;
}

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

.emotion-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.emotion-tag.motherly {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.emotion-tag.romantic {
    background: linear-gradient(45deg, #e55d87, #5fc3e4);
}

.emotion-tag.family {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
}

.testimonial-text-creative {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

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

.author-avatar {
    position: relative;
}

.author-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.author-info-creative h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.author-purpose {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
}

.rating-creative {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonials-controls-creative {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.control-btn-creative {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.control-btn-creative:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.dots-container-creative {
    display: flex;
    gap: 0.8rem;
}

.dot-creative {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot-creative.active {
    background: white;
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-testimonials-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-testimonials-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-testimonials-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.testimonials-cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section-creative {
        padding: 4rem 0;
    }
    
    .section-title-testimonials {
        font-size: 2.5rem;
    }
    
    .section-subtitle-testimonials {
        font-size: 1.1rem;
    }
    
    .testimonials-creative-container {
        height: 500px;
    }
    
    .testimonial-card-creative {
        padding: 2rem;
    }
    
    .testimonial-text-creative {
        font-size: 1.1rem;
    }
    
    .testimonial-author-creative {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .heart {
        font-size: 1.5rem;
    }
    
    .note {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title-testimonials {
        font-size: 2rem;
    }
    
    .testimonials-creative-container {
        height: 550px;
    }
    
    .testimonial-card-creative {
        padding: 1.5rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .cta-testimonials-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Pricing Section - Launch Offer */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="white" fill-opacity="0.03"><circle cx="30" cy="30" r="3"/></g></svg>');
    z-index: 1;
}

.pricing-section .section-header {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.pricing-section .section-title {
    color: var(--white);
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.pricing-single-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.price-card-launch {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    border: 3px solid var(--warning-color);
}

.price-card-launch:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.launch-badge {
    background: linear-gradient(135deg, var(--warning-color) 0%, #FFB800 100%);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    animation: launchPulse 2s infinite;
}

.launch-badge i {
    margin-right: 0.5rem;
    animation: rocketMove 3s ease-in-out infinite;
}

.price-header-launch {
    padding: 2.5rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
}

.price-header-launch::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--white);
    border-radius: 20px 20px 0 0;
}

.price-header-launch h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-launch {
    margin-bottom: 1rem;
    position: relative;
}

.price-launch .currency {
    font-size: 2rem;
    vertical-align: top;
    font-weight: 600;
}

.price-launch .amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--warning-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: priceGlow 3s ease-in-out infinite;
}

.price-launch .currency-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.original-price {
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
}

.original-price span {
    text-decoration: line-through;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.price-features-launch {
    list-style: none;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-features-launch li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.price-features-launch li:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--warning-color);
    transform: translateY(-2px);
}

.price-features-launch i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.price-features-launch li:hover i {
    color: var(--warning-color);
}

.urgency-container {
    text-align: center;
    margin: 1rem 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--error-color) 0%, #FF6B6B 100%);
    color: var(--white);
    border-radius: 15px;
    animation: urgencyBlink 2s infinite;
}

.urgency-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-text i {
    margin-right: 0.5rem;
    animation: fireFlicker 1.5s ease-in-out infinite;
}

.price-btn-launch {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    padding: 1.5rem;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(56, 161, 105, 0.4);
    position: relative;
    overflow: hidden;
}

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

.price-btn-launch:hover::before {
    left: 100%;
}

.price-btn-launch:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 161, 105, 0.6);
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 2rem 2rem;
    background: var(--background-light);
    border-radius: 0 0 20px 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Animations for Launch Pricing */
@keyframes launchPulse {
    0%, 100% {
        background: linear-gradient(135deg, var(--warning-color) 0%, #FFB800 100%);
    }
    50% {
        background: linear-gradient(135deg, #FFB800 0%, var(--warning-color) 100%);
    }
}

@keyframes rocketMove {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(5deg);
    }
    75% {
        transform: translateY(-1px) rotate(-3deg);
    }
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        text-shadow: 0 2px 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

@keyframes urgencyBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes fireFlicker {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(1deg);
    }
    75% {
        transform: scale(0.9) rotate(-1deg);
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.checkbox-group {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    grid-column: 1 / -1;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--primary-light);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
      .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .hero-visual-creative {
        height: 400px;
    }
    
    .vinyl-record {
        width: 220px;
        height: 220px;
    }
    
    .vinyl-2 {
        transform: translate(-35%, -35%) scale(0.75);
    }
    
    .vinyl-3 {
        transform: translate(-50%, -50%) scale(0.55);
    }
    
    .vinyl-center {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .note-group {
        font-size: 1.5rem;
        gap: 0.75rem;
    }
    
    .sound-waves {
        bottom: 5%;
    }
    
    .wave-bar {
        width: 6px;
    }
    
    .cta-button-creative {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
      .section-title-creative {
        font-size: 2.8rem;
    }
    
    .process-timeline {
        margin-bottom: 3rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-creative {
        flex-direction: column !important;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .step-creative:nth-child(even) .step-card {
        margin-right: 0;
        margin-left: 0;
    }
    
    .step-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 1.5rem;
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-card {
        margin-left: 0;
        max-width: 100%;
        padding: 2rem;
    }
    
    .step-icon-creative {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-content-creative h3 {
        font-size: 1.6rem;
    }
    
    .step-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
      .process-cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .section-title-styles {
        font-size: 2.8rem;
    }
    
    .styles-grid-creative {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .style-card-creative {
        padding: 2rem;
    }
    
    .style-icon-container {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .cta-styles-content {
        padding: 2rem;
    }
    
    .cta-styles-content h3 {
        font-size: 1.8rem;
    }
    
    .styles-cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
      .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-single-container {
        margin: 0 1rem;
    }
    
    .price-card-launch {
        transform: scale(1);
    }
    
    .price-card-launch:hover {
        transform: scale(1.02);
    }
    
    .pricing-section .section-title {
        font-size: 2.2rem;
    }
    
    .price-features-launch {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .price-btn-launch {
        font-size: 1.1rem;
        margin: 0 1.5rem 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .hero-visual-creative {
        height: 300px;
    }
    
    .vinyl-record {
        width: 180px;
        height: 180px;
    }
    
    .vinyl-2 {
        transform: translate(-30%, -30%) scale(0.7);
    }
    
    .vinyl-3 {
        transform: translate(-45%, -45%) scale(0.5);
    }
    
    .vinyl-center {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .cta-button-creative {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .note-group {
        font-size: 1.2rem;
    }
    
    .sound-waves {
        gap: 4px;
    }
    
    .wave-bar {
        width: 4px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
      .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title-creative {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .section-subtitle-creative {
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .step-icon-creative {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .step-content-creative h3 {
        font-size: 1.4rem;
    }
    
    .step-content-creative p {
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-content {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .process-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
      .floating-instruments i {
        font-size: 2rem;
    }
    
    .section-title-styles {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .section-subtitle-styles {
        font-size: 1.2rem;
    }
    
    .styles-grid-creative {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .style-card-creative {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .style-icon-container {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .style-card-creative h3 {
        font-size: 1.3rem;
    }
    
    .style-card-creative p {
        font-size: 0.9rem;
    }
    
    .style-tags {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .style-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .style-emoji {
        font-size: 1.5rem;
    }
    
    .cta-styles-content {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .cta-styles-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-styles-content p {
        font-size: 1.1rem;
    }
    
    .styles-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .music-spectrum {
        gap: 4px;
    }
    
    .spectrum-bar {
        width: 8px;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .pricing-single-container {
        margin: 0 0.5rem;
    }
    
    .pricing-section .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .price-header-launch {
        padding: 2rem 1.5rem 1rem;
    }
    
    .price-header-launch h3 {
        font-size: 1.6rem;
    }
    
    .price-launch .amount {
        font-size: 3.5rem;
    }
    
    .price-features-launch {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .price-features-launch li {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .price-btn-launch {
        margin: 0 1rem 1.5rem;
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .urgency-container {
        margin: 1rem;
        padding: 0.75rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
}

/* Mini Audio Player */
.mini-player {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1rem;
}

.mini-player.active {
    bottom: 0;
}

.mini-player-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 2fr auto auto;
    align-items: center;
    gap: 1.5rem;
}

.mini-player-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.mini-player-artwork {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mini-player-text {
    min-width: 0;
}

.mini-player-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-artist {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-control-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.mini-control-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.mini-control-btn.primary {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.mini-control-btn.primary:hover {
    background: var(--primary-dark);
}

.mini-player-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.mini-time {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    min-width: 35px;
    text-align: center;
}

.mini-progress-container {
    flex: 1;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
}

.mini-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: visible;
}

.mini-progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.mini-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 2px solid var(--white);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 2;
}

.mini-progress-container:hover .mini-progress-handle,
.mini-progress-container.dragging .mini-progress-handle {
    opacity: 1;
}

.mini-progress-bar:hover {
    height: 6px;
    transition: height 0.2s ease;
}

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

.mini-volume-container {
    width: 80px;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
}

.mini-volume-bar {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: visible;
}

.mini-volume-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 70%;
    transition: width 0.1s ease;
}

.mini-volume-handle {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border: 2px solid var(--white);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 2;
}

.mini-volume-container:hover .mini-volume-handle,
.mini-volume-container.dragging .mini-volume-handle {
    opacity: 1;
}

.mini-volume-bar:hover {
    height: 5px;
    transition: height 0.2s ease;
}

/* Responsive Mini Player */
@media (max-width: 768px) {
    .mini-player-content {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }
    
    .mini-player-progress,
    .mini-player-volume {
        display: none;
    }
    
    .mini-player-info {
        min-width: 0;
        flex: 1;
    }
    
    .mini-player-controls {
        gap: 0.25rem;
    }
    
    .mini-control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .mini-control-btn.primary {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mini-player {
        padding: 0.5rem;
    }
    
    .mini-player-artwork {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .mini-player-title {
        font-size: 0.8rem;
    }
      .mini-player-artist {
        font-size: 0.7rem;
    }
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #333;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.whatsapp-chat.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.whatsapp-header {
    background: #075E54;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.whatsapp-status {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: statusBlink 2s infinite;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.whatsapp-body {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
    background: #ECE5DD;
}

.whatsapp-message {
    margin-bottom: 1rem;
    animation: fadeInUp 0.3s ease;
}

.bot-message .message-content {
    background: white;
    color: #333;
    padding: 0.75rem 1rem;
    border-radius: 18px 18px 18px 4px;
    max-width: 80%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-message .message-content {
    background: #DCF8C6;
    color: #333;
    padding: 0.75rem 1rem;
    border-radius: 18px 18px 4px 18px;
    max-width: 80%;
    margin-left: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.25rem;
    text-align: right;
}

.bot-message .message-time {
    text-align: left;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-reply {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quick-reply:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

.whatsapp-footer {
    padding: 1rem;
    background: white;
    border-top: 1px solid #E5E5E5;
}

.whatsapp-input-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.whatsapp-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.whatsapp-input:focus {
    border-color: #25D366;
}

.whatsapp-send {
    width: 40px;
    height: 40px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.whatsapp-send:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.whatsapp-disclaimer {
    text-align: center;
    margin-top: 0.5rem;
}

.whatsapp-disclaimer small {
    color: #666;
    font-size: 0.75rem;
}

/* Animations */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 5px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

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

/* Responsive WhatsApp Widget */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-chat {
        width: calc(100vw - 40px);
        right: -10px;
        max-height: 400px;
    }
    
    .whatsapp-tooltip {
        right: 60px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .quick-replies {
        gap: 0.4rem;
    }
    
    .quick-reply {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .whatsapp-chat {
        width: calc(100vw - 20px);
        right: -20px;
        bottom: 70px;
        max-height: 350px;
        border-radius: 15px;
    }
    
    .whatsapp-header {
        padding: 0.75rem;
    }
    
    .whatsapp-body {
        padding: 0.75rem;
        max-height: 200px;
    }
    
    .whatsapp-footer {
        padding: 0.75rem;
    }
    
    .quick-reply {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }
}

/* Ensure WhatsApp widget is above mini player */
.whatsapp-widget {
    z-index: 1001;
}

/* Animation for better UX */
.whatsapp-chat {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.whatsapp-chat.active {
    animation-name: slideInUp;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}
