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

:root {
    /* Light Theme Colors */
    --primary-color: #3E7BFA;
    --secondary-color: #19C2A3;
    --accent-color: #FF6B6B;
    --text-primary: #1A1E2A;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FD;
    --bg-tertiary: #F1F5F9;
    --border-color: #E5E7EB;
    --shadow-light: rgba(0, 0, 0, 0.04);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #3E7BFA 0%, #19C2A3 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --backdrop-blur: blur(10px);
}

[data-theme="dark"], .dark-mode {
    /* Dark Theme Colors */
    --primary-color: #3E7BFA;
    --secondary-color: #19C2A3;
    --accent-color: #FF6B6B;
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --bg-primary: #121622;
    --bg-secondary: #1E2439;
    --bg-tertiary: #2A3349;
    --border-color: #374151;
    --shadow-light: rgba(0, 0, 0, 0.2);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --shadow-strong: rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, #3E7BFA 0%, #19C2A3 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.dark-mode .navbar {
    background: rgba(18, 22, 34, 0.8);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 24px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
.nav-links.mobile-open {
    display: flex;
}

.theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.dark-mode .theme-toggle {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.theme-toggle:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(62, 123, 250, 0.3);
}

.dark-mode .theme-toggle:hover {
    box-shadow: 0 8px 25px rgba(62, 123, 250, 0.4);
}

.theme-toggle:hover::before {
    opacity: 1;
}

.theme-toggle:active {
    transform: translateY(0) scale(0.95);
}

.theme-icon {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover .theme-icon {
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.theme-icon svg {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.theme-switching .theme-icon {
    animation: themeSwitch 0.6s ease-in-out;
}

@keyframes themeSwitch {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

/* Sun rays animation */
.theme-icon.sun-icon svg {
    animation: sunRotate 8s linear infinite;
}

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

/* Moon glow effect */
.theme-icon.moon-icon svg {
    filter: drop-shadow(0 0 8px rgba(139, 69, 19, 0.3));
}

.dark-mode .theme-icon.moon-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* Floating particles effect */
.theme-toggle::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.theme-toggle:hover::after {
    opacity: 1;
    animation: float 2s ease-in-out infinite;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    position: relative;
    transform: none !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(62, 123, 250, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(25, 194, 163, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-text {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(62, 123, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(62, 123, 250, 0.4);
}

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

.btn-secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.hero-screenshot {
    width: 280px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.phone-frame {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 40px;
    z-index: -1;
    opacity: 0.1;
}

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

.floating-card {
    position: absolute;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px var(--shadow-medium);
    backdrop-filter: var(--backdrop-blur);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -80px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: -40px;
    animation-delay: 4s;
}

.card-icon {
    font-size: 24px;
}

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

.card-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.card-value {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

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

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section - 2025 Modern Design */
.features {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(62, 123, 250, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(25, 194, 163, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.features-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid Layout */
.features-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, minmax(200px, auto));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bento Card Base */
.bento-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.bento-card:hover::before {
    opacity: 0.02;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 
        0 20px 40px rgba(62, 123, 250, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(62, 123, 250, 0.1);
}

/* Bento Grid Sizes */
.bento-large {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 6;
    grid-row: span 1;
}

/* Bento Content */
.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.bento-icon.primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

.bento-icon.charts {
    background: linear-gradient(135deg, #3E7BFA, #19C2A3);
    color: white;
}

.bento-icon.crypto {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
}

.bento-icon.favorites {
    background: linear-gradient(135deg, #FF9A9E, #FECFEF);
    color: #8B5A83;
}

.bento-icon.themes {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(5deg);
}

.bento-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.bento-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 14px;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    gap: 32px;
    margin-top: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Bento Visual Elements */
.bento-visual {
    position: relative;
    z-index: 2;
    margin-top: 24px;
}

.rate-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rate-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.bento-card:hover .rate-card {
    transform: scale(1.05);
    border-color: var(--accent-primary);
}

.currency {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.rate {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
}

.change.positive {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

/* Chart Preview */
.chart-preview {
    margin-top: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-chart {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.bento-card:hover .mini-chart {
    opacity: 1;
}

/* Crypto Icons */
.crypto-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.crypto-symbol {
    width: 32px;
    height: 32px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.bento-card:hover .crypto-symbol {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

/* Theme Toggle Preview */
.theme-toggle-preview {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.theme-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.theme-dot.light {
    background: #ffffff;
}

.theme-dot.dark {
    background: #1a1d23;
}

.bento-card:hover .theme-dot {
    transform: scale(1.1);
    border-color: var(--accent-primary);
}

/* Advanced Features */
.advanced-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.advanced-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.advanced-item:hover {
    transform: translateX(4px);
    border-color: var(--accent-primary);
    background: rgba(62, 123, 250, 0.02);
}

.advanced-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.advanced-item span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

/* Screenshots Section - 2025 Modern Design */
.screenshots {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(62, 123, 250, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(25, 194, 163, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.screenshots-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.screenshots-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 3D Device Display */
.device-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-stage {
    position: relative;
    width: 600px;
    height: 600px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.device-mockup {
    position: absolute;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.primary-device {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(5deg) rotateY(-10deg);
    z-index: 3;
}

.secondary-device {
    opacity: 0.7;
    z-index: 1;
    display: none; /* Hide secondary devices */
}

.left-device {
    top: 20%;
    left: 5%;
    transform: translate(-50%, -50%) rotateX(15deg) rotateY(25deg) scale(0.6);
}

.right-device {
    bottom: 20%;
    right: 5%;
    transform: translate(50%, 50%) rotateX(-10deg) rotateY(-30deg) scale(0.6);
}

.device-frame {
    position: relative;
    background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
    border-radius: 36px;
    padding: 8px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.device-frame.mini {
    border-radius: 24px;
    padding: 6px;
}

.device-screen {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 390/844;
    width: 280px;
}

.device-frame.mini .device-screen {
    border-radius: 18px;
    width: 180px;
}

.device-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    transition: all 0.5s ease;
}

.device-frame.mini .device-screenshot {
    border-radius: 18px;
}

.device-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 28px;
    pointer-events: none;
    opacity: 0.6;
}

/* Interactive Hotspots */
.feature-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: none; /* Hide hotspots */
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.hotspot-1 {
    top: 25%;
    left: 70%;
}

.hotspot-2 {
    top: 45%;
    left: 50%;
}

.hotspot-3 {
    top: 65%;
    left: 25%;
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: hotspotPulse 2s infinite;
}

.hotspot-pulse::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: hotspotRipple 2s infinite;
}

.hotspot-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

@keyframes hotspotPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes hotspotRipple {
    0% { 
        transform: scale(1);
        opacity: 0.3; 
    }
    100% { 
        transform: scale(3);
        opacity: 0; 
    }
}

/* Floating UI Elements */
.floating-ui-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatElements 6s ease-in-out infinite;
    min-width: 140px;
}

.dark-mode .floating-element {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.element-1 {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: -25%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 15%;
    right: -15%;
    animation-delay: 4s;
}

.element-icon {
    font-size: 24px;
    flex-shrink: 0;
}

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

.element-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.element-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

@keyframes floatElements {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

/* Feature Details Panel */
.feature-details {
    position: relative;
    padding-left: 40px;
}

.feature-content {
    opacity: 0;
    transform: none;
    transition: none;
    position: absolute;
    top: 0;
    left: 40px;
    right: 0;
}

.feature-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    left: 0;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

.feature-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
    background: rgba(62, 123, 250, 0.05);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 16px;
}

/* Navigation Controls */
.screenshots-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.feature-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-nav-btn.active {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 123, 250, 0.3);
}

.feature-nav-btn:hover:not(.active) {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-nav-btn.active .nav-icon {
    transform: scale(1.1);
}

.nav-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.feature-nav-btn.active .nav-label {
    color: white;
}

/* Hover Effects */
.device-mockup:hover {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) scale(1.05);
}

.primary-device:hover {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) scale(1.02);
}

.secondary-device:hover {
    opacity: 1;
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) scale(0.7);
}

/* Social Proof Section - 2025 Modern Design */
.social-proof {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(62, 123, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(25, 194, 163, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonials-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.stat-badge:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(62, 123, 250, 0.15);
}

.stat-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-badge:hover::before {
    opacity: 0.05;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.stat-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Testimonials Carousel Container */
.testimonials-carousel-container {
    position: relative;
    margin: 80px 0;
    height: 700px;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
    justify-content: center;
}

.testimonials-row {
    display: flex;
    gap: 24px;
    align-items: center;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    will-change: transform;
    height: 300px;
    flex-shrink: 0;
}

.row-right {
    animation-name: scrollLeftToRight;
}

.row-left {
    animation-name: scrollRightToLeft;
}

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

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

/* Testimonial Cards - Modern Glassmorphism Design */
.testimonial-card.glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 420px;
    max-width: 420px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.dark-mode .testimonial-card.glass {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.testimonial-card.glass::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%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card.glass:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(62, 123, 250, 0.3);
    box-shadow: 
        0 20px 60px rgba(62, 123, 250, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.testimonial-card.glass:hover::before {
    opacity: 1;
}

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

.author-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card.glass:hover .avatar-img {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.verified-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: 600;
    border: 2px solid var(--bg-primary);
    animation: pulse 2s infinite;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.author-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.2;
}

.location {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.stars {
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-score {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
}

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

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: -16px;
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.usage-badge {
    font-size: 12px;
    color: var(--primary-color);
    background: rgba(62, 123, 250, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(62, 123, 250, 0.2);
}

.date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}



/* Testimonials Controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.control-btn.hidden {
    display: none;
}

.control-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Pause/Play Animation States */
.testimonials-track.paused .testimonials-row {
    animation-play-state: paused;
}

.testimonials-track:not(.paused) .testimonials-row {
    animation-play-state: running;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

/* Responsive Design for Mobile */
@media (max-width: 1024px) {
    .testimonials-stats {
        gap: 20px;
    }
    
    .stat-badge {
        padding: 16px 20px;
        min-width: 100px;
    }
    
    .testimonials-carousel-container {
        height: 600px;
        margin: 60px 0;
    }
    
    .testimonials-row {
        height: 260px;
    }
    
    .testimonial-card.glass {
        min-width: 350px;
        max-width: 350px;
        padding: 24px;
    }
    

}

@media (max-width: 768px) {
    .social-proof {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .testimonials-stats {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-badge {
        padding: 12px 16px;
        min-width: 80px;
        width: 100%;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .testimonials-carousel-container {
        height: 500px;
        margin: 40px 0;
        mask: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
        -webkit-mask: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
    }
    
    .testimonials-row {
        gap: 16px;
        height: 220px;
    }
    
    .testimonial-card.glass {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    
    .testimonial-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .avatar-img {
        width: 48px;
        height: 48px;
    }
    
    .verified-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .author-name {
        font-size: 15px;
    }
    
    .author-title {
        font-size: 13px;
    }
    
    .location {
        font-size: 11px;
    }
    
    .testimonial-content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .testimonial-content p::before {
        font-size: 36px;
        top: -6px;
        left: -12px;
    }
    
    .usage-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .date {
        font-size: 11px;
    }
    

    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .control-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .social-proof {
        padding: 60px 0;
    }
    
    .testimonials-stats {
        gap: 12px;
    }
    
    .stat-badge {
        padding: 10px 12px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-stars {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .testimonials-carousel-container {
        height: 400px;
        margin: 30px 0;
    }
    
    .testimonials-row {
        gap: 12px;
        height: 180px;
    }
    
    .testimonial-card.glass {
        min-width: 240px;
        max-width: 240px;
        padding: 16px;
        border-radius: 20px;
    }
    
    .testimonial-header {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .avatar-img {
        width: 40px;
        height: 40px;
    }
    
    .verified-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -2px;
        right: -2px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-title {
        font-size: 12px;
    }
    
    .location {
        font-size: 10px;
    }
    
    .rating {
        gap: 2px;
    }
    
    .stars {
        font-size: 12px;
    }
    
    .rating-score {
        font-size: 10px;
        padding: 1px 4px;
    }
    
    .testimonial-content {
        margin-bottom: 12px;
    }
    
    .testimonial-content p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .testimonial-content p::before {
        font-size: 28px;
        top: -4px;
        left: -8px;
    }
    
    .testimonial-footer {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .usage-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .date {
        font-size: 10px;
    }
    
    .testimonials-controls {
        gap: 12px;
        margin-top: 30px;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .control-text {
        font-size: 11px;
    }
}

/* CTA Section */
.cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    overflow: hidden;
}

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

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

.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.cta-orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

.cta-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

.dark-mode .cta-grid-pattern {
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(62, 123, 250, 0.1);
    border: 1px solid rgba(62, 123, 250, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cta-title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

.cta-description {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-description strong {
    color: var(--text-primary);
    font-weight: 700;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
}

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

.cta-stat-number {
    display: block;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cta-stat-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 4px;
}

.cta-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

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

.download-btn {
    display: block;
    text-decoration: none;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.download-btn-ios:hover {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
}

.download-btn-android:hover {
    background: linear-gradient(135deg, #01875f, #34a853);
    color: white;
}

.download-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-btn-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-btn-small {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 2px;
}

.download-btn-large {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.download-btn:hover .download-btn-small,
.download-btn:hover .download-btn-large {
    color: white;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dark-mode .cta-feature {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.cta-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.cta-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg {
    color: var(--primary-color);
}

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

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-strong);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.scroll-to-top:hover svg {
    color: white;
}

.scroll-to-top:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dark-mode .scroll-to-top {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark-mode .scroll-to-top:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .screenshot-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .floating-cards {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        display: none;
        box-shadow: 0 4px 20px var(--shadow-medium);
    }
    
    .dark-mode .nav-links {
        background: var(--bg-primary);
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 8px 0;
        text-align: center;
        width: 100%;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: calc(100vh - 70px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-screenshot {
        width: 240px;
    }
    
    /* Other sections */
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 18px;
    }
    
    .features-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-subtitle {
        font-size: 18px;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .advanced-features {
        gap: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Section Mobile */
    .cta {
        padding: 80px 0;
    }
    
    .cta-stats {
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .cta-stat-number {
        font-size: 24px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .download-btn {
        width: 280px;
        max-width: 100%;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .cta-feature {
        padding: 12px;
    }
    
    .cta-trust-indicators {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
        height: 60px;
    }
    
    .navbar {
        height: 60px;
    }
    
    .nav-links {
        top: 60px;
        padding: 16px 12px;
        gap: 16px;
    }
    
    .logo {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-container {
        padding: 0 12px;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        margin-bottom: 32px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-screenshot {
        width: 200px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .features-subtitle {
        font-size: 16px;
    }
    
    .bento-card {
        padding: 20px;
    }
    
    .bento-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    
    .bento-text h3 {
        font-size: 18px;
    }
    
    .bento-card h3 {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .crypto-icons {
        gap: 6px;
    }
    
    .crypto-symbol {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .advanced-features {
        gap: 10px;
    }
    
    .advanced-item {
        padding: 10px 12px;
    }
    
    .advanced-icon {
        width: 28px;
        height: 28px;
    }
    
    .screenshot-img {
        width: 200px;
    }
    
    /* Screenshots Section Mobile */
    .screenshots {
        padding: 80px 0;
    }
    
    .screenshots-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .device-stage {
        width: 100%;
        height: 400px;
        transform: scale(0.8);
    }
    
    .feature-details {
        padding-left: 0;
        order: -1;
        min-height: 500px;
        position: relative;
    }
    
    .feature-content {
        position: static !important;
        left: 0 !important;
        opacity: 1;
        transform: none;
        transition: opacity 0.3s ease;
    }
    
    .feature-content:not(.active) {
        display: none;
    }
    
    .feature-content h3 {
        font-size: 28px;
    }
    
    .feature-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .feature-highlights {
        gap: 12px;
    }
    
    .highlight-item {
        padding: 12px 16px;
    }
    
    .highlight-icon {
        width: 32px;
        height: 32px;
    }
    
    .highlight-item span {
        font-size: 14px;
    }
    
    .screenshots-navigation {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px;
        margin-top: 40px;
    }
    
    .feature-nav-btn {
        padding: 12px 16px;
        gap: 6px;
        flex: 1;
        min-width: 120px;
    }
    
    .nav-icon {
        font-size: 18px;
    }
    
    .nav-label {
        font-size: 11px;
    }
    
    .floating-ui-elements {
        display: none;
    }
    
    .secondary-device {
        display: none;
    }
    
    .device-frame {
        border-radius: 28px;
        padding: 6px;
    }
    
    .device-screen {
        border-radius: 22px;
        width: 240px;
    }
    
    .device-screenshot {
        border-radius: 22px;
    }
    
    /* CTA Section Extra Small Mobile */
    .cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .cta-stats {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .cta-stat-number {
        font-size: 20px;
    }
    
    .cta-stat-stars {
        font-size: 12px;
    }
    
    .cta-stat-label {
        font-size: 12px;
    }
    
    .download-buttons {
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .download-btn {
        width: 260px;
        padding: 14px 20px;
    }
    
    .download-btn-icon {
        width: 28px;
        height: 28px;
    }
    
    .download-btn-small {
        font-size: 11px;
    }
    
    .download-btn-large {
        font-size: 16px;
    }
    
    .cta-features {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .cta-feature {
        padding: 10px;
        font-size: 14px;
    }
    
    .cta-feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .cta-trust-indicators {
        gap: 12px;
    }
    
    .trust-item {
        font-size: 12px;
    }
    
    .trust-item svg {
        width: 14px;
        height: 14px;
    }

    /* Mobile adjustments for scroll-to-top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
} 