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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

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

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.brand-tagline {
    font-size: 12px;
    color: #a1a1aa;
    font-weight: 500;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-item:hover,
.nav-item.active {
    color: #10b981;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    transition: width 0.3s ease;
}

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

/* Version Selector */
.version-selector {
    position: relative;
    margin-right: 40px;
}

.version-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: #a1a1aa;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.version-btn:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.version-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 8px;
}

.version-selector:hover .version-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 0 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #a1a1aa;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dropdown-item.active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dropdown-item i {
    width: 16px;
    font-size: 14px;
    display: inline-block !important;
    visibility: visible !important;
}

/* Ensure Font Awesome icons are visible */
.fas, .far, .fab {
    display: inline-block !important;
    visibility: visible !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.cta-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: none;
    padding: 40px 24px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.mobile-nav-item {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-item:hover {
    color: #10b981;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #10b981;
    padding: 16px 32px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #10b981, #059669);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #059669, #047857);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #10b981, #34d399);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: #71717a;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Audio Interface */
.audio-interface {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    max-width: 500px;
    width: 100%;
}

.interface-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.interface-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.interface-actions {
    display: flex;
    gap: 8px;
}

.interface-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #a1a1aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.interface-btn:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.waveform-section {
    margin-bottom: 20px;
}

.track-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.track-name {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.track-time {
    font-size: 12px;
    color: #71717a;
    font-family: 'SF Mono', Monaco, monospace;
}

.waveform-container {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.waveform {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 2px;
    height: 80px;
}

.wave-segment {
    width: 3px;
    background: linear-gradient(to top, #10b981, #059669);
    border-radius: 2px;
    animation: wave-dance 2s ease-in-out infinite;
}

.wave-segment:nth-child(1) { animation-delay: 0s; }
.wave-segment:nth-child(2) { animation-delay: 0.1s; }
.wave-segment:nth-child(3) { animation-delay: 0.2s; }
.wave-segment:nth-child(4) { animation-delay: 0.3s; }
.wave-segment:nth-child(5) { animation-delay: 0.4s; }
.wave-segment:nth-child(6) { animation-delay: 0.5s; }
.wave-segment:nth-child(7) { animation-delay: 0.6s; }
.wave-segment:nth-child(8) { animation-delay: 0.7s; }
.wave-segment:nth-child(9) { animation-delay: 0.8s; }
.wave-segment:nth-child(10) { animation-delay: 0.9s; }
.wave-segment:nth-child(11) { animation-delay: 1.0s; }
.wave-segment:nth-child(12) { animation-delay: 1.1s; }
.wave-segment:nth-child(13) { animation-delay: 1.2s; }
.wave-segment:nth-child(14) { animation-delay: 1.3s; }
.wave-segment:nth-child(15) { animation-delay: 1.4s; }
.wave-segment:nth-child(16) { animation-delay: 1.5s; }

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

.playhead {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 30%;
    width: 2px;
    background: #ffffff;
    border-radius: 1px;
    animation: playhead-move 4s linear infinite;
}

@keyframes playhead-move {
    0% { left: 16px; }
    100% { left: calc(100% - 16px); }
}

.controls-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.play-control {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.play-control:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.volume-control i {
    color: #a1a1aa;
    font-size: 16px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #111111;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    transform: scale(1.02);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.featured-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.service-description {
    color: #a1a1aa;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #a1a1aa;
    font-size: 14px;
}

.feature-item i {
    color: #10b981;
    font-size: 12px;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #10b981;
}

.service-cta {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.service-cta:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #0f0f0f;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 32px;
    line-height: 1.7;
}

.experience-timeline {
    margin-bottom: 32px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 32px;
    width: 2px;
    height: 40px;
    background: rgba(16, 185, 129, 0.3);
}

.timeline-marker {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-content p {
    color: #a1a1aa;
    font-size: 14px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a1a1aa;
    font-size: 14px;
}

.credential-item i {
    color: #10b981;
    font-size: 16px;
    width: 20px;
}

.profile-showcase {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.profile-image {
    position: relative;
    margin-bottom: 24px;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    margin: 0 auto;
}

.profile-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-details h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-details p {
    color: #a1a1aa;
    font-size: 16px;
    margin-bottom: 16px;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.stars {
    color: #f59e0b;
    font-size: 18px;
}

.rating-count {
    color: #71717a;
    font-size: 14px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.achievement:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.achievement-icon {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 14px;
    flex-shrink: 0;
}

.achievement-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.achievement-number {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.achievement-label {
    font-size: 11px;
    color: #71717a;
    margin-top: 2px;
}

/* Work Section */
.work {
    padding: 120px 0;
    background: #111111;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.work-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.work-preview {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.preview-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-highlight-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.highlight-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.highlight-stat .stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.highlight-stat .stat-content {
    flex: 1;
}

.highlight-stat .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 4px;
}

.highlight-stat .stat-name {
    font-size: 14px;
    color: #a1a1aa;
    font-weight: 500;
}

.audio-visualization {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 60px;
}

.viz-bar {
    width: 4px;
    background: linear-gradient(to top, #10b981, #059669);
    border-radius: 2px;
    animation: viz-pulse 2s ease-in-out infinite;
}

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

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

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.work-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.work-info-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-category {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.work-duration {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-family: 'SF Mono', Monaco, monospace;
    backdrop-filter: blur(10px);
}

.work-details {
    padding: 24px;
}

.work-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.work-description {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.work-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #0f0f0f;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-title {
    color: #71717a;
    font-size: 14px;
}

.testimonial-rating {
    margin-left: auto;
}

.testimonial-rating .stars {
    color: #f59e0b;
    font-size: 16px;
}

.testimonial-text {
    color: #a1a1aa;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #111111;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.faq-stat {
    text-align: center;
}

.faq-stat .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.faq-stat .stat-label {
    font-size: 12px;
    color: #71717a;
    margin-top: 4px;
}

/* FAQ Support Info */
.faq-support-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.support-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.08);
}

.support-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.support-content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.support-content p {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.support-link:hover {
    color: #059669;
    transform: translateX(4px);
}

.process-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.process-preview:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.process-preview h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.mini-step span {
    color: #a1a1aa;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-icon {
    color: #10b981;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #0f0f0f;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.info-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-content p {
    color: #a1a1aa;
    font-size: 14px;
    margin-bottom: 4px;
}

.info-note {
    color: #71717a;
    font-size: 12px;
}

.contact-cta {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.contact-cta h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-cta p {
    color: #a1a1aa;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-header p {
    color: #a1a1aa;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group select {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #71717a;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #71717a;
    font-size: 12px;
}

.form-note i {
    color: #10b981;
}

.form-footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.form-footer-centered .form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #10b981;
    font-size: 12px;
    text-align: center;
}

.form-footer-centered .form-note i {
    color: #10b981;
}

.form-footer-centered .form-note {
    color: #10b981;
    font-size: 12px;
}

.form-footer-centered .form-note span {
    color: #10b981 !important;
    font-size: 12px !important;
}

.form-footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.form-footer-centered .form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #10b981 !important;
    font-size: 12px !important;
    text-align: center;
}

.form-footer-centered .form-note i {
    color: #10b981 !important;
    font-size: 12px !important;
}

/* Security note specific styling */
.security-note {
    color: #10b981 !important;
    font-size: 12px !important;
}

.security-note span,
.security-text {
    color: #10b981 !important;
    font-size: 12px !important;
    font-weight: bold !important;
    font-style: italic !important;
}

.security-note i {
    color: #10b981 !important;
    font-size: 12px !important;
}

/* Override any conflicting styles */
.contact-form-container .form-footer-centered .form-note,
.contact-form-container .form-footer-centered .form-note span {
    color: #10b981 !important;
    font-size: 12px !important;
}

/* Footer */
.footer {
    background: #000000;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 32px;
}

.footer-brand .brand {
    margin-bottom: 16px;
}

.footer-description {
    color: #a1a1aa;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #71717a;
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    color: #a1a1aa;
    font-size: 12px;
}

.badge i {
    color: #10b981;
    font-size: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.back-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-container,
    .about-layout,
    .contact-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-actions .status-pill {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-metrics {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-stats {
        justify-content: center;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .form-footer-centered {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-container {
        gap: 32px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .audio-interface {
        padding: 16px;
    }
    
    .waveform {
        height: 60px;
    }
}