/* Button Components */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: black;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
    transition: all ease-in-out;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

/* Header Component */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo Component */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 0.5rem;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.logo-svg {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

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

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ec4899;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 9999px;
    color: #c4b5fd;
    font-size: 0.875rem;
}

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 32rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.hero-buttons button {
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 10;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.logo-animation {
    position: relative;
    width: 320px;
    height: 320px;
}

.animated-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.ring-1 {
    inset: -100px;
    border-color: rgba(139, 92, 246, 0.2);
    animation: spin-slow 20s linear infinite;
}

.ring-2 {
    inset: -50px;
    border-color: rgba(236, 72, 153, 0.2);
    animation: spin-reverse 15s linear infinite;
}

.ring-3 {
    inset: 0px;
    border-color: rgba(59, 130, 246, 0.2);
    animation: spin-slow 25s linear infinite;
}

.central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite;
}

.main-logo {
    width: 380px;
    height: 380px;
    filter: brightness(.1) invert(1);
    z-index: 1;
}

.lottie-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.lottie-container svg {
    width: 900px !important;
    height: 900px !important;
    filter: brightness(1) invert(0);
}

/* Feature Cards */
.features {
    position: relative;
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #ec4899, #f97316);
}

.feature-icon.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Analytics Dashboard */
.analytics-dashboard {
    position: relative;
    padding: 5rem 0;
}

.analytics-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.analytics-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.analytics-image-container {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -32px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 1.5rem;
    filter: blur(60px);
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
}

.analytics-phone {
    position: relative;
    z-index: 1;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1f2937;
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111827;
    border-radius: 1.5rem;
    padding: 1rem;
    overflow: hidden;
}

.analytics-demo {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-chart {
    flex: 1;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.25rem;
    height: 60px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #3b82f6, #8b5cf6);
    border-radius: 2px;
    min-height: 10px;
    animation: grow 2s ease-out infinite alternate;
}

.demo-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stat-dot.blue {
    background: #3b82f6;
}

.stat-dot.purple {
    background: #8b5cf6;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.floating-card-1 {
    top: -24px;
    left: -24px;
}

.floating-card-2 {
    bottom: -24px;
    right: -24px;
    animation-delay: 1s;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Analytics Features */
.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.features-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.insight-cards {
    display: grid;
    gap: 1rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.insight-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-icon {
    transform: scale(1.1);
}

.insight-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.insight-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.insight-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.insight-icon.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.insight-content {
    flex: 1;
}

.insight-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.insight-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* User Trust Section */
.user-trust {
    margin-top: 2rem;
}

.user-avatars {
    display: flex;
    margin-bottom: 1rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.avatar-2 {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.avatar-3 {
    background: linear-gradient(135deg, #ec4899, #ef4444);
}

.user-trust p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.user-trust strong {
    color: white;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Bottom Stats */
.bottom-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

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

.bottom-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bottom-stats .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* AI Predictions */
.ai-predictions {
    position: relative;
    padding: 5rem 0;
}

.predictions-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.prediction-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.5s ease;
}

.prediction-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.card-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.prediction-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.prediction-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.prediction-card:hover .prediction-icon {
    transform: scale(1.1);
}

.prediction-meta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.prediction-details {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.prediction-badge {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.card-content {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Progress Bars */
.progress-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-header span:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.progress-value {
    color: white;
    font-weight: 500;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    transition: width 2s ease-out;
    animation: progressGrow 2s ease-out;
}

.prediction-result {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prediction-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.prediction-result p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* AI Insights */
.ai-insights {
    margin-bottom: 4rem;
}

.insights-header {
    text-align: center;
    margin-bottom: 2rem;
}

.insights-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.insights-header p {
    color: rgba(255, 255, 255, 0.7);
}

.insights-grid {
    display: grid;
    gap: 1rem;
}

.insights-grid .insight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.insights-grid .insight-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.insight-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.insight-text {
    color: white;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.confidence-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

/* Live Demo */
.live-demo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.demo-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.demo-header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.demo-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.demo-stat .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

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

.demo-cta h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.demo-cta p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 32rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.demo-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* App Showcase */
.app-showcase {
    position: relative;
    padding: 5rem 0;
}

.showcase-content {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon-large {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-highlight:hover .feature-icon-large {
    transform: scale(1.1);
}

.feature-icon-large.green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.feature-icon-large.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.feature-icon-large.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
}

.rating span,
.downloads span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.downloads {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Showcase Visual */
.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phones-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
}

.main-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 10;
    transition: all 0.8s ease-out;
}

.main-phone.animate-in {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.phone-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.3;
}

.phone-device {
    position: relative;
    width: 200px;
    height: 400px;
    background: #111827;
    border-radius: 1.5rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.phone-device.small {
    width: 140px;
    height: 280px;
    padding: 0.5rem;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1f2937;
    border-radius: 1rem;
    padding: 0.75rem;
    overflow: hidden;
}

/* App Interface */
.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.app-logo {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.app-header span {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message-bubble {
    border-radius: 1rem;
    padding: 0.5rem 0.75rem;
    max-width: 80%;
    font-size: 0.75rem;
}

.message-bubble.me {
    background: #3b82f6;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.message-bubble.them {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.message-time {
    font-size: 0.625rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.analysis-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.analysis-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
}

.label {
    color: rgba(255, 255, 255, 0.7);
    min-width: 3rem;
}

.meter {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 2px;
}

.meter-fill.positive {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.value {
    color: white;
    font-weight: 500;
    min-width: 3rem;
    text-align: right;
}

/* Side Phones */
.side-phone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0; /* Başlangıçta görünmez */
    transition: all 0.3s ease;
}

.left-phone {
    left: -20px;
    transform: translateY(-50%) rotate(0deg) scale(0.6); /* Başlangıç pozisyonu */
}

.right-phone {
    right: -20px;
    transform: translateY(-50%) rotate(0deg) scale(0.6); /* Başlangıç pozisyonu */
}

.side-phone:hover {
    opacity: 1;
    transform: translateY(-50%) rotate(0deg) scale(0.8);
}

/* Chart Mockup */
.chart-mockup {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: white;
}

.chart-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.chart-bars {
    flex: 1;
    display: flex;
    align-items: end;
    gap: 0.25rem;
}

.chart-bars .bar {
    flex: 1;
    background: linear-gradient(to top, #3b82f6, #8b5cf6);
    border-radius: 1px;
    min-height: 4px;
}

/* Report Mockup */
.report-mockup {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: white;
}

.report-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.insight-icon {
    font-size: 1rem;
}

.insight-text {
    font-size: 0.625rem;
    font-weight: 500;
}

/* Floating UI */
.floating-ui {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 0.75rem;
    z-index: 20;
    animation: bounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.floating-ui-1 {
    top: 40px;
    left: 40px;
}

.floating-ui-2 {
    bottom: 40px;
    right: 40px;
    animation-delay: 1s;
}

/* Phone Background Orbs */
.phone-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    z-index: -1;
}

.orb-1 {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    top: 25%;
    left: 25%;
    animation: pulse 4s ease-in-out infinite;
}

.orb-2 {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    bottom: 25%;
    right: 25%;
    animation: pulse 4s ease-in-out infinite 2s;
}

.orb-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    top: 75%;
    left: 75%;
    animation: pulse 4s ease-in-out infinite 4s;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 24rem;
    line-height: 1.6;
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 9999px;
    color: #c4b5fd;
    font-size: 0.875rem;
    width: fit-content;
}

.brand-badge i {
    color: #ec4899;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons,
    .demo-buttons,
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons,
    .demo-buttons {
        justify-content: flex-start;
    }
    
    .insight-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .analytics-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .showcase-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .predictions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bottom-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .insight-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states */
button:focus,
a:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .prediction-card,
    .insight-card {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .bg-orb {
        opacity: 0.1;
    }
}

/* Fixed Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}
