/* ===================================
   VINCENT X - VOIX OFF WEBSITE
   Modern Dark Theme with Studio Vibes
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #16161f;
    
    --text-primary: #f5f5f7;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    
    --accent-primary: #e63946;
    --accent-secondary: #ff4d5a;
    --accent-glow: rgba(230, 57, 70, 0.3);
    
    --gradient-accent: linear-gradient(135deg, #e63946 0%, #ff4d5a 50%, #ff6b6b 100%);
    --gradient-bg: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1200px;
    --container-padding: clamp(1.5rem, 5vw, 3rem);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--accent-glow);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn svg {
    flex-shrink: 0;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

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

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

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

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

.nav-cta {
    color: var(--bg-primary) !important;
    background: var(--gradient-accent);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(230, 57, 70, 0.08) 0%, transparent 60%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

/* Sound Waves Animation */
.sound-waves {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.15;
}

.wave {
    width: 4px;
    background: var(--accent-primary);
    border-radius: 100px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { height: 60px; animation-delay: 0s; }
.wave:nth-child(2) { height: 100px; animation-delay: 0.1s; }
.wave:nth-child(3) { height: 140px; animation-delay: 0.2s; }
.wave:nth-child(4) { height: 100px; animation-delay: 0.3s; }
.wave:nth-child(5) { height: 60px; animation-delay: 0.4s; }

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-star {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================
   HERO SHOWCASE (Photo + Player)
   =================================== */
.hero-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hero-photo-container {
    position: relative;
}

.hero-photo-frame {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(230, 57, 70, 0.15);
    animation: photoFloat 4s ease-in-out infinite;
}

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

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-photo-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.hero-photo-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #22c55e;
    white-space: nowrap;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

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

/* Hero Player */
.hero-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.hero-player:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px var(--accent-glow);
}

.hero-play-btn {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

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

.hero-play-icon {
    position: relative;
    z-index: 1;
}

.hero-play-icon svg {
    width: 22px;
    height: 22px;
    color: var(--bg-primary);
}

.hero-play-icon .icon-pause {
    display: none;
}

.hero-play-btn.playing .icon-play {
    display: none;
}

.hero-play-btn.playing .icon-pause {
    display: block;
}

.hero-play-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    opacity: 0;
    animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-player-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 180px;
}

.hero-player-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.hero-player-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
}

.hero-player-waveform span {
    width: 3px;
    background: var(--accent-primary);
    border-radius: 100px;
    opacity: 0.4;
    transition: all 0.1s ease;
}

.hero-player-waveform span:nth-child(1) { height: 30%; }
.hero-player-waveform span:nth-child(2) { height: 50%; }
.hero-player-waveform span:nth-child(3) { height: 70%; }
.hero-player-waveform span:nth-child(4) { height: 90%; }
.hero-player-waveform span:nth-child(5) { height: 100%; }
.hero-player-waveform span:nth-child(6) { height: 80%; }
.hero-player-waveform span:nth-child(7) { height: 60%; }
.hero-player-waveform span:nth-child(8) { height: 85%; }
.hero-player-waveform span:nth-child(9) { height: 95%; }
.hero-player-waveform span:nth-child(10) { height: 75%; }
.hero-player-waveform span:nth-child(11) { height: 55%; }
.hero-player-waveform span:nth-child(12) { height: 40%; }
.hero-player-waveform span:nth-child(13) { height: 65%; }
.hero-player-waveform span:nth-child(14) { height: 85%; }
.hero-player-waveform span:nth-child(15) { height: 100%; }
.hero-player-waveform span:nth-child(16) { height: 80%; }
.hero-player-waveform span:nth-child(17) { height: 60%; }
.hero-player-waveform span:nth-child(18) { height: 45%; }
.hero-player-waveform span:nth-child(19) { height: 30%; }
.hero-player-waveform span:nth-child(20) { height: 50%; }
.hero-player-waveform span:nth-child(21) { height: 70%; }
.hero-player-waveform span:nth-child(22) { height: 55%; }
.hero-player-waveform span:nth-child(23) { height: 40%; }
.hero-player-waveform span:nth-child(24) { height: 25%; }
.hero-player-waveform span:nth-child(25) { height: 35%; }

/* Waveform animation when playing */
.hero-player.playing .hero-player-waveform span {
    animation: heroWave 0.8s ease-in-out infinite;
    opacity: 1;
}

.hero-player.playing .hero-player-waveform span:nth-child(1) { animation-delay: 0s; }
.hero-player.playing .hero-player-waveform span:nth-child(2) { animation-delay: 0.05s; }
.hero-player.playing .hero-player-waveform span:nth-child(3) { animation-delay: 0.1s; }
.hero-player.playing .hero-player-waveform span:nth-child(4) { animation-delay: 0.15s; }
.hero-player.playing .hero-player-waveform span:nth-child(5) { animation-delay: 0.2s; }
.hero-player.playing .hero-player-waveform span:nth-child(6) { animation-delay: 0.25s; }
.hero-player.playing .hero-player-waveform span:nth-child(7) { animation-delay: 0.3s; }
.hero-player.playing .hero-player-waveform span:nth-child(8) { animation-delay: 0.35s; }
.hero-player.playing .hero-player-waveform span:nth-child(9) { animation-delay: 0.4s; }
.hero-player.playing .hero-player-waveform span:nth-child(10) { animation-delay: 0.45s; }
.hero-player.playing .hero-player-waveform span:nth-child(11) { animation-delay: 0.5s; }
.hero-player.playing .hero-player-waveform span:nth-child(12) { animation-delay: 0.55s; }
.hero-player.playing .hero-player-waveform span:nth-child(13) { animation-delay: 0.6s; }
.hero-player.playing .hero-player-waveform span:nth-child(14) { animation-delay: 0.65s; }
.hero-player.playing .hero-player-waveform span:nth-child(15) { animation-delay: 0.7s; }
.hero-player.playing .hero-player-waveform span:nth-child(16) { animation-delay: 0.75s; }
.hero-player.playing .hero-player-waveform span:nth-child(17) { animation-delay: 0.8s; }
.hero-player.playing .hero-player-waveform span:nth-child(18) { animation-delay: 0.85s; }
.hero-player.playing .hero-player-waveform span:nth-child(19) { animation-delay: 0.9s; }
.hero-player.playing .hero-player-waveform span:nth-child(20) { animation-delay: 0.95s; }
.hero-player.playing .hero-player-waveform span:nth-child(21) { animation-delay: 1s; }
.hero-player.playing .hero-player-waveform span:nth-child(22) { animation-delay: 1.05s; }
.hero-player.playing .hero-player-waveform span:nth-child(23) { animation-delay: 1.1s; }
.hero-player.playing .hero-player-waveform span:nth-child(24) { animation-delay: 1.15s; }
.hero-player.playing .hero-player-waveform span:nth-child(25) { animation-delay: 1.2s; }

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

.hero-player-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
    display: none;
}

.hero-player.playing .hero-player-progress {
    display: block;
}

.hero-player.playing .hero-player-waveform {
    display: none;
}

.hero-progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-accent);
    border-radius: 100px;
    transition: width 0.1s linear;
}

.hero-player-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    display: none;
}

.hero-player.playing .hero-player-time {
    display: block;
}

.hero-player.playing .hero-player-label {
    display: none;
}

.hero-player audio {
    display: none;
}

/* Skip Button */
.hero-skip-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    opacity: 0;
    pointer-events: none;
}

.hero-player.playing .hero-skip-btn {
    opacity: 1;
    pointer-events: auto;
}

.hero-skip-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
    transform: scale(1.1);
}

.hero-skip-btn svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.hero-skip-btn:hover svg {
    color: var(--accent-primary);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-content {
    padding: 1rem 0;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 10px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   VOICE STYLES SECTION
   =================================== */
.voice-styles {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.styles-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.style-tag {
    padding: 0.75rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.style-tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: scale(1.05);
}

.languages {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.language-card {
    text-align: center;
    padding: 2rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all var(--transition-medium);
}

.language-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.language-card .flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.language-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.language-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(230, 57, 70, 0.05);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 8px 8px 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--accent-primary);
    transform: translateX(8px);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.method-icon.fiverr {
    background: rgba(29, 191, 115, 0.1);
}

.method-icon.fiverr svg {
    color: #1dbf73;
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.method-value {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all var(--transition-fast);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b6b7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent-primary);
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right var(--transition-medium);
        border-left: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        border-radius: 20px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-showcase {
        gap: 1.5rem;
    }
    
    .hero-photo-frame {
        width: 120px;
        height: 120px;
    }
    
    .hero-player-waveform {
        display: none;
    }
    
    .hero-player-label {
        font-size: 0.8125rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .languages {
        flex-direction: column;
        align-items: center;
    }
    
    .language-card {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .hero-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-photo-frame {
        width: 120px;
        height: 120px;
    }
    
    .hero-player {
        padding: 0.75rem 1rem 0.75rem 0.75rem;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-play-btn {
        width: 48px;
        height: 48px;
    }
    
    .hero-player-info {
        min-width: 140px;
    }
    
    .hero-player-waveform span {
        width: 2px;
        gap: 2px;
    }
}

/* ===================================
   ANIMATIONS ON SCROLL
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===================================
   DEMOS PAGE STYLES
   =================================== */

/* Hero */
.demos-hero {
    position: relative;
    padding: 10rem 0 8rem;
    background: var(--bg-secondary);
    text-align: center;
    overflow: hidden;
}

.demos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(230, 57, 70, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-waves {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.hero-waves svg {
    width: 100%;
    height: 60px;
}

/* Demos Section */
.demos-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

/* Filter Tabs */
.demos-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.filter-btn.active {
    color: var(--bg-primary);
    background: var(--gradient-accent);
    border-color: transparent;
}

/* Demos Grid */
.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Demo Card */
.demo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.demo-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.demo-visual {
    position: relative;
    height: 160px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo-waveform {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.waveform-bars {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 80px;
}

.waveform-bars span {
    width: 4px;
    background: var(--accent-primary);
    border-radius: 100px;
    animation: waveformBar 1.5s ease-in-out infinite;
}

.waveform-bars span:nth-child(1) { height: 20%; animation-delay: 0s; }
.waveform-bars span:nth-child(2) { height: 40%; animation-delay: 0.05s; }
.waveform-bars span:nth-child(3) { height: 60%; animation-delay: 0.1s; }
.waveform-bars span:nth-child(4) { height: 80%; animation-delay: 0.15s; }
.waveform-bars span:nth-child(5) { height: 100%; animation-delay: 0.2s; }
.waveform-bars span:nth-child(6) { height: 80%; animation-delay: 0.25s; }
.waveform-bars span:nth-child(7) { height: 60%; animation-delay: 0.3s; }
.waveform-bars span:nth-child(8) { height: 80%; animation-delay: 0.35s; }
.waveform-bars span:nth-child(9) { height: 100%; animation-delay: 0.4s; }
.waveform-bars span:nth-child(10) { height: 80%; animation-delay: 0.45s; }
.waveform-bars span:nth-child(11) { height: 60%; animation-delay: 0.5s; }
.waveform-bars span:nth-child(12) { height: 40%; animation-delay: 0.55s; }
.waveform-bars span:nth-child(13) { height: 60%; animation-delay: 0.6s; }
.waveform-bars span:nth-child(14) { height: 80%; animation-delay: 0.65s; }
.waveform-bars span:nth-child(15) { height: 100%; animation-delay: 0.7s; }
.waveform-bars span:nth-child(16) { height: 80%; animation-delay: 0.75s; }
.waveform-bars span:nth-child(17) { height: 60%; animation-delay: 0.8s; }
.waveform-bars span:nth-child(18) { height: 40%; animation-delay: 0.85s; }
.waveform-bars span:nth-child(19) { height: 20%; animation-delay: 0.9s; }
.waveform-bars span:nth-child(20) { height: 40%; animation-delay: 0.95s; }

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

.demo-card:hover .waveform-bars span {
    animation-play-state: paused;
}

.demo-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.demo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
}

.demo-content {
    padding: 1.5rem;
}

.demo-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
}

.demo-content h3 {
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.demo-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 100px;
}

.play-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.play-btn svg {
    width: 18px;
    height: 18px;
    color: var(--bg-primary);
}

.play-btn .icon-pause {
    display: none;
}

.play-btn.playing .icon-play {
    display: none;
}

.play-btn.playing .icon-pause {
    display: block;
}

.progress {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-accent);
    border-radius: 100px;
    transition: width 0.1s linear;
}

.time {
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 35px;
    text-align: right;
}

/* Instructions / Empty State */
.demos-instructions {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 20px;
}

.instructions-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 20px;
}

.instructions-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.demos-instructions h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.demos-instructions p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

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

/* Nav active state */
.nav-link.active {
    color: var(--accent-primary) !important;
}

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

/* Responsive - Demos */
@media (max-width: 768px) {
    .demos-hero {
        padding: 8rem 0 6rem;
    }

    .demos-grid {
        grid-template-columns: 1fr;
    }

    .demos-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ===================================
   SUCCESS PAGE STYLES
   =================================== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.success-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.success-content {
    text-align: center;
    max-width: 500px;
    position: relative;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: scaleIn 0.5s ease;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: #22c55e;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

