/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', system-ui, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.4;
    overflow-x: hidden;
    position: relative;
}

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

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 1000;
    border-bottom: 1px solid rgba(138, 43, 226, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.header-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.02) 0%, 
        rgba(191, 64, 255, 0.01) 50%, 
        rgba(138, 43, 226, 0.02) 100%);
    pointer-events: none;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.logo {
    justify-self: start;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav {
    justify-self: center;
}

.user-actions {
    justify-self: end;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.1) 0%, 
        rgba(191, 64, 255, 0.1) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 
        0 4px 16px rgba(138, 43, 226, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 
        0 6px 24px rgba(138, 43, 226, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.15) inset;
    border-color: rgba(138, 43, 226, 0.5);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

/* Navigation Styles */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    backdrop-filter: blur(20px);
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    position: relative;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #bf40ff);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.2) 0%, 
        rgba(191, 64, 255, 0.15) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 
        0 4px 16px rgba(138, 43, 226, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.nav-link.active .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sign-in-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.sign-in-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.contact-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.menu-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #bf40ff);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.mobile-menu-btn:hover .menu-line {
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.5);
}

/* ==========================================================================
   Enhanced Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -40%;
    z-index: 1;
    width: 1000px;
    height: 900px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}


.hero::after {
    content: '';
    position: absolute;
    top: -5%;
    right: -30%;
    z-index: 1;
    width: 1000px;
    height: 900px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}




/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -10;
    opacity: 0;
}


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

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #8a2be2, #9370db);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: subtlePulse 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.2);
}

.badge-icon::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}

@keyframes subtlePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(138, 43, 226, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(138, 43, 226, 0.3);
    }
}

.badge-text {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.title-line {
    display: block;
    overflow: hidden;
    margin-bottom: 8px;
}

.word {
    display: inline-block;
    margin-right: 16px;
    color: #ffffff;
}

.animate-word:nth-child(1) { animation-delay: 0.1s; }
.animate-word:nth-child(2) { animation-delay: 0.2s; }
.animate-word:nth-child(3) { animation-delay: 0.3s; }
.animate-word:nth-child(4) { animation-delay: 0.4s; }

@keyframes wordReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.highlight-word {
    display: inline-block;
    color: #8a2be2;
    position: relative;
}

.accent-text {
    color: #ffffff;
    display: inline-block;
}

.hero-description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.4;
}

.description-line {
    display: block;
}


.highlight-line {
    color: rgba(138, 43, 226, 0.9);
    font-weight: 600;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-stats {
    display: none;
    gap: 36px;
    margin-bottom: 40px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

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

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 43, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: #888888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    margin-left: 0;
    padding-left: 0;
    justify-content: flex-start;
    align-items: center;
}

.cta-button {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-button.primary {
    background: #1A1A1A;
    color: #E0E0E0;
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid #444;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background: #2a2a2a;
    border-color: #666;
    transform: translateY(-1px);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.15), 0 4px 8px rgba(0, 0, 0, 0.25);
}

.cta-button.secondary {
    background: transparent;
    color: #E0E0E0;
    border: none;
    padding: 14px 0;
}

.cta-button.secondary .btn-icon {
    margin-right: 8px;
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.cta-button.secondary:hover {
    color: #ffffff;
}

.cta-button.secondary:hover .btn-icon {
    transform: scale(1.1);
}

.cta-button.secondary:hover::before {
    opacity: 1;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-button.primary:hover .btn-particles {
    opacity: 1;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.btn-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 14px;
}

.cta-button.secondary:hover .btn-wave {
    transform: scale(1.5);
}

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

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

.trust-indicators {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
    padding-left: 0;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 12px;
    font-weight: 500;
}

.trust-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trust-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #8a2be2;
    border-radius: 3px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Industry Leader - Trophy shape */
.trust-icon.trophy::before {
    background: linear-gradient(135deg, #8a2be2, #9370db);
    border-radius: 50% 50% 20% 20%;
    width: 8px;
    height: 10px;
}

.trust-icon.trophy::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: #8a2be2;
    bottom: 3px;
    border-radius: 1px;
    opacity: 0.6;
}

/* Security - Lock shape */
.trust-icon.security::before {
    background: linear-gradient(135deg, #8a2be2, #9370db);
    border-radius: 3px 3px 5px 5px;
    width: 8px;
    height: 8px;
}

.trust-icon.security::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid #8a2be2;
    border-bottom: none;
    border-radius: 50% 50% 0 0;
    top: 2px;
    background: transparent;
}

/* Speed - Lightning shape */
.trust-icon.speed::before {
    background: linear-gradient(135deg, #8a2be2, #9370db);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 8px;
    height: 10px;
    border-radius: 0;
}

.trust-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
}

.trust-icon:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

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

/* Hero Visual Section */
.hero-visual {
    position: relative;
    max-width: 100%;
}


.ai-interface {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    width: 100%;
    max-width: 520px;
    overflow: hidden;
}


.ai-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    transition: all 0.3s ease;
    border-radius: 24px;
}


.interface-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    border-radius: 24px 24px 0 0;
}

.interface-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent, rgba(255, 255, 255, 0.02));
    pointer-events: none;
    border-radius: 24px 24px 0 0;
}

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

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

.control-dot.red { background: #ff5f57; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #28ca42; }

.interface-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 43, 226, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.interface-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28ca42;
    animation: statusPulse 2s ease-in-out infinite;
}

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

.status-text {
    color: #28ca42;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.interface-content {
    padding: 24px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.ai-dashboard {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.dashboard-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 43, 226, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.status-text {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.upload-card, .files-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.upload-card::before, .files-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upload-card:hover, .files-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(138, 43, 226, 0.18);
}

.upload-card:hover::before, .files-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

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

.upload-zone-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.upload-zone-compact:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.upload-icon {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.upload-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.upload-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

.upload-subtext {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin: 0;
}


.files-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.file-row:last-child {
    border-bottom: none;
}

.file-name {
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
}

.file-status {
    font-size: 10px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.file-status::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: inline-block;
}

.file-status.ready {
    color: rgba(52, 199, 89, 0.9);
    background: rgba(52, 199, 89, 0.1);
}

.file-status.ready::before {
    background: #34c759;
}

.file-status.processing {
    color: rgba(255, 149, 0, 0.9);
    background: rgba(255, 149, 0, 0.1);
}

.file-status.processing::before {
    background: #ff9500;
    animation: pulse 2s infinite;
}

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

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(138, 43, 226, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 43, 226, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

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

.conversation-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.conversation-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: rgba(138, 43, 226, 0.9);
    display: block;
}

.metric-label {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.conversation-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(147, 112, 219, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.message.ai .message-avatar {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(147, 112, 219, 0.2));
}

.message-content {
    flex: 1;
}

.message-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.message.ai .message-text {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.05));
}

.message-time {
    font-size: 12px;
    color: #888888;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    width: fit-content;
    margin-top: 8px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.8);
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: scale(1); opacity: 0.5; }
    30% { transform: scale(1.2); opacity: 1; }
}

.ai-analytics {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.analytics-header {
    margin-bottom: 20px;
}

.analytics-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

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

.analytics-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.analytics-icon {
    font-size: 24px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3));
}

.analytics-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 43, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analytics-label {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(147, 112, 219, 0.08));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 260px;
    box-shadow:
        0 6px 24px rgba(138, 43, 226, 0.2),
        0 3px 12px rgba(0, 0, 0, 0.1);
    animation: floatCard 6s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform: scale(0.9);
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
}

.floating-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(138, 43, 226, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(147, 112, 219, 0.12));
    border-color: rgba(138, 43, 226, 0.5);
}

.floating-card:nth-child(1) {
    top: -5%;
    left: -140px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: -8%;
    right: -60px;
    animation-delay: 1s;
    top: auto;
}

.floating-card:nth-child(3) {
    top: 20%;
    right: -40px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(0) translateX(0); }
}

.floating-card-small {
    position: absolute;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(147, 112, 219, 0.08));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
    box-shadow:
        0 4px 16px rgba(255, 193, 7, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
    animation: floatCard 6s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform: scale(1);
    z-index: 3;
}

.floating-card-small:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 193, 7, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(147, 112, 219, 0.12));
    border-color: rgba(138, 43, 226, 0.4);
}

.floating-card-small:nth-child(1) {
    top: -5%;
    left: -120px;
    animation-delay: 0s;
}

.floating-card-small:nth-child(2) {
    bottom: -8%;
    right: -80px;
    animation-delay: 1s;
}

.floating-card-small:nth-child(3) {
    top: 20%;
    right: -60px;
    animation-delay: 2s;
}

.floating-card-small .card-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.floating-card-small .card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.floating-card-small .card-title {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    white-space: normal;
}

.floating-card-small .card-status {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    white-space: nowrap;
}


.card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card-title {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    white-space: normal;
}

.card-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    font-weight: 400;
}

.card-metric {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.hero-description {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 90%;
}

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

.btn-primary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(147, 112, 219, 0.6));
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.2);
    transform: perspective(1000px) rotateX(0deg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(147, 112, 219, 0.8));
    transform: perspective(1000px) rotateX(-5deg) translateZ(10px);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateX(0deg);
}

.btn-secondary:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: perspective(1000px) rotateX(-5deg) translateZ(10px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
}

/* Hero Section Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }
    
    .hero-visual {
        transform: translateX(0);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .ai-interface {
        border-radius: 16px;
        margin: 0 10px;
    }
    
    .interface-content {
        padding: 16px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .stat-item {
        padding: 8px;
    }
    
    .stat-value {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .dashboard-preview {
        transform: none;
        max-width: 100%;
        margin: 0 10px;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 15px;
        min-height: 300px;
    }
    
    .sidebar {
        padding: 12px;
    }
    
    .menu-item {
        padding: 8px;
        font-size: 12px;
    }
    
    
    
    .floating-card {
        min-width: 160px;
        padding: 12px;
        border-radius: 16px;
    }
    
    .card-avatar {
        width: 32px;
        height: 32px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-subtitle {
        font-size: 11px;
    }
    
    .card-metric {
        font-size: 11px;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0 20px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .ai-interface {
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .interface-header {
        padding: 12px 16px;
    }
    
    .interface-title {
        font-size: 14px;
    }
    
    .interface-content {
        padding: 12px;
    }
    
    .dashboard-title {
        font-size: 16px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .upload-card, .files-card {
        padding: 12px;
    }
    
    .card-title {
        font-size: 12px;
    }
    
    .upload-zone-compact {
        padding: 12px;
    }
    
    .upload-text {
        font-size: 11px;
    }
    
    .upload-btn {
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .file-name {
        font-size: 11px;
    }
    
    .file-status {
        font-size: 9px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .stat-item {
        padding: 6px;
    }
    
    .stat-value {
        font-size: 12px;
    }
    
    .stat-label {
        font-size: 8px;
    }
    
    .dashboard {
        padding: 16px;
    }
    
    .sidebar {
        padding: 10px;
    }
    
    .sidebar-header {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .menu-item {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .menu-item-text {
        font-size: 11px;
    }
    
    .floating-card {
        min-width: 140px;
        padding: 10px;
        border-radius: 14px;
        gap: 8px;
    }
    
    .card-avatar {
        width: 28px;
        height: 28px;
    }
    
    .card-title {
        font-size: 12px;
    }
    
    .card-subtitle {
        font-size: 10px;
    }
    
    .card-metric {
        font-size: 10px;
        padding: 1px 4px;
    }
}

/* ==========================================================================
   Dashboard Preview
   ========================================================================== */

.dashboard-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: all 0.5s ease;
    max-width: 95%;
    margin-left: auto;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) scale(1.01);
}

.dashboard {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.02), transparent);
    border-radius: 16px;
    pointer-events: none;
}

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

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

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.dashboard-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    min-height: 380px;
}

.sidebar {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    transform: perspective(1000px) rotateX(0deg);
}

.menu-item:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: perspective(1000px) rotateX(-2deg) translateZ(5px);
}

.menu-item.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(147, 112, 219, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.menu-item-text {
    font-size: 13px;
    color: #cccccc;
    font-weight: 500;
}

.usage-section {
    margin-top: 24px;
}

.usage-title {
    font-size: 12px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.usage-item {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.usage-item:hover {
    background: rgba(138, 43, 226, 0.08);
    transform: perspective(1000px) rotateX(-2deg) translateZ(5px);
    border-color: rgba(138, 43, 226, 0.15);
}

.usage-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.usage-stats {
    font-size: 11px;
    color: #888888;
}

.main-content {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.content-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.upload-section {
    margin-bottom: 32px;
}

.upload-box {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.2s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.upload-box:hover {
    border-color: rgba(138, 43, 226, 0.4);
    background: rgba(255, 193, 7, 0.05);
    transform: perspective(1000px) rotateX(-2deg) translateZ(5px);
}

.upload-icon {
    font-size: 36px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.upload-text {
    color: #cccccc;
    font-size: 13px;
}

.call-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-header {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.summary-content {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.summary-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(147, 112, 219, 0.2));
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.4);
    text-shadow: 0 0 5px rgba(138, 43, 226, 0.3);
}

/* ==========================================================================
   Features Introduction Section
   ========================================================================== */

.features-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
}

.features-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
}

.intro-title:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    text-shadow: 0 0 25px rgba(138, 43, 226, 0.2);
}

.intro-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* AI Exploration Section */
.ai-exploration {
    padding: 80px 0 80px 0;
    background: transparent;
    position: relative;
}

.exploration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 127, 80, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(255, 127, 80, 0.4);
}

/* Keep AI Discovery Frontiers purple */
.ai-exploration .section-label {
    color: rgba(138, 43, 226, 0.8);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

/* Dashboard Power section golden yellow/amber */
.dashboard-power .section-label {
    color: rgba(255, 193, 7, 0.9);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

/* Apple-style buttons for AI exploration section */
.ai-exploration .cta-button.primary {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ai-exploration .cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.ai-exploration .cta-button.primary:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-exploration .cta-button.secondary {
    background: rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.5);
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(138, 43, 226, 1);
    box-shadow: 
        0 8px 24px rgba(138, 43, 226, 0.15),
        inset 0 1px 0 rgba(138, 43, 226, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
}

.ai-exploration .cta-button.secondary:hover {
    background: rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.7);
    color: rgba(138, 43, 226, 1);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 36px rgba(138, 43, 226, 0.25),
        inset 0 1px 0 rgba(138, 43, 226, 0.2);
}

/* Proper spacing and alignment for AI exploration buttons */
.ai-exploration .hero-buttons {
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .ai-exploration .hero-buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        margin-bottom: 48px;
    }
    
    .ai-exploration .cta-button.primary,
    .ai-exploration .cta-button.secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* Apple-style buttons for hero section */
.hero .cta-button.primary {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hero .cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.hero .cta-button.primary:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero .cta-button.secondary {
    background: rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.5);
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(138, 43, 226, 1);
    box-shadow: 
        0 8px 24px rgba(138, 43, 226, 0.15),
        inset 0 1px 0 rgba(138, 43, 226, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.hero .cta-button.secondary:hover {
    background: rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.7);
    color: rgba(138, 43, 226, 1);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 36px rgba(138, 43, 226, 0.25),
        inset 0 1px 0 rgba(138, 43, 226, 0.2);
}

.hero .cta-button .btn-icon {
    transition: all 0.3s ease;
}

.hero .cta-button.secondary:hover .btn-icon {
    transform: scale(1.1);
}

h2,
.exploration-title,
.brilliance-title,
.power-title,
.call-handling-title,
.voice-tech-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.exploration-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.apple-metrics {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.metric-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px 16px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 76px;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 14px;
    pointer-events: none;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.metric-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(138, 43, 226, 0.9);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.metric-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

.emerging-frontiers-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    max-width: 420px;
}

.emerging-frontiers-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.emerging-frontiers-card:hover {
    transform: scale(1.02);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.frontiers-header {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.frontiers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: rgba(138, 43, 226, 0.8);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.frontiers-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.frontiers-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.frontier-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.frontier-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.15);
}

.frontier-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(138, 43, 226, 0.9);
    flex-shrink: 0;
}

.frontier-content {
    flex: 1;
    min-width: 0;
}

.frontier-label {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.frontier-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.frontiers-footer {
    position: relative;
    z-index: 1;
}

.progress-indicator {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.progress-fill {
    width: 94%;
    height: 100%;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.8), rgba(147, 112, 219, 0.9));
    border-radius: 2px;
    position: relative;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 2px 2px 0;
    animation: shimmer 2s ease-in-out infinite;
}

/* Specific styling for Emerging Frontiers card progress bar */
.emerging-frontiers-card .progress-fill {
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.8), rgba(147, 112, 219, 0.9)) !important;
}


@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.progress-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.exploration-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.primary-action-btn {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(147, 112, 219, 0.9));
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 
        0 4px 16px rgba(138, 43, 226, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.primary-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.primary-action-btn:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(147, 112, 219, 1));
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(138, 43, 226, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1);
}

.secondary-action-btn {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.secondary-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.interface-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.interface-arrow {
    font-size: 20px;
    color: rgba(138, 43, 226, 0.8);
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.3));
}

.voice-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.feature-item:hover {
    background: rgba(138, 43, 226, 0.08);
    border-color: rgba(255, 193, 7, 0.2);
    transform: perspective(1000px) rotateX(-2deg) translateZ(5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
}

.feature-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.feature-title {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 10px;
    color: #888888;
}

/* AI Brilliance Section */
.ai-brilliance {
    padding: 80px 0 80px 0;
    background: transparent;
    position: relative;
}

.brilliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brilliance-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.brilliance-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.brilliance-fact, .power-fact {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.5;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.brilliance-fact {
    border-left: 3px solid #bf40ff;
}

.power-fact {
    border-left: 3px solid #bf40ff;
}

.brilliance-fact strong {
    color: rgba(255, 127, 80, 0.9);
}

.power-fact strong {
    color: rgba(255, 193, 7, 0.9);
}

.personality-selector {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.personality-selector:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.selector-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.selector-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

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

.personality-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.personality-card:hover {
    background: rgba(138, 43, 226, 0.08);
    border-color: rgba(255, 193, 7, 0.2);
    transform: perspective(1000px) rotateX(-2deg) translateZ(5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
}

.personality-card.active {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.3);
}

.personality-image {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #1a1a1a;
    position: relative;
}

.personality-image.professional {
    background: #1a1a1a;
}

.personality-image.friendly {
    background: #1a1a1a;
}

.personality-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.personality-btn {
    background: rgba(138, 43, 226, 0.2);
    color: #ffffff;
    border: 1px solid rgba(138, 43, 226, 0.4);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.personality-btn:hover {
    background: rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.6);
    transform: translateY(-1px);
}

/* Apple Glass Card Design */
.apple-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.apple-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.apple-glass-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.glass-indicator {
    display: flex;
    gap: 6px;
    align-items: center;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: #34C759;
    box-shadow: 0 0 6px rgba(52, 199, 89, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.glass-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.glass-status {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(52, 199, 89, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(52, 199, 89, 0.9);
}

.status-icon {
    animation: sparkle 2s ease-in-out infinite;
}

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

.glass-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(2px);
}

.item-icon {
    font-size: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 6px;
    color: rgba(0, 122, 255, 0.9);
}

.item-info {
    flex: 1;
}

.item-title {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.item-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    line-height: 1.3;
}

.item-value {
    font-size: 10px;
    color: rgba(52, 199, 89, 0.9);
    background: rgba(52, 199, 89, 0.1);
    padding: 3px 7px;
    border-radius: 4px;
    font-weight: 500;
}

.glass-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 14px;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.apple-glass-card .metric-item {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.apple-glass-card .metric-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
    border: none !important;
    box-shadow: none !important;
}

.apple-glass-card .metric-value {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 3px;
}

.apple-glass-card .metric-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Premium Analytics Dashboard - Apple Glass Style */
.premium-dashboard {
    /* Inherits all apple-glass-card styles */
}

.glass-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.showcase-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 8px;
    color: rgba(0, 122, 255, 0.9);
}

.showcase-info {
    flex: 1;
}

.showcase-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.showcase-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    line-height: 1.4;
}

.showcase-badge {
    font-size: 11px;
    color: rgba(34, 197, 94, 0.9);
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-dashboard .metric-item {
    text-align: center;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-dashboard .metric-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.premium-dashboard .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 4px;
}

.premium-dashboard .metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analytics-apple-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.analytics-apple-card:hover {
    transform: scale(1.02);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.analytics-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.06);
}

.analytics-indicator {
    display: flex;
    gap: 6px;
    align-items: center;
}

.analytics-title {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.analytics-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.analytics-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.analytics-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analytics-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.analytics-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.analytics-item .item-icon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.analytics-item .item-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.analytics-item .item-subtitle {
    font-size: 13px;
    color: rgba(138, 43, 226, 0.8);
    font-weight: 400;
    line-height: 1.4;
}

.analytics-item .item-value {
    font-size: 11px;
    color: rgba(34, 197, 94, 0.9);
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.analytics-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.analytics-apple-card .metric-item {
    text-align: center;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.analytics-apple-card .metric-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border: none !important;
    box-shadow: none !important;
}

.analytics-apple-card .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: rgba(138, 43, 226, 0.9) !important;
    margin-bottom: 4px;
}

.analytics-apple-card .metric-label {
    font-size: 12px;
    color: rgba(138, 43, 226, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Power Section */
.dashboard-power {
    padding: 80px 0 80px 0;
    background: transparent;
    position: relative;
}

.power-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.power-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.power-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.analytics-dashboard {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
    position: relative;
}


.dashboard-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.analytics-table {
    margin-bottom: 20px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #cccccc;
    transition: all 0.2s ease;
}

.table-row:hover {
    background: rgba(255, 193, 7, 0.05);
    transform: translateX(5px);
}

.status-download {
    color: rgba(138, 43, 226, 0.8);
    font-weight: 500;
}

.status-yes {
    color: #4ade80;
    font-weight: 500;
}

.customer-info {
    font-size: 12px;
    color: #888888;
    margin-top: 20px;
}

.dashboard-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: rgba(138, 43, 226, 0.8);
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.3));
}

/* Apple Glass Cards - Clean & Minimal */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.apple-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    height: auto;
    min-height: 400px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.apple-glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.apple-glass-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.5px;
}

.plan-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.feature-value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.unlock-section {
    margin-top: 24px;
    flex: 1;
}

.explore-features-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(191, 64, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(191, 64, 255, 0.3);
    border-radius: 12px;
    color: rgba(191, 64, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 16px;
}

.explore-features-btn:hover {
    background: rgba(191, 64, 255, 0.2);
    border-color: rgba(191, 64, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 64, 255, 0.2);
}

.unlock-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unlock-list li {
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 16px;
}

.unlock-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: #bf40ff;
    font-size: 11px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .exploration-content,
    .brilliance-content,
    .power-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title,
    .intro-title,
    .exploration-title,
    .brilliance-title,
    .power-title {
        font-size: 32px;
    }
    
    .exploration-stats {
        justify-content: center;
    }
    
    .personality-selector,
    .analytics-dashboard {
        transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    }
    
    .emerging-frontiers-card {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 14px 0;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .hero-title,
    .intro-title,
    .exploration-title,
    .brilliance-title,
    .power-title {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .exploration-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .personality-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .table-header span:nth-child(3),
    .table-header span:nth-child(4),
    .table-row span:nth-child(3),
    .table-row span:nth-child(4) {
        display: none;
    }
    
    .features-intro,
    .ai-exploration,
    .ai-brilliance,
    .dashboard-power {
        padding: 80px 0;
    }
}





/* Trusted by Industry Leaders Section */
.trusted-leaders {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.95));
    position: relative;
    overflow: hidden;
}

.trusted-leaders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 112, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.trusted-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.trusted-title:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    text-shadow: 0 0 25px rgba(138, 43, 226, 0.2);
}

.trusted-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 60px auto;
    font-weight: 400;
}

.company-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.logo-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.logo-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(138, 43, 226, 0.9);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.2));
}

.stat-label {
    font-size: 16px;
    color: #cccccc;
    font-weight: 500;
}

/* AI Capabilities Section */
.ai-capabilities {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.ai-capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top right, rgba(138, 43, 226, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(147, 112, 219, 0.05) 0%, transparent 70%);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(147, 112, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.capabilities-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.capabilities-title:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    text-shadow: 0 0 25px rgba(138, 43, 226, 0.2);
}

.capabilities-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 60px auto;
    font-weight: 400;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.5s ease;
    position: relative;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-card:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.capability-icon {
    font-size: 40px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    display: block;
}

.capability-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    line-height: 1.3;
}

.capability-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-features li {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.capability-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bf40ff;
    font-weight: bold;
}

/* Customer Testimonial Section */
.customer-testimonial {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.95));
    position: relative;
    overflow: hidden;
}

.customer-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-header {
    margin-bottom: 40px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.company-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.company-name {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.company-industry {
    font-size: 14px;
    color: rgba(138, 43, 226, 0.8);
    font-weight: 500;
}

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

.testimonial-text blockquote {
    font-size: 24px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(147, 112, 219, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

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

.author-title {
    font-size: 14px;
    color: #cccccc;
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: rgba(138, 43, 226, 0.9);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.metric-label {
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
}

/* Frequently Asked Questions Section */
.faq-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}
.faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(138, 43, 226, 0.015) 25%, rgba(255, 255, 255, 0.005) 50%, rgba(147, 112, 219, 0.01) 75%, rgba(255, 255, 255, 0.008) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 2;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, rgba(138, 43, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faq-title:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    text-shadow: 0 0 35px rgba(138, 43, 226, 0.3);
}

.faq-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.faq-glass-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 80px;
}

.faq-glass-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-glass-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.faq-glass-item:hover::before {
    opacity: 1;
}

.faq-glass-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(138, 43, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-glass-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.faq-glass-question:hover {
    background: rgba(138, 43, 226, 0.08);
}

.faq-glass-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.glass-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(138, 43, 226, 0.9);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.glass-toggle:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
    color: rgba(138, 43, 226, 1);
    transform: scale(1.1);
}

.faq-glass-item.active .glass-toggle {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
    transform: rotate(45deg);
}

.faq-glass-item.active {
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.15);
}

.faq-glass-item.active .faq-glass-question {
    background: rgba(138, 43, 226, 0.1);
}

.faq-glass-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    padding: 0 32px 0 32px;
}

.faq-glass-item.active .faq-glass-answer {
    max-height: 300px;
    opacity: 1;
    padding: 0 32px 28px 32px;
    transition: all 0.5s ease-in-out;
}

.faq-glass-answer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
    font-weight: 400;
}

.faq-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), transparent);
    opacity: 0.7;
}

.faq-cta h3 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.faq-cta p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.faq-contact-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.faq-contact-btn:hover::before {
    opacity: 1;
}

.faq-contact-btn:hover::after {
    opacity: 1;
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(138, 43, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-contact-btn:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-contact-btn .btn-text {
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.faq-contact-btn .btn-icon {
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.faq-contact-btn:hover .btn-icon {
    transform: translateX(2px);
}


/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .trusted-leaders,
    .ai-capabilities,
    .customer-testimonial,
    .faq-section {
        padding: 60px 0;
    }
    
    .trusted-title,
    .capabilities-title,
    .faq-title {
        font-size: 36px;
    }
    
    .company-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-description {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 24px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
    }
    
    .toggle-icon {
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 24px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-cta {
        padding: 40px 20px;
    }
    
    .faq-cta h3 {
        font-size: 24px;
    }
    
    .faq-cta p {
        font-size: 16px;
    }
    
    .faq-contact-btn {
        padding: 16px 24px;
        font-size: 14px;
    }
}


/* Audio Demo and Live Counter */
.audio-demo {
    margin: 30px 0;
    text-align: center;
}

.audio-demo-button {
    background: linear-gradient(135deg, #ff7f50, #ff6347);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.audio-demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

.audio-icon {
    font-size: 16px;
}

.live-counter {
    margin: 20px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #cccccc;
}

.live-indicator {
    color: #10b981;
    font-size: 12px;
    animation: pulse 2s infinite;
}

.counter-number {
    color: #a855f7;
    font-weight: 600;
}

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

/* Call Handling Section */
.call-handling {
    padding: 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.call-handling::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 127, 80, 0.6) 0%, rgba(255, 127, 80, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}


.call-handling::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 127, 80, 0.015) 25%, rgba(255, 255, 255, 0.005) 50%, rgba(255, 127, 80, 0.01) 75%, rgba(255, 255, 255, 0.008) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 2;
}

.call-handling-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 127, 80, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.call-handling-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.plans-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 45%, rgba(138, 43, 226, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Apple-style Call Flow */
.apple-call-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.apple-call-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.apple-call-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.apple-call-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 127, 80, 0.3);
    box-shadow: 
        0 20px 60px rgba(255, 127, 80, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.apple-call-card.active {
    background: rgba(255, 127, 80, 0.08);
    border-color: rgba(255, 127, 80, 0.4);
    box-shadow: 
        0 12px 48px rgba(255, 127, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.call-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    color: rgba(255, 127, 80, 0.8);
    transition: all 0.3s ease;
}

.apple-call-card:hover .call-card-icon {
    background: rgba(255, 127, 80, 0.15);
    color: rgba(255, 127, 80, 1);
    transform: scale(1.05);
}

.call-card-content {
    position: relative;
}

.call-card-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.call-card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.call-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 127, 80, 0.9);
    background: rgba(255, 127, 80, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 127, 80, 0.2);
}

.call-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.call-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.call-step:hover {
    transform: translateY(-5px);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.call-step.active {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.phone-interface {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.phone-screen {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-width: 250px;
}

.call-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.status-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.call-type {
    color: #a855f7;
    font-size: 14px;
    font-weight: 500;
}

/* CallPilot Action Section */
.horizon-action {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
}

.horizon-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top right, rgba(138, 43, 226, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(147, 112, 219, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.action-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.action-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.demo-interface {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

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

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

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

.demo-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.demo-content {
    padding: 30px;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.agent-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7f50, #ff6347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.agent-details {
    flex: 1;
}

.agent-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.agent-status {
    color: #cccccc;
    font-size: 14px;
}

.live-indicator {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

.demo-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.conversation {
    space-y: 15px;
}

.message {
    margin-bottom: 20px;
}

.message-label {
    font-size: 12px;
    color: #a855f7;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    color: #cccccc;
    line-height: 1.5;
    border-left: 3px solid #a855f7;
}

.message.customer .message-text {
    border-left-color: #10b981;
}

/* Demo Scenarios Section */
.demo-scenarios {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
}

.demo-scenarios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top right, rgba(138, 43, 226, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(147, 112, 219, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.scenarios-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scenario-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.scenario-card:hover {
    transform: translateY(-5px);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.scenario-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.scenario-info {
    flex: 1;
}

.scenario-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.scenario-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.scenario-duration {
    color: #a855f7;
    font-weight: 600;
    font-size: 14px;
    margin-right: 15px;
}

.scenario-play {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7f50, #ff6347);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scenario-play:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.full-experience {
    text-align: center;
}

.full-experience-button {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

.full-experience-text {
    color: #cccccc;
    font-size: 14px;
}

/* Enhanced Capabilities Section */
.enhanced-capabilities {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.enhanced-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enhanced-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.performance-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.performance-item:hover {
    transform: translateY(-5px);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.performance-value {
    font-size: 36px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 10px;
}

.performance-label {
    font-size: 14px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.technologies-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.technology-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.technology-card:hover {
    transform: translateY(-5px);
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.tech-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.tech-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.tech-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-feature {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Discovery & Planning Section */
.discovery-planning {
    padding: 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.discovery-planning::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 127, 80, 0.6) 0%, rgba(255, 127, 80, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}
.discovery-planning::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 127, 80, 0.015) 25%, rgba(255, 255, 255, 0.005) 50%, rgba(255, 127, 80, 0.01) 75%, rgba(255, 255, 255, 0.008) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 2;
}

.discovery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.discovery-icon {
    font-size: 48px;
}

.discovery-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background-clip: text;
    text-align: center;
    margin-bottom: 24px;
}

.discovery-timeline {
    background: linear-gradient(135deg, #ff7f50, #ff6347);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.discovery-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

/* Discovery Planning Title Gradient */
.discovery-planning-title {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 127, 80, 1) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.discovery-content {
    position: relative;
    z-index: 3;
}

/* Apple Discovery Cards */
.discovery-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.apple-discovery-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.apple-discovery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.apple-discovery-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 127, 80, 0.4);
}

.discovery-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: rgba(255, 127, 80, 0.9);
    box-shadow: 0 4px 12px rgba(255, 127, 80, 0.2);
}

.discovery-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
}

.discovery-card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.discovery-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.discovery-features .feature {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .discovery-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .apple-discovery-card {
        padding: 24px;
    }
    
    .discovery-card-title {
        font-size: 20px;
    }
    
    .discovery-card-description {
        font-size: 15px;
    }
}

.discovery-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.discovery-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.activity-list, .deliverable-list {
    list-style: none;
    padding: 0;
}

.activity-list li, .deliverable-list li {
    color: #cccccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.activity-list li:before, .deliverable-list li:before {
    content: '•';
    color: #a855f7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.implementation-progress {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.progress-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.8), rgba(255, 99, 71, 0.9));
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text {
    color: #cccccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .call-flow {
        flex-direction: column;
    }
    
    .demo-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .scenario-card {
        flex-direction: column;
        text-align: center;
    }
    
    .discovery-header {
        flex-direction: column;
        text-align: center;
    }
    
    .performance-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .technologies-grid {
        grid-template-columns: 1fr;
    }
}



/* Voice Technology Premium Section */
.voice-technology-premium {
    padding: 120px 0 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.voice-technology-premium .voice-showcase-content {
    margin-top: 160px;
    position: relative;
    z-index: 10;
}

.voice-technology-premium .voice-showcase-content .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 43, 226, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
    line-height: 1.2;
}

.voice-technology-premium .voice-showcase-content .section-title:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.3);
}

.voice-technology-premium .voice-showcase-content .section-subtitle {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.9;
}

.voice-technology-premium::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.voice-technology-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(138, 43, 226, 0.015) 25%, rgba(255, 255, 255, 0.005) 50%, rgba(147, 112, 219, 0.01) 75%, rgba(255, 255, 255, 0.008) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 2;
}

@keyframes backgroundPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.voice-tech-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.voice-tech-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, rgba(138, 43, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.5s ease;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.voice-tech-title:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.3);
}

.highlight-text {
    color: inherit;
    position: relative;
    display: inline-block;
}



.voice-tech-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.9;
}

.voice-content {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.voice-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.voice-card-main {
    width: 450px;
}

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

.voice-details .voice-name {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
}

.voice-details .voice-info,
.voice-details .voice-accent {
    color: #aaa;
    font-size: 0.9em;
}

.play-button {
    background-color: #8a2be2;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: #9932cc;
}

.play-button svg {
    fill: #fff;
    width: 24px;
    height: 24px;
}

.waveform-container {
    background-color: #2a2a2a;
    border-radius: 10px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.waveform {
    width: 80%;
    height: 30px;
    background: linear-gradient(to right, #8a2be2, #00bfff);
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 30" xmlns="http://www.w3.org/2000/svg"><path d="M0 15 Q 10 5, 20 15 T 40 15 T 60 15 T 80 15 T 100 15" fill="none" stroke="white" stroke-width="2"/></svg>');
    mask-size: 100% 100%;
    animation: waveform-animation 2s infinite alternate;
}

@keyframes waveform-animation {
    0% {
        mask-position: 0 0;
    }
    100% {
        mask-position: 100% 0;
    }
}

.voice-quote {
    font-style: italic;
    color: #bbb;
    margin-bottom: 15px;
}

.voice-description {
    color: #aaa;
    margin-bottom: 20px;
}

.key-characteristics {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.characteristic-tag {
    background-color: #3a3a3a;
    color: #8a2be2;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.voice-customization h3 {
    margin-bottom: 20px;
    color: #fff;
}

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

.slider-group label {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
}

.slider-group input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    background: #3a3a3a;
    border-radius: 5px;
    outline: none;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8a2be2;
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 0.8em;
    margin-top: 5px;
}

.tone-selection {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tone-selection span {
    color: #aaa;
}

.tone-button {
    background-color: #3a3a3a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tone-button.active,
.tone-button:hover {
    background-color: #8a2be2;
}

.voice-options {
    width: 400px;
}

.voice-options h3 {
    margin-bottom: 20px;
    color: #fff;
}

.voice-option-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.voice-option-card:hover,
.voice-option-card.active {
    background-color: #2a2a2a;
    border: 1px solid #8a2be2;
}

.option-details .option-name {
    font-weight: bold;
    color: #fff;
}

.option-details .option-accent {
    color: #aaa;
    font-size: 0.9em;
}

.option-details .option-description {
    color: #aaa;
    font-size: 0.9em;
}

.advanced-features {
    background-color: #2a0a4a;
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
}

.advanced-features h3 {
    color: #fff;
    margin-bottom: 15px;
}

.advanced-features ul {
    list-style: none;
    padding: 0;
}

.advanced-features ul li {
    color: #bbb;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.advanced-features ul li::before {
    content: '•';
    color: #8a2be2;
    position: absolute;
    left: 0;
    top: 0;
}



.voice-tech-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Voice Card */
.main-voice-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(25, 25, 25, 0.9));
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(138, 43, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.main-voice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), transparent 50%, rgba(186, 85, 211, 0.03));
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-voice-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(138, 43, 226, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(138, 43, 226, 0.5);
}

.main-voice-card:hover::before {
    opacity: 1;
}

.voice-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.voice-info h3.voice-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.voice-type, .voice-accent {
    font-size: 14px;
    color: rgba(138, 43, 226, 0.8);
    font-weight: 500;
    margin-bottom: 4px;
}

.main-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(186, 85, 211, 0.8));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    position: relative;
    overflow: hidden;
}

.main-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.6);
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(186, 85, 211, 0.9));
}

.main-play-btn:hover::before {
    opacity: 1;
}

.main-play-btn.playing {
    animation: playingPulse 2s ease-in-out infinite;
}

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

.play-icon svg {
    color: #ffffff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Waveform Display */
.waveform-display {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.waveform-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    animation: waveformScan 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.waveform-display.active::before {
    opacity: 1;
}

@keyframes waveformScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.bar {
    width: 4px;
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.9), rgba(186, 85, 211, 0.7));
    border-radius: 2px;
    height: 20px;
    transition: all 0.3s ease;
    animation: barIdle 3s ease-in-out infinite;
}

.bar:nth-child(odd) {
    animation-delay: 0.1s;
}

.bar:nth-child(even) {
    animation-delay: 0.2s;
}

@keyframes barIdle {
    0%, 100% { height: 20px; opacity: 0.6; }
    50% { height: 35px; opacity: 1; }
}

.waveform-bars.active .bar {
    animation: barActive 0.5s ease-in-out infinite;
}

@keyframes barActive {
    0%, 100% { height: 15px; }
    50% { height: 50px; }
}

.waveform-bars.active .bar:nth-child(1) { animation-delay: 0s; }
.waveform-bars.active .bar:nth-child(2) { animation-delay: 0.1s; }
.waveform-bars.active .bar:nth-child(3) { animation-delay: 0.2s; }
.waveform-bars.active .bar:nth-child(4) { animation-delay: 0.3s; }
.waveform-bars.active .bar:nth-child(5) { animation-delay: 0.4s; }
.waveform-bars.active .bar:nth-child(6) { animation-delay: 0.5s; }
.waveform-bars.active .bar:nth-child(7) { animation-delay: 0.4s; }
.waveform-bars.active .bar:nth-child(8) { animation-delay: 0.3s; }
.waveform-bars.active .bar:nth-child(9) { animation-delay: 0.2s; }
.waveform-bars.active .bar:nth-child(10) { animation-delay: 0.1s; }
.waveform-bars.active .bar:nth-child(11) { animation-delay: 0s; }
.waveform-bars.active .bar:nth-child(12) { animation-delay: 0.1s; }
.waveform-bars.active .bar:nth-child(13) { animation-delay: 0.2s; }
.waveform-bars.active .bar:nth-child(14) { animation-delay: 0.3s; }
.waveform-bars.active .bar:nth-child(15) { animation-delay: 0.4s; }
.waveform-bars.active .bar:nth-child(16) { animation-delay: 0.5s; }
.waveform-bars.active .bar:nth-child(17) { animation-delay: 0.4s; }
.waveform-bars.active .bar:nth-child(18) { animation-delay: 0.3s; }
.waveform-bars.active .bar:nth-child(19) { animation-delay: 0.2s; }
.waveform-bars.active .bar:nth-child(20) { animation-delay: 0.1s; }

/* Voice Sample */
.voice-sample {
    margin-bottom: 30px;
}

.sample-text {
    font-size: 18px;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    line-height: 1.4;
}

.sample-description {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.5;
}

/* Voice Characteristics */
.voice-characteristics {
    margin-bottom: 30px;
}

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

.characteristics-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.char-tag {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(186, 85, 211, 0.2));
    color: rgba(138, 43, 226, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.char-tag:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.5), rgba(186, 85, 211, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

/* Voice Customization Panel */
.voice-customization-panel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.voice-customization-panel h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.speed-control, .tone-control {
    margin-bottom: 20px;
}

.speed-control label, .tone-control label {
    display: block;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 12px;
    font-weight: 500;
}

.speed-slider-container {
    position: relative;
}

.speed-slider {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.speed-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(186, 85, 211, 0.8));
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
}

.speed-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 18px rgba(138, 43, 226, 0.6);
}

.speed-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #888888;
}

.tone-buttons {
    display: flex;
    gap: 12px;
}

.tone-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.tone-btn:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
    color: #ffffff;
}

.tone-btn.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(186, 85, 211, 0.6));
    border-color: rgba(138, 43, 226, 0.6);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

/* Voice Selection Panel */
.voice-selection-panel {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(25, 25, 25, 0.9));
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(138, 43, 226, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(2deg) rotateX(2deg);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.voice-selection-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(186, 85, 211, 0.05), transparent 50%, rgba(138, 43, 226, 0.03));
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voice-selection-panel:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(138, 43, 226, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(138, 43, 226, 0.5);
}

.voice-selection-panel:hover::before {
    opacity: 1;
}

.selection-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.voice-options-list {
    margin-bottom: 40px;
}

.voice-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.voice-option:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: perspective(1000px) rotateX(-2deg) translateZ(5px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.2);
}

.voice-option.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(186, 85, 211, 0.1));
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.option-content {
    flex: 1;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.option-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.option-accent {
    font-size: 12px;
    color: rgba(138, 43, 226, 0.8);
    background: rgba(138, 43, 226, 0.2);
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 500;
}

.option-desc {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.4;
}

.option-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(186, 85, 211, 0.6));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.option-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(186, 85, 211, 0.8));
}

.option-play-btn svg {
    color: #ffffff;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

/* Advanced Features Panel */
.advanced-features-panel {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(186, 85, 211, 0.1));
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.advanced-features-panel h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bf40ff;
    font-weight: bold;
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.5));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .voice-tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .voice-tech-title {
        font-size: 42px;
    }
    
    .main-voice-card,
    .voice-selection-panel {
        transform: perspective(1000px) rotateY(0deg) rotateX(2deg);
    }
}

@media (max-width: 768px) {
    .voice-technology-premium {
        padding: 80px 0;
    }
    
    .voice-tech-title {
        font-size: 36px;
    }
    
    .voice-technology-premium .voice-showcase-content .section-title {
        font-size: 36px;
    }
    
    .voice-tech-description {
        font-size: 18px;
    }
    
    .main-voice-card,
    .voice-selection-panel {
        padding: 30px;
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    
    .tone-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .characteristics-tags {
        justify-content: center;
    }
}



/* Responsive Design */
@media (max-width: 1400px) {
    .intelligence-title {
        font-size: 3.5rem;
    }
    
    .metrics-hub {
        height: 380px;
    }
    
    .performance-panels {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1200px) {
    .intelligence-title {
        font-size: 3rem;
    }
    
    .metrics-hub {
        height: 350px;
    }
    
    .performance-panels {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .satellite-metric {
        transform: scale(0.9);
    }
    
    .metric-orb {
        width: 110px;
        height: 110px;
    }
    
    .orb-icon {
        font-size: 1.3rem;
    }
    
    .orb-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .ai-intelligence-hub {
        padding: 100px 0;
    }
    
    .intelligence-title {
        font-size: 2.8rem;
        gap: 12px;
    }
    
    .metrics-hub {
        height: 320px;
        margin: 0 auto 60px auto;
    }
    
    .metric-ring {
        width: 180px;
        height: 180px;
    }
    
    .ring-progress {
        width: 188px;
        height: 188px;
    }
    
    .center-value {
        font-size: 2.2rem;
    }
    
    .performance-panels {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    
    
    .network-grid {
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 35px;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .ai-intelligence-hub {
        padding: 80px 0;
    }
    
    .intelligence-title {
        font-size: 2.5rem;
        gap: 10px;
    }
    
    .metrics-hub {
        height: 300px;
        margin: 0 auto 50px auto;
    }
    
    .metric-ring {
        width: 150px;
        height: 150px;
    }
    
    .ring-progress {
        width: 158px;
        height: 158px;
    }
    
    .center-value {
        font-size: 2rem;
    }
    
    .center-label {
        font-size: 0.8rem;
    }
    
    .satellite-metric {
        transform: scale(0.8);
    }
    
    .metric-orb {
        width: 90px;
        height: 90px;
    }
    
    .orb-icon {
        font-size: 1.2rem;
    }
    
    .orb-value {
        font-size: 1rem;
    }
    
    .orb-label {
        font-size: 0.65rem;
    }
    
    .performance-panels {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .performance-panel {
        padding: 25px;
    }
    
    .panel-title {
        font-size: 1.3rem;
    }
    
    
    .network-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 25px;
        padding: 25px;
    }
    
    .network-node {
        width: 10px;
        height: 10px;
    }
    
    .intelligence-stream {
        padding: 25px;
    }
    
    .stream-title {
        font-size: 1.5rem;
    }
    
    .stream-item {
        padding: 15px;
    }
    
    .stream-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .ai-intelligence-hub {
        padding: 60px 0;
    }
    
    .intelligence-title {
        font-size: 2rem;
        gap: 8px;
        flex-direction: column;
    }
    
    .title-word {
        margin-bottom: 5px;
    }
    
    .metrics-hub {
        height: 250px;
        margin: 0 auto 40px auto;
    }
    
    .metric-ring {
        width: 120px;
        height: 120px;
    }
    
    .ring-progress {
        width: 128px;
        height: 128px;
    }
    
    .center-value {
        font-size: 1.5rem;
    }
    
    .center-label {
        font-size: 0.7rem;
    }
    
    .satellite-metric {
        transform: scale(0.7);
    }
    
    .metric-orb {
        width: 75px;
        height: 75px;
    }
    
    .orb-icon {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .orb-value {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .orb-label {
        font-size: 0.6rem;
    }
    
    .performance-panels {
        gap: 15px;
    }
    
    .performance-panel {
        padding: 20px;
    }
    
    .panel-title {
        font-size: 1.2rem;
    }
    
    .panel-icon {
        font-size: 1.5rem;
    }
    
    
    .network-grid {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .network-node {
        width: 8px;
        height: 8px;
    }
    
    .intelligence-stream {
        padding: 20px;
    }
    
    .stream-title {
        font-size: 1.3rem;
    }
    
    .stream-item {
        padding: 12px;
        gap: 12px;
    }
    
    .stream-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .stream-text {
        font-size: 0.9rem;
    }
    
    .stream-details {
        font-size: 0.8rem;
    }
    
    .stream-time {
        font-size: 0.75rem;
    }
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* ==========================================================================
   Scroll Animations - High-End Effects
   ========================================================================== */

/* Base animation states */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Fade In Animations */
.fade-in-up {
    transform: translateY(60px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-down {
    transform: translateY(-60px);
}

.fade-in-down.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-80px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(80px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

/* Scale Animations */
.scale-in {
    transform: scale(0.8);
}

.scale-in.animated {
    transform: scale(1);
}

.scale-in-rotate {
    transform: scale(0.7) rotate(-10deg);
}

.scale-in-rotate.animated {
    transform: scale(1) rotate(0deg);
}

/* Slide Animations with Perspective */
.slide-in-perspective-left {
    transform: perspective(1000px) rotateY(-45deg) translateX(-100px);
    transform-origin: right center;
}

.slide-in-perspective-left.animated {
    transform: perspective(1000px) rotateY(0deg) translateX(0);
}

.slide-in-perspective-right {
    transform: perspective(1000px) rotateY(45deg) translateX(100px);
    transform-origin: left center;
}

.slide-in-perspective-right.animated {
    transform: perspective(1000px) rotateY(0deg) translateX(0);
}

/* Flip Animations */
.flip-in-x {
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: center bottom;
}

.flip-in-x.animated {
    transform: perspective(1000px) rotateX(0deg);
}

.flip-in-y {
    transform: perspective(1000px) rotateY(-90deg);
    transform-origin: center center;
}

.flip-in-y.animated {
    transform: perspective(1000px) rotateY(0deg);
}

/* Bounce In Animations */
.bounce-in {
    transform: scale(0.3);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bounce-in.animated {
    animation: bounceIn 0.8s ease-out forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Elastic Animations */
.elastic-in {
    transform: scale(0);
}

.elastic-in.animated {
    animation: elasticIn 1s ease-out forwards;
}

@keyframes elasticIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    55% {
        opacity: 1;
        transform: scale(1.1);
    }
    75% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Glow Effect on Animation */
.glow-on-animate.animated {
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    transition: box-shadow 0.8s ease;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
    position: relative;
}

.text-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.text-reveal.animated::before {
    transform: translateX(100%);
}

/* Complex 3D Animations */
.rotate-3d-in {
    transform: perspective(1000px) rotateX(-90deg) rotateY(-45deg) scale(0.8);
    transform-origin: center center;
}

.rotate-3d-in.animated {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
}

/* Wave Animation */
.wave-reveal {
    position: relative;
    overflow: hidden;
}

.wave-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 1s ease;
}

.wave-reveal.animated::before {
    left: 100%;
}

/* Morphing Border Animation */
.morph-border {
    position: relative;
    border: 1px solid transparent;
}

.morph-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(138, 43, 226, 0.5);
    border-radius: inherit;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s ease;
}

.morph-border.animated::before {
    opacity: 1;
    transform: scale(1);
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid rgba(138, 43, 226, 0.8);
    width: 0;
}

.typewriter.animated {
    animation: typewriter 2s steps(40) forwards, blink 0.8s infinite;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: rgba(138, 43, 226, 0.8); }
    51%, 100% { border-color: transparent; }
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s ease;
}

.magnetic:hover {
    transform: scale(1.05) translateZ(10px);
}

/* Parallax Scroll Effect */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Smooth reveal for sections */
.section-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-reveal.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================================== 
   🎨 ULTIMATE SCROLL ANIMATIONS - 10/10 QUALITY - NO HOVER EFFECTS
   ========================================================================== */

/* Base animation system - all elements start invisible */
.scroll-fade {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade.animate-in {
    opacity: 1;
}

/* ========================================================================== 
   ✨ SOPHISTICATED ENTRANCE ANIMATIONS
   ========================================================================== */

/* Fade from bottom with scale */
.fade-up-scale {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up-scale.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Fade from left with rotation */
.fade-left-rotate {
    opacity: 0;
    transform: translateX(-100px) rotateY(-20deg);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-left-rotate.animate-in {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

/* Fade from right with rotation */
.fade-right-rotate {
    opacity: 0;
    transform: translateX(100px) rotateY(20deg);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-right-rotate.animate-in {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

/* 3D flip entrance */
.flip-3d {
    opacity: 0;
    transform: perspective(1000px) rotateX(-90deg) translateY(50px);
    transition: all 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.flip-3d.animate-in {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* Elastic bounce entrance */
.bounce-elastic {
    opacity: 0;
    transform: scale(0.3) translateY(100px);
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.bounce-elastic.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Zoom with blur effect */
.zoom-blur-in {
    opacity: 0;
    transform: scale(1.5);
    filter: blur(20px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.zoom-blur-in.animate-in {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Slide and fade with tilt */
.slide-tilt {
    opacity: 0;
    transform: translateY(60px) rotate(5deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-tilt.animate-in {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* ========================================================================== 
   🎯 PREMIUM CARD ANIMATIONS
   ========================================================================== */

/* Glass card lift with glow */
.glass-lift {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    box-shadow: 0 0 0 rgba(138, 43, 226, 0);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-lift.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.15);
}

/* Card flip reveal */
.card-flip-reveal {
    opacity: 0;
    transform: perspective(1000px) rotateY(-180deg) scale(0.8);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-flip-reveal.animate-in {
    opacity: 1;
    transform: perspective(1000px) rotateY(0) scale(1);
}

/* Card slide from depth */
.card-depth-slide {
    opacity: 0;
    transform: perspective(1000px) translateZ(-200px) translateY(50px) rotateX(20deg);
    transition: all 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-depth-slide.animate-in {
    opacity: 1;
    transform: perspective(1000px) translateZ(0) translateY(0) rotateX(0);
}

/* Card spring bounce */
.card-spring {
    opacity: 0;
    transform: scale(0.5) translateY(80px) rotate(-10deg);
    transition: all 1.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-spring.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0);
}

/* ========================================================================== 
   🌟 STAGGERED ANIMATION DELAYS
   ========================================================================== */

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }
.stagger-9 { transition-delay: 0.9s; }
.stagger-10 { transition-delay: 1s; }

/* Fast stagger for quick sequences */
.fast-stagger-1 { transition-delay: 0.05s; }
.fast-stagger-2 { transition-delay: 0.1s; }
.fast-stagger-3 { transition-delay: 0.15s; }
.fast-stagger-4 { transition-delay: 0.2s; }
.fast-stagger-5 { transition-delay: 0.25s; }
.fast-stagger-6 { transition-delay: 0.3s; }

/* ========================================================================== 
   🎭 SECTION-SPECIFIC ANIMATIONS
   ========================================================================== */

/* Hero section dramatic entrance */
.hero-dramatic {
    opacity: 0;
    transform: translateY(120px) scale(0.9);
    transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-dramatic.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Text reveals with typewriter effect */
.text-typewriter {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.text-typewriter.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Button magnetic entrance */
.button-entrance {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.button-entrance.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ========================================================================== 
   🔥 ADVANCED EFFECTS
   ========================================================================== */

/* Morphing entrance */
.morph-in {
    opacity: 0;
    transform: scale(0) rotate(180deg);
    border-radius: 50%;
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.morph-in.animate-in {
    opacity: 1;
    transform: scale(1) rotate(0);
    border-radius: inherit;
}

/* Gradient reveal */
.gradient-reveal {
    opacity: 0;
    transform: translateY(50px);
    background: linear-gradient(45deg, transparent 0%, transparent 100%);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gradient-reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

/* Perspective slide */
.perspective-slide {
    opacity: 0;
    transform: perspective(1000px) rotateX(45deg) translateY(100px);
    transform-origin: center bottom;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.perspective-slide.animate-in {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* ========================================================================== 
   ⚡ PERFORMANCE OPTIMIZATIONS
   ========================================================================== */

[class*="fade-"],
[class*="card-"],
[class*="glass-"],
[class*="bounce-"],
[class*="zoom-"],
[class*="slide-"],
[class*="flip-"],
[class*="morph-"],
[class*="gradient-"],
[class*="perspective-"] {
    will-change: transform, opacity;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    [class*="fade-"],
    [class*="card-"],
    [class*="glass-"],
    [class*="bounce-"],
    [class*="zoom-"],
    [class*="slide-"],
    [class*="flip-"],
    [class*="morph-"],
    [class*="gradient-"],
    [class*="perspective-"] {
        transition: opacity 0.3s ease !important;
        transform: none !important;
        filter: none !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animate-on-scroll {
        transition-duration: 0.6s;
    }
    
    .fade-in-up, .fade-in-down {
        transform: translateY(30px);
    }
    
    .fade-in-left, .fade-in-right {
        transform: translateX(30px);
    }
    
    .slide-in-perspective-left,
    .slide-in-perspective-right {
        transform: translateX(50px);
    }
    
    .slide-in-perspective-left.animated,
    .slide-in-perspective-right.animated {
        transform: translateX(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: opacity 0.3s ease;
        transform: none !important;
    }
    
    .animate-on-scroll.animated {
        opacity: 1;
        transform: none !important;
    }
}



/* ==========================================================================
   Voice Showcase Section
   ========================================================================== */
.voice-showcase {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #000000 0%, #100a1a 30%, #1a0f2a 50%, #100a1a 70%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.voice-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(147, 112, 219, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.voice-showcase .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.voice-showcase .section-tag {
    font-size: 14px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.voice-showcase .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 43, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background-clip: text;
}

.voice-showcase .section-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.voice-carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.voice-line {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.voice-line.moving-right {
    animation-name: slideRight;
}

.voice-line.moving-left {
    animation-name: slideLeft;
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

.voice-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.voice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.5;
}

.voice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.voice-card:hover::before {
    opacity: 1;
}

.voice-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.08);
    border: 1px solid rgba(0, 122, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.voice-card:hover .voice-avatar {
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.2);
    transform: scale(1.02);
}

.bitmoji-avatar {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.voice-info {
    flex: 1;
    min-width: 0;
}

.voice-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.voice-accent {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-controls {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.play-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.9);
    border: none;
    color: #ffffff;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
    transform: scale(1.05);
    background: rgba(0, 122, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.play-btn:active {
    transform: scale(0.95);
}

/* Audio player animations */
.voice-card.playing .play-btn {
    animation: pulse 1.2s infinite;
}

.voice-card.playing .voice-avatar {
    animation: avatarPulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 1px 4px rgba(0, 122, 255, 0.3);
    }
    50% {
        box-shadow: 0 1px 4px rgba(0, 122, 255, 0.6), 0 0 12px rgba(0, 122, 255, 0.2);
    }
    100% {
        box-shadow: 0 1px 4px rgba(0, 122, 255, 0.3);
    }
}

@keyframes avatarPulse {
    0% {
        border-color: rgba(0, 122, 255, 0.2);
    }
    50% {
        border-color: rgba(0, 122, 255, 0.5);
        box-shadow: 0 0 15px rgba(0, 122, 255, 0.3);
    }
    100% {
        border-color: rgba(0, 122, 255, 0.2);
    }
}

/* Pause animations on hover */
.voice-carousel:hover .voice-line {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .voice-showcase .section-title {
        font-size: 42px;
    }
    
    .voice-card {
        min-width: 160px;
        padding: 14px;
    }
    
    .voice-avatar {
        width: 45px;
        height: 45px;
    }
    
    .bitmoji-avatar {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .voice-showcase {
        padding: 60px 0;
    }
    
    .voice-showcase .section-title {
        font-size: 36px;
    }
    
    .voice-showcase .section-subtitle {
        font-size: 16px;
    }
    
    .voice-card {
        min-width: 140px;
        padding: 12px;
        gap: 10px;
    }
    
    .voice-avatar {
        width: 40px;
        height: 40px;
    }
    
    .bitmoji-avatar {
        font-size: 20px;
    }
    
    .voice-name {
        font-size: 13px;
    }
    
    .voice-accent {
        font-size: 11px;
    }
    
    .play-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .voice-line {
        gap: 15px;
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   Footer Enhanced
   ========================================================================== */
.footer-enhanced {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(147, 112, 219, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .brand-logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
    display: block;
    margin-bottom: 8px;
}

.footer-brand .logo-subtitle {
    font-size: 14px;
    color: rgba(138, 43, 226, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-brand .brand-description {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-stats .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
    margin-bottom: 4px;
}

.footer-stats .stat-label {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: rgba(138, 43, 226, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-cta {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(10, 10, 10, 0.8));
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
}

.footer-cta h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.footer-cta p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.footer-btn.primary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(147, 112, 219, 0.6));
    color: #ffffff;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.footer-btn.primary:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 1), rgba(147, 112, 219, 0.8));
    transform: perspective(1000px) rotateX(-2deg) translateZ(5px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.footer-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn.secondary:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: perspective(1000px) rotateX(-2deg) translateZ(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 13px;
}

.contact-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.3));
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-copyright p {
    color: #888888;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

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

.footer-legal a:hover {
    color: rgba(138, 43, 226, 0.8);
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-2px) scale(1.1);
}

.social-icon {
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.3));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
    
    .footer-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-enhanced {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-stats {
        justify-content: center;
        text-align: center;
    }
    
    .footer-stats .stat-item {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        order: 2;
    }
    
    .footer-social {
        order: 1;
    }
    
    .footer-buttons {
        flex-direction: row;
    }
}



.no-animation,
.no-animation * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

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

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.no-animation,
.no-animation * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* ==========================================================================
   Voice Showcase Section
   ========================================================================== */

.voice-showcase {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #000000 0%, #100a1a 30%, #1a0f2a 50%, #100a1a 70%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.voice-showcase .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.voice-showcase .section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.voice-showcase .section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.voice-showcase .section-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.voice-cards-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    animation: scroll 30s linear infinite;
}

.voice-cards-container::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.voice-card {
    background: #111;
    border-radius: 12px;
    padding: 20px;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.5);
}

.voice-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.voice-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.voice-details {
    flex-grow: 1;
}

.voice-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.voice-gender,
.voice-accent {
    font-size: 14px;
    color: #ccc;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
}

.play-pause-btn {
    background: #e50914;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar {
    flex-grow: 1;
    height: 5px;
    background: #333;
    border-radius: 5px;
    cursor: pointer;
}

.progress {
    width: 0;
    height: 100%;
    background: #e50914;
    border-radius: 5px;
}

.time-display {
    font-size: 12px;
    color: #ccc;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   Plans Section
   ========================================================================== */

.plans-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.plans-section .glass-overlay {
    display: none;
}
.plans-section .apple-glass-card {
    position: relative;
    overflow: visible;
}
.plans-section .apple-glass-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.plans-section .apple-glass-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.plans-section .apple-glass-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.section-subtitle {
    font-size: 20px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 3;
}

.plan-card {
    background: rgba(30, 30, 32, 0.7);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 460px;
    opacity: 0;
    transform: translateY(50px);
    animation: plan-fade-in 0.8s ease-out forwards;
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(40, 40, 42, 0.8);
}

.plan-card.featured {
    background: rgba(255, 191, 0, 0.15);
    border-color: rgba(255, 191, 0, 0.4);
    box-shadow: 
        0 20px 40px rgba(255, 191, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.plan-card.featured:hover {
    background: rgba(255, 191, 0, 0.25);
    border-color: rgba(255, 191, 0, 0.6);
}

.plan-header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 15px;
    color: #b0b0b0;
}

.plan-price {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #ffc107;
}

.price-period {
    font-size: 16px;
    font-weight: 500;
    color: #b0b0b0;
    margin-left: 4px;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features li {
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bf40ff !important;
    font-weight: 700;
}

.plan-button {
    background: linear-gradient(135deg, #ffc107, #ffca2c) !important;
    color: #1c1c1e !important;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 191, 0, 0.3);
    cursor: pointer;
    text-align: center;
}

.plan-button:hover {
    background: linear-gradient(135deg, #ffca2c, #ffd54f) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 191, 0, 0.4);
}

@keyframes plan-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-card:nth-child(1) { animation-delay: 0.2s; }
.plan-card:nth-child(2) { animation-delay: 0.4s; }
.plan-card:nth-child(3) { animation-delay: 0.6s; }

.plan-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffc107;
}

.plan-price span {
    font-size: 18px;
    font-weight: 500;
    color: #cccccc;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bf40ff;
}

.plan-button {
    background: linear-gradient(135deg, #8a2be2, #9370db);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3);
}

.plan-button:hover {
    background: linear-gradient(135deg, #9932cc, #a48edb);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.6);
    transform: scale(1.05);
}




/* Victory Solutions Premium Section */
.victory-solutions-premium {
    padding: 150px 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(15, 15, 15, 0.95));
    position: relative;
    overflow: hidden;
}

.victory-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


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

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: victoryWaveFloat 20s infinite ease-in-out;
}

.wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave-2 {
    top: -40%;
    left: -60%;
    animation-delay: 7s;
}

.wave-3 {
    top: -60%;
    left: -40%;
    animation-delay: 14s;
}

.victory-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.victory-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    margin: 0 auto 80px;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.victory-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(147, 112, 219, 0.15));
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 50px;
    margin-bottom: 40px;
    animation: victoryBadgeGlow 3s ease-in-out infinite alternate;
}

.badge-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.9);
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.victory-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(138, 43, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.title-word {
    display: inline-block;
    animation: victoryTitleReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }
.title-word:nth-child(4) { animation-delay: 0.8s; }

/* New Section */
.new-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.new-section::before {
    content: '';
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.6) 0%, rgba(138, 43, 226, 0.25) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}
.new-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(138, 43, 226, 0.015) 25%, rgba(255, 255, 255, 0.005) 50%, rgba(147, 112, 219, 0.01) 75%, rgba(255, 255, 255, 0.008) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
    z-index: 2;
}

.new-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.new-section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, rgba(138, 43, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.5s ease;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.new-section-title:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.3);
}

.new-section-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Intelligence Features Grid */
.intelligence-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

.intelligence-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.intelligence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    border-radius: 16px;
    pointer-events: none;
}

.intelligence-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(138, 43, 226, 0.2);
    box-shadow: 
        0 12px 40px rgba(138, 43, 226, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: rgba(138, 43, 226, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.15);
    position: relative;
    z-index: 2;
}

.intelligence-card:hover .feature-icon {
    background: rgba(138, 43, 226, 0.15);
    color: rgba(138, 43, 226, 0.9);
    transform: scale(1.05);
}

.intelligence-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.intelligence-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .intelligence-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .intelligence-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }
    
    .intelligence-card {
        padding: 24px;
    }
    
    .new-section-title {
        font-size: 36px;
    }
    
    .new-section-description {
        font-size: 16px;
    }
}

.victory-description {
    font-size: 20px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.desc-line {
    display: block;
    animation: victoryDescReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.desc-line:nth-child(1) { animation-delay: 1.2s; }
.desc-line:nth-child(2) { animation-delay: 1.4s; }
.desc-line:nth-child(3) { animation-delay: 1.6s; }

.desc-line.highlight-desc {
    color: rgba(138, 43, 226, 0.9);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.victory-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: start;
}

.showcase-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solution-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 24px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: victoryCardReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px) rotateX(15deg);
}

.solution-card.primary {
    animation-delay: 2s;
}

.solution-card.secondary {
    animation-delay: 2.3s;
}

.solution-card:hover {
    transform: translateY(-15px) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), transparent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .card-glow {
    opacity: 1;
}

.card-header {
    margin-bottom: 32px;
}

.card-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(147, 112, 219, 0.15));
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    font-size: 20px;
    transition: all 0.3s ease;
}

.card-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    line-height: 1.3;
}

.card-preview {
    margin-bottom: 32px;
}

.preview-screen {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(25, 25, 25, 0.95));
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.05));
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

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

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.control-dot.active {
    background: rgba(138, 43, 226, 0.8);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.screen-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.8);
}

.screen-content {
    padding: 24px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.data-row:last-child {
    border-bottom: none;
}

.data-label {
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

.data-value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.data-value.success {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.card-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.9);
}

.question-arrow {
    font-size: 20px;
    color: rgba(138, 43, 226, 0.8);
    transition: transform 0.3s ease;
}

.solution-card:hover .question-arrow {
    transform: translate(5px, -5px);
}

.showcase-right {
    animation: victoryFeaturesReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateX(50px);
    animation-delay: 2.5s;
}

.victory-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(10, 10, 10, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(147, 112, 219, 0.15));
    border-radius: 20px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    position: relative;
    flex-shrink: 0;
}

.icon-bg {
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.feature-pulse {
    position: absolute;
    top: 50%;
    left: 35px;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: victoryFeaturePulse 2s ease-in-out infinite;
    opacity: 0;
}

.feature-item:hover .feature-pulse {
    opacity: 1;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.feature-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 400;
}

.victory-cta {
    text-align: center;
    animation: victoryCTAReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: 3s;
}

.victory-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 48px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(147, 112, 219, 0.9));
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.victory-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(138, 43, 226, 0.5);
    border-color: rgba(138, 43, 226, 0.8);
}

/* Voice Studio Cards - Premium Apple Design */
.voice-studio-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.voice-studio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03) 0%, transparent 60%, rgba(138, 43, 226, 0.01) 100%);
    border-radius: 28px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.voice-studio-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.voice-studio-card:hover::before {
    opacity: 1;
}

/* Studio Header */
.studio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.studio-title svg {
    color: rgba(138, 43, 226, 0.8);
}

.studio-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #10B981, #34D399);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
    animation: livePulse 2s ease-in-out infinite;
}

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

.live-indicator span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tuning-preset {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(138, 43, 226, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.tuning-preset span {
    color: rgba(138, 43, 226, 0.9);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Voice Gallery */
.voice-gallery {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.voice-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.voice-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.2);
    transform: translateX(4px);
}

.voice-option.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.12), rgba(138, 43, 226, 0.06));
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.15);
}

.voice-avatar {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.avatar-ring {
    position: absolute;
    inset: -3px;
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 50%;
    opacity: 0;
    animation: avatarPulse 3s ease-in-out infinite;
}

.voice-option.active .avatar-ring {
    opacity: 1;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.avatar-text {
    font-weight: 700;
    font-size: 14px;
    color: rgba(138, 43, 226, 0.9);
}

.voice-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.voice-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.voice-accent {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.play-button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
    color: rgba(138, 43, 226, 0.9);
    transform: scale(1.1);
}

/* Audio Waveform */
.current-voice-preview {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-bottom: 24px;
}

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

.preview-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.recording-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #EF4444, #F87171);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
    animation: recordPulse 1.5s ease-in-out infinite;
}

@keyframes recordPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.recording-status span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.audio-waveform {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 3px;
    height: 60px;
    padding: 8px 0;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.8), rgba(138, 43, 226, 0.4));
    border-radius: 2px;
    transition: all 0.3s ease;
    animation: waveAnimation 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }
.wave-bar:nth-child(11) { animation-delay: 1s; }
.wave-bar:nth-child(12) { animation-delay: 1.1s; }

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

/* Tone Controller */
.tone-controller {
    margin-bottom: 20px;
}

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

.controller-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.tone-value {
    padding: 6px 12px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(138, 43, 226, 0.9);
}

.tone-slider-container {
    position: relative;
}

.tone-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tone-labels span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
}

.slider-track {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 12px;
}

.slider-fill {
    position: absolute;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.4), rgba(138, 43, 226, 0.8));
    border-radius: 3px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(147, 112, 219, 0.8));
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}

.slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.thumb-inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: scale(0.4);
}

.slider-markers {
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
}

.marker {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.marker.active {
    background: rgba(138, 43, 226, 0.8);
    box-shadow: 0 0 12px rgba(138, 43, 226, 0.4);
}

/* Voice Characteristics */
.voice-characteristics {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.characteristic {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.char-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    color: rgba(138, 43, 226, 0.8);
}

.char-info {
    flex: 1;
}

.char-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 8px;
}

.char-level {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.6), rgba(138, 43, 226, 0.9));
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Preview Controls */
.preview-controls {
    display: flex;
    gap: 12px;
}

.preview-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(147, 112, 219, 0.7));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(138, 43, 226, 0.2);
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(147, 112, 219, 0.8));
}

.save-btn {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

.victory-btn:hover .btn-glow {
    left: 100%;
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.victory-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Keyframe Animations */

@keyframes victoryWaveFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes victoryBadgeGlow {
    0% {
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    }
}

@keyframes victoryTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes victoryDescReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes victoryCardReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes victoryFeaturesReveal {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes victoryCTAReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes victoryFeaturePulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .victory-title {
        font-size: 42px;
    }
    
    .victory-showcase {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .victory-solutions-premium {
        padding: 80px 0;
    }
    
    .victory-title {
        font-size: 32px;
    }
    
    .victory-description {
        font-size: 18px;
    }
    
    .victory-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 16px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .icon-bg {
        font-size: 20px;
    }
    
    .victory-btn {
        padding: 18px 32px;
        font-size: 16px;
    }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
    .hero-content {
        gap: 40px;
    }
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }
    .header-content {
        padding: 16px 0;
    }
    .nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .logo-text {
        font-size: 20px;
    }
    .logo-subtitle {
        font-size: 9px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-visual {
        margin: 0 auto;
        max-width: 500px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-buttons {
        justify-content: center;
    }
}
    .trust-indicators {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .sign-in-btn {
        display: none;
    }
    .contact-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .hero {
        padding: 80px 0 60px;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-description {
        font-size: 15px;
    }
    .floating-elements {
        display: none;
    }
    .ai-interface {
        transform: scale(0.9);
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    .header-content {
        padding: 12px 0;
    }
    .logo-text {
        font-size: 16px;
    }
    .logo-subtitle {
        font-size: 8px;
    }
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    .contact-btn {
        padding: 9px 16px;
        font-size: 12px;
    }
    .hero-badge {
        padding: 10px 16px;
        margin-bottom: 20px;
    }
    .badge-text {
        font-size: 12px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        font-size: 14px;
    }
    .cta-button {
        width: 100%;
        margin-bottom: 12px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    .ai-interface {
        transform: scale(0.8);
    }
}

@media (max-width: 992px) {
    .exploration-content,
    .brilliance-content,
    .power-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .exploration-visual,
    .brilliance-visual,
    .power-visual {
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .exploration-title,
    .brilliance-title,
    .power-title {
        font-size: 32px;
    }

    .exploration-description,
    .brilliance-description,
    .power-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .exploration-stats,
    .brilliance-fact,
    .power-fact {
        text-align: left;
    }

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

    .analytics-dashboard {
        transform: scale(0.9);
    }
}

@media (max-width: 992px) {
    .call-flow {
        flex-direction: column;
        gap: 30px;
    }

    .voice-tech-content {
        flex-direction: column;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .call-handling-title,
    .voice-tech-title {
        font-size: 32px;
    }

    .main-voice-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .call-step {
        flex-direction: row;
        text-align: left;
    }

    .voice-selection-panel {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .victory-content,
    .enhanced-content,
    .discovery-content,
    .trusted-content,
    .capabilities-content,
    .faq-content,
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .victory-showcase {
        flex-direction: column;
    }

    .voice-carousel {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .victory-title,
    .enhanced-title,
    .discovery-title,
    .trusted-title,
    .capabilities-title,
    .faq-title {
        font-size: 36px;
    }

    .showcase-left,
    .showcase-right {
        width: 100%;
    }

    .company-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .victory-badge {
        margin: 0 auto 20px;
    }

    .solution-card {
        padding: 20px;
    }

    .voice-line {
        animation: none; /* Disable carousel on small screens */
    }
    
    .plans-section {
        padding-top: 180px;
        background: #000000 !important;
        position: relative;
    }
    
    .plans-background-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 0;
        pointer-events: none;
        z-index: 2;
    }
    
    .plans-section .container {
        position: relative;
        z-index: 3;
    }
    
    .plans-comparison-section {
        background: #000000;
        padding: 120px 0;
        position: relative;
    }
    
    .comparison-background-circle {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(138, 43, 226, 0.2) 50%, transparent 100%);
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
        z-index: 1;
    }
    
    .comparison-background-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        pointer-events: none;
        z-index: 2;
    }
    
    .plans-comparison-section .container {
        position: relative;
        z-index: 3;
    }
    
    .plans-comparison-section .section-header {
        text-align: center;
        margin-bottom: 80px;
    }
    
    .plans-comparison-section .section-header h2 {
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 20px;
    }
    
    .plans-comparison-section .section-header p {
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
        font-size: 18px;
        color: #cccccc;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .comparison-table {
        background: transparent;
        border: none;
        border-radius: 24px;
        overflow: hidden;
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
    }
    
    .comparison-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        padding: 30px;
        background: transparent;
        border: none;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .comparison-header > div {
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
        font-weight: 600;
        color: #ffffff;
        font-size: 18px;
        text-align: center;
    }
    
    .comparison-header > div:first-child {
        text-align: left;
    }
    
    .capability-section .section-title,
    .usage-section .section-title,
    .included-section .section-title {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        padding: 25px 30px;
        background: transparent;
        border: none;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .capability-section .section-title > div,
    .usage-section .section-title > div,
    .included-section .section-title > div {
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
        font-weight: 700;
        color: rgba(138, 43, 226, 0.9);
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .feature-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        padding: 20px 30px;
        border: none;
    }
    
    .feature-row > div {
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
        color: #ffffff;
        font-size: 15px;
        text-align: center;
    }
    
    .feature-row > div:first-child {
        text-align: left;
    }
    
    .feature-row > div:not(:first-child) {
        font-size: 20px;
    }
    
    .feature-row > div:not(:first-child):not(:empty) {
        color: #10b981;
    }
    

    .core-technologies,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-links,
    .footer-cta {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}


