/* Global Styles */
:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --accent-color: #34C759;
    --danger-color: #FF3B30;
    --warning-color: #FF9500;
    --dark-bg: #0A0B0D;
    --dark-surface: #161719;
    --dark-card: #1C1D20;
    --text-primary: #FFFFFF;
    --text-secondary: #8E8E93;
    --text-tertiary: #636366;
    --border-color: #2C2C2E;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.headset-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.headset-icon svg {
    stroke: var(--primary-color);
}

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

.loading-text {
    color: var(--text-secondary);
    font-size: 14px;
    animation: fade 1.5s infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo svg {
    stroke: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

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

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

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(22, 23, 25, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-item {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu-item:hover {
    background: var(--dark-card);
    color: var(--text-primary);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

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

.orb1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.orb3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-50px, 100px) scale(0.9);
    }
    75% {
        transform: translate(50px, 50px) scale(1.05);
    }
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation: rotate 15s infinite linear;
}

.element1 {
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.element2 {
    top: 60%;
    right: 10%;
    animation-duration: 25s;
}

.element3 {
    bottom: 20%;
    left: 40%;
    animation-duration: 30s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

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

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}

.hero-badge.enterprise {
    background: rgba(0, 122, 255, 0.15);
    color: #00B4FF;
    border-color: rgba(0, 180, 255, 0.3);
}

.hero-badge.bluetooth {
    background: rgba(88, 86, 214, 0.15);
    color: #8B85FF;
    border-color: rgba(139, 133, 255, 0.3);
}

.hero-badge.hp {
    background: rgba(52, 199, 89, 0.15);
    color: #34C759;
    border-color: rgba(52, 199, 89, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.3);
}

.btn-nda {
    background: linear-gradient(135deg, #FF6B6B, #FF3B30);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-nda::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

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

.btn-nda:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--dark-card);
    border-color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 122, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease;
}

/* Sparkles Effect */
.sparkles-container {
    position: absolute;
    top: 0;
    left: -100px;
    right: -100px;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.sparkle {
    position: absolute;
    font-size: 24px;
    animation: sparkle-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

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

.sparkle-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.3s;
    animation-duration: 3s;
    font-size: 20px;
}

.sparkle-3 {
    top: 50%;
    left: 0;
    animation-delay: 0.6s;
    animation-duration: 2.8s;
}

.sparkle-4 {
    bottom: 30%;
    right: 5%;
    animation-delay: 0.9s;
    animation-duration: 3.2s;
    font-size: 28px;
}

.sparkle-5 {
    bottom: 15%;
    left: 10%;
    animation-delay: 1.2s;
    animation-duration: 2.6s;
    font-size: 18px;
}

.sparkle-6 {
    top: 35%;
    right: 0;
    animation-delay: 1.5s;
    animation-duration: 3.1s;
}

.sparkle-7 {
    top: 5%;
    left: 45%;
    animation-delay: 1.8s;
    animation-duration: 2.9s;
    font-size: 26px;
}

.sparkle-8 {
    bottom: 5%;
    right: 40%;
    animation-delay: 2.1s;
    animation-duration: 2.7s;
}

@keyframes sparkle-float {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: translateY(-10px) scale(1) rotate(180deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.2) rotate(360deg);
    }
    80% {
        opacity: 1;
        transform: translateY(-10px) scale(1) rotate(540deg);
    }
}

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

.phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    animation: phone-float 4s ease-in-out infinite;
}

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

.phone-frame {
    background: linear-gradient(145deg, var(--dark-surface), #0d0e10);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(0, 122, 255, 0.1),
        inset 0 0 10px rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    animation: shine 3s ease-in-out infinite;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 122, 255, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(88, 86, 214, 0.1) 100%
    );
    border-radius: 40px;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.phone-screen {
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    animation: screenshot-fade 2s ease;
}

@keyframes screenshot-fade {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.screenshot-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.live-indicator {
    background: rgba(52, 199, 89, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    animation: slideInRight 1s ease 0.5s both;
    box-shadow: 0 5px 15px rgba(52, 199, 89, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 5;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.app-interface {
    animation: fadeIn 2s ease;
}

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

.app-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.status-icons {
    display: flex;
    gap: 5px;
}

.app-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-title-bar h3 {
    font-size: 1.5rem;
}

.connection-status {
    background: rgba(52, 199, 89, 0.2);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.battery-widget {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.battery-icon {
    width: 100px;
    height: 40px;
    background: var(--dark-surface);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 15px;
    background: var(--border-color);
    border-radius: 0 2px 2px 0;
}

.battery-level {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #00E676);
    border-radius: 8px;
    transition: width 2s ease;
    position: relative;
    overflow: hidden;
}

.battery-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: battery-shine 3s ease-in-out infinite;
}

@keyframes battery-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.battery-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.quick-settings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.setting-card {
    background: var(--dark-bg);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.setting-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.setting-card:hover::before {
    width: 100px;
    height: 100px;
}

.setting-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 122, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.setting-card:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s both; }
.setting-card:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s both; }
.setting-card:nth-child(3) { animation: fadeInUp 0.5s ease 0.3s both; }
.setting-card:nth-child(4) { animation: fadeInUp 0.5s ease 0.4s both; }

.setting-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.wear-status {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 15px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-tertiary);
}

.status-indicator.active {
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.badge {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: float-badge 4s ease-in-out infinite;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.badge span {
    filter: drop-shadow(0 0 5px currentColor);
}

.badge-1 {
    top: 15%;
    left: -80px;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 59, 48, 0.05));
}

.badge-2 {
    top: 45%;
    right: -90px;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.2), rgba(88, 86, 214, 0.05));
}

.badge-3 {
    bottom: 25%;
    left: -70px;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.05));
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-15px) scale(1.05);
    }
    75% {
        transform: translateY(10px) scale(0.95);
    }
}

/* App Preview Section */
.app-preview-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
}

.app-preview-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.preview-content {
    animation: slideInLeft 1s ease;
}

.preview-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.preview-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.preview-feature:hover {
    background: rgba(0, 122, 255, 0.1);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateX(10px);
}

.feature-emoji {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px currentColor);
}

.preview-showcase {
    position: relative;
    animation: slideInRight 1s ease;
}

.showcase-phone {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.showcase-frame {
    background: linear-gradient(145deg, #1a1b1e, #0d0e10);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 122, 255, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: none;
    animation: imageSwitch 0.5s ease;
}

.showcase-img.active {
    display: block;
}

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

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary-color);
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, transparent 50%);
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* Mobile adjustments for preview section */
@media (max-width: 768px) {
    .preview-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .preview-feature {
        justify-content: center;
    }
    
    .preview-feature:hover {
        transform: translateX(0) translateY(-5px);
    }
}

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

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Clients Section */
.clients-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.5), transparent);
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.client-logo {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    background: rgba(0, 122, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.1);
}

.client-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.client-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.client-stat p {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: var(--dark-surface);
}

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

.feature-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    stroke: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Technology Stack */
.tech-stack {
    padding: 100px 20px;
    background: var(--dark-bg);
}

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

.tech-item {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-10px);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--dark-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tech-item:hover .tech-icon {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.2);
}

.tech-icon img {
    width: 50px;
    height: 50px;
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Screenshots Carousel */
.screenshots {
    padding: 100px 20px;
    background: var(--dark-surface);
    overflow: hidden;
}

.screenshots-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-container {
    overflow: visible;
    padding: 20px 0;
}

.screenshot-track {
    display: flex;
    gap: 30px;
    padding: 0 50px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-item {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

.screenshot-phone {
    position: relative;
    background: linear-gradient(145deg, var(--dark-card), var(--dark-bg));
    border-radius: 25px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 20px rgba(0, 122, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: scale(0.9);
}

.screenshot-phone:hover {
    transform: scale(1) translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 122, 255, 0.3),
        0 0 0 2px rgba(0, 122, 255, 0.3),
        inset 0 0 30px rgba(0, 122, 255, 0.1);
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
}

.screenshot-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.screenshot-phone:hover .screenshot-caption {
    color: var(--primary-color);
}

/* Screenshot Focus Effect */
.screenshot-item:nth-child(2) .screenshot-phone {
    transform: scale(1);
    box-shadow: 
        0 25px 50px rgba(0, 122, 255, 0.2),
        0 0 0 1px rgba(0, 122, 255, 0.2);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.carousel-btn svg {
    stroke: var(--text-primary);
    transition: transform 0.3s ease;
}

.carousel-btn:hover svg {
    stroke: white;
}

.carousel-btn.prev:hover svg {
    transform: translateX(-2px);
}

.carousel-btn.next:hover svg {
    transform: translateX(2px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}

.indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.5);
}

/* Mobile adjustments for screenshots */
@media (max-width: 768px) {
    .screenshot-track {
        padding: 0 20px;
    }
    
    .screenshot-item {
        min-width: calc(100% - 40px);
    }
    
    .screenshot-phone {
        transform: scale(1);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: var(--dark-bg);
    position: relative;
}

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

.testimonial-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 122, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: -20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.rating {
    font-size: 1rem;
    color: #FFD700;
}

/* Metrics Section */
.metrics {
    padding: 100px 20px;
    background: var(--dark-bg);
}

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

.metric-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.metric-growth {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Deployment Section */
.deployment-section {
    padding: 100px 20px;
    background: var(--dark-surface);
    position: relative;
}

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

.deployment-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.deployment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.deployment-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(88, 86, 214, 0.05));
}

.deployment-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.deployment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px currentColor);
}

.deployment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.deployment-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.deployment-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 25px;
}

.deployment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.deployment-features li:last-child {
    border-bottom: none;
}

/* Download Section */
.download-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
}

.download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.download-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    padding: 15px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-btn.google-play:hover {
    border-color: #34C759;
    background: rgba(52, 199, 89, 0.1);
}

.download-btn.app-store {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
}

.download-btn.app-store:hover {
    border-color: #000;
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.download-btn.github:hover {
    border-color: var(--primary-color);
    background: rgba(0, 122, 255, 0.1);
}

.btn-text {
    text-align: left;
}

.small-text {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    display: block;
}

.main-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.download-btn.app-store:hover {
    border-color: #000;
    background: rgba(0, 0, 0, 0.1);
}

.enterprise-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.e-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.e-badge:hover {
    background: rgba(0, 122, 255, 0.1);
    border-color: rgba(0, 122, 255, 0.3);
    transform: translateY(-2px);
}

.e-badge svg {
    fill: var(--primary-color);
}

.compatibility-note {
    color: var(--text-secondary);
    text-align: center;
}

.compatibility-note p {
    margin: 5px 0;
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo svg {
    stroke: var(--primary-color);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-tertiary);
}

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

.footer-badges .badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Scroll Animations */
.scrolled {
    animation: fadeInUp 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .deployment-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enterprise-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .e-badge {
        width: 100%;
        max-width: 300px;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-badges {
        display: none;
    }

    .gradient-orb {
        filter: blur(100px);
    }

    .orb1 {
        width: 400px;
        height: 400px;
    }

    .orb2 {
        width: 350px;
        height: 350px;
    }

    .orb3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .clients-logos {
        grid-template-columns: 1fr;
    }
    
    .client-stats {
        grid-template-columns: 1fr;
    }
    
    .deployment-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .phone-mockup {
        transform: scale(0.8);
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-icon {
        width: 60px;
        height: 60px;
    }

    .tech-icon img {
        width: 30px;
        height: 30px;
    }

    .metric-card {
        padding: 30px 20px;
    }

    .metric-value {
        font-size: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .animated-bg,
    .loading-screen,
    .carousel-controls,
    .download-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .features,
    .tech-stack,
    .metrics {
        page-break-inside: avoid;
    }
}