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

:root {
    /* Colors */
    --primary: #00d4aa;
    --primary-dark: #00b894;
    --secondary: #6c5ce7;
    --accent: #fd79a8;
    --success: #00b894;
    --warning: #fdcb6e;
    --error: #e84393;
    
    --dark: #0f0f23;
    --dark-light: #1e1e3f;
    --gray: #2d3748;
    --gray-light: #4a5568;
    --gray-lighter: #718096;
    --white: #ffffff;
    --light: #f7fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-lighter);
    background: var(--dark);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 2;
}

/* Section - Modern Base Styles */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.section-dark {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.section-header {
    text-align: left;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 212, 170, 0.12);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 212, 170, 0.25);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.section-badge:hover {
    background: rgba(0, 212, 170, 0.18);
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateY(-2px);
}

.section-badge i {
    font-size: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    font-weight: 400;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000; /* High z-index to stay above everything */
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.95);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-logo .logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo i {
    color: var(--primary);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--gray-lighter);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section - Modern & Professional Redesign */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.08;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 65%;
    right: 12%;
    width: 180px;
    height: 180px;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 25%;
    left: 15%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 35%;
    right: 35%;
    width: 140px;
    height: 140px;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    z-index: 3;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 212, 170, 0.12);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(0, 212, 170, 0.18);
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateY(-2px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    max-width: 580px;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 52px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.6;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-cta .btn-primary {
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 212, 170, 0.3),
        0 0 0 1px rgba(0, 212, 170, 0.2);
}

.hero-cta .btn-primary::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 ease;
}

.hero-cta .btn-primary:hover::before {
    left: 100%;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 212, 170, 0.4),
        0 0 0 1px rgba(0, 212, 170, 0.3);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 600px;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

.phone-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-mockup-container {
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 2px 8px rgba(255, 255, 255, 0.1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 43px;
    z-index: -1;
    opacity: 0.4;
    animation: glowPulse 4s ease-in-out infinite alternate;
    filter: blur(8px);
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -2;
    animation: glowRotate 8s linear infinite;
}

@keyframes glowPulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.03); }
}

@keyframes glowRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 28px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px; /* Increased for larger phone */
    overflow: hidden;
    position: relative;
}

.phone-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    background: #000;
    display: block;
}

.phone-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 25px;
    background: #0a1628;
    display: block;
    transition: transform 0.3s ease;
}

/* Floating Feature Cards - Long Chip Design */
.floating-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.feature-card {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 0.5px rgba(0, 212, 170, 0.1);
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    width: max-content;
    min-width: 180px;
    max-width: 240px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: auto;
    cursor: default;
    overflow: hidden;
    white-space: nowrap;
}

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

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

.feature-card:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
    border-color: rgba(0, 212, 170, 0.35);
    box-shadow: 
        0 12px 36px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 0 0.5px rgba(0, 212, 170, 0.2),
        0 0 24px rgba(0, 212, 170, 0.25);
}

.feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 
        0 3px 10px rgba(0, 212, 170, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    box-shadow: 
        0 4px 14px rgba(0, 212, 170, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 12px rgba(0, 212, 170, 0.4);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.2; }
}

.feature-card span {
    text-align: left;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    line-height: 1.3;
    font-size: 12px;
    opacity: 0.95;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
}

.feature-card:hover span {
    opacity: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Chip positioning */
.card-1 {
    top: 10%;
    right: -140px;
    animation-name: floatCard1;
    animation-delay: 0s;
    transform-origin: center center;
}

.card-2 {
    top: 33%;
    left: -140px;
    animation-name: floatCard2;
    animation-delay: 1.2s;
    transform-origin: center center;
}

.card-3 {
    bottom: 20%;
    right: -140px;
    animation-name: floatCard3;
    animation-delay: 2.4s;
    transform-origin: center center;
}

.card-4 {
    top: 58%;
    left: -140px;
    animation-name: floatCard4;
    animation-delay: 3.6s;
    transform-origin: center center;
}

/* Smooth floating animations */
@keyframes floatCard1 {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

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

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

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

/* Navigation */
.screen-navigation {
    display: flex;
    gap: 12px;
    justify-content: center;
}

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

.nav-dot.active {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.nav-dot.active:hover {
    background: var(--primary);
}

/* Screen Labels */
.screen-labels {
    position: relative;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen-label {
    position: absolute;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.screen-label.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: var(--primary);
    transform: translateX(-50%) translateY(-5px);
}

.hero-scroll-indicator i {
    font-size: 18px;
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* Problem Section - Modern Redesign */
.problem-section {
    position: relative;
    overflow: hidden;
}

.problem-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.problem-header .section-badge {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.25);
    color: #ff6b6b;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.15);
}

.problem-header .section-badge:hover {
    background: rgba(231, 76, 60, 0.18);
    border-color: rgba(231, 76, 60, 0.4);
}

/* Story Section - Modern Design */
.problem-story {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.story-intro {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 56px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.story-intro:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 24px 70px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.story-visual {
    text-align: center;
}

.farmer-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 32px auto;
    box-shadow: 
        0 12px 32px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.farmer-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(12px);
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite;
}

.loss-indicators {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.loss-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #e74c3c;
    font-family: var(--font-heading);
}

.loss-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 4px;
}

.story-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.story-content p {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(255, 212, 77, 0.15), rgba(255, 193, 7, 0.1));
    border-left: 3px solid #ffd54f;
    padding: 20px 24px;
    border-radius: 12px;
    font-size: 16px;
    color: #ffd54f;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(255, 212, 77, 0.1);
    font-weight: 600;
    line-height: 1.6;
}

/* Problems Breakdown - Modern Design */
.problems-breakdown {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.breakdown-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 56px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 40px;
    align-items: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-item:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.problem-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 
        0 8px 24px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    flex-shrink: 0;
}

.problem-number::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.problem-details h4 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.problem-details p {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.problem-impact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(238, 90, 111, 0.1));
    border-radius: 12px;
    border-left: 3px solid #ff6b6b;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.1);
}

.impact-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    flex-shrink: 0;
}

.impact-value {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b6b;
    text-align: right;
    flex-grow: 1;
}

/* Summary Section - Modern Design */
.problem-summary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 64px 56px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.summary-content h3 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.summary-content p {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 750px;
    margin: 0 auto 40px auto;
}

.hope-message {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--gradient-primary);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(16px, 1.8vw, 18px);
    box-shadow: 
        0 12px 32px rgba(0, 212, 170, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hope-message::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 ease;
}

.hope-message:hover::before {
    left: 100%;
}

.hope-message:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 16px 40px rgba(0, 212, 170, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hope-message i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .problem-section {
        padding: 80px 0;
    }
    
    .story-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px;
    }
    
    .problem-item {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        padding: 32px;
    }
    
    .problem-number {
        margin: 0 auto;
    }
    
    .problem-summary {
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    .problem-section {
        padding: 60px 0;
    }
    
    .problem-header {
        margin-bottom: 48px;
    }
    
    .problems-breakdown {
        margin-bottom: 48px;
    }
    
    .breakdown-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .story-intro {
        padding: 32px 24px;
        gap: 32px;
    }
    
    .farmer-icon {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .loss-indicators {
        gap: 16px;
    }
    
    .loss-number {
        font-size: 22px;
    }
    
    .problem-item {
        padding: 28px 24px;
        gap: 24px;
    }
    
    .problem-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto;
    }
    
    .problem-details h4 {
        font-size: clamp(18px, 4vw, 22px);
    }
    
    .problem-summary {
        padding: 40px 24px;
    }
    
    .summary-content h3 {
        font-size: clamp(24px, 5vw, 32px);
    }
    
    .summary-content p {
        font-size: clamp(15px, 3vw, 18px);
    }
    
    .hope-message {
        font-size: clamp(14px, 3vw, 16px);
        padding: 14px 28px;
    }
    
    .insight-card,
    .stat-card {
        padding: 32px 24px;
    }
    
    .market-statistics {
        padding: 40px 24px;
    }
    
    .opportunity-cta {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .solution-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .solution-visual {
        position: static;
        top: auto;
    }
    
    .device-container {
        max-width: 100%;
    }
    
    .solution-features .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-icon-container {
        margin: 0 auto;
    }
    
    .solution-features .feature-card {
        padding: 32px 24px;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
        text-align: center;
    }
    
    .audience-card,
    .impact-stat {
        padding: 32px 24px;
    }
    
    .team-card {
        padding: 40px 32px;
    }
    
    .cta-feature {
        min-width: 110px;
        padding: 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .story-intro {
        padding: 20px;
    }
    
    .problem-item {
        padding: 16px;
    }
    
    .problem-summary {
        padding: 24px 16px;
    }
}
.problem-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.problem-story {
    text-align: center;
}

.story-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.story-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(232, 67, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--error);
    font-size: 32px;
}

.story-card h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 16px;
}

.story-card p {
    font-size: 18px;
    line-height: 1.7;
}

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

.problem-item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-item:hover {
    transform: translateY(-8px);
    border-color: var(--error);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 67, 147, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--error);
    font-size: 24px;
    margin-bottom: 20px;
}

.problem-item h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-item p {
    color: var(--gray-lighter);
    line-height: 1.6;
    margin-bottom: 16px;
}

.problem-stat {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--error);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.hope-message {
    text-align: center;
    padding: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.hope-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

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

.hope-message h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 16px;
}

.hope-message p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Opportunity Section - Modern Redesign */
.opportunity-section {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    padding: 120px 0;
}

.opportunity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.opportunity-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.opportunity-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(123, 104, 238, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    animation: gridFloat 20s ease-in-out infinite;
}

@keyframes gridFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-10px) translateY(20px); }
    75% { transform: translateX(15px) translateY(-15px); }
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.1;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 80%;
    animation-delay: 0s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, -20px) scale(1.1); }
    66% { transform: translate(20px, 30px) scale(0.9); }
}

.opportunity-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.opportunity-header .section-badge {
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.1);
}

.opportunity-header .section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.opportunity-header .section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--gray-lighter);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

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

.opportunity-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.insight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(0, 212, 170, 0.2);
}

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

.insight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
}

.insight-content h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.insight-content p {
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.insight-highlight {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.market-statistics {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 56px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(100%, 100%);
}

.stat-card.primary {
    border-color: rgba(0, 212, 255, 0.3);
}

.stat-card.secondary {
    border-color: rgba(123, 104, 238, 0.3);
}

.stat-card.tertiary {
    border-color: rgba(16, 185, 129, 0.3);
}

.stat-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.stat-chart {
    position: relative;
    width: 100px;
    height: 100px;
}

.chart-ring {
    width: 100px;
    height: 100px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
}

.chart-fill {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 100px;
    height: 100px;
    border: 4px solid transparent;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: chartFill 2s ease-in-out;
}

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

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.chart-suffix {
    font-size: 16px;
    color: var(--gray-lighter);
    font-weight: 600;
}

.growth-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    justify-content: center;
}

.growth-bars .bar {
    width: 12px;
    background: linear-gradient(to top, var(--secondary), var(--primary));
    border-radius: 6px;
    height: var(--height);
    animation: barGrow 1.5s ease-out;
    animation-fill-mode: both;
}

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

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--height); }
}

.demand-indicator {
    position: relative;
}

.indicator-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.stat-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-info p {
    font-size: 14px;
    color: var(--gray-lighter);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    display: block;
    margin-top: 8px;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--success);
    margin-top: 8px;
}

.opportunity-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-lighter);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.opportunity-chart {
    position: relative;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.line-chart {
    width: 100%;
    height: 100%;
}

.chart-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pointPulse 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .opportunity-section {
        padding: 80px 0;
    }
    
    .opportunity-insights {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .market-statistics {
        padding: 32px;
    }
    
    .opportunity-cta {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .opportunity-section {
        padding: 60px 0;
    }
    
    .opportunity-header {
        margin-bottom: 48px;
    }
    
    .insight-card {
        padding: 24px;
    }
    
    .market-statistics {
        padding: 24px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .orb {
        display: none;
    }
}

@media (max-width: 480px) {
    .insight-card {
        padding: 20px;
    }
    
    .insight-content h3 {
        font-size: 20px;
    }
    
    .market-statistics {
        padding: 16px;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
    
    .opportunity-chart {
        height: 150px;
        padding: 16px;
    }
}
.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.opportunity-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.point i {
    color: var(--primary);
    font-size: 20px;
    min-width: 20px;
}

.opportunity-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 20px;
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: var(--gray-lighter);
    font-weight: 600;
}

/* Solution Section - Futuristic Holographic Design */
.solution-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 170, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(108, 92, 231, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.energy-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #00d4ff, #7b68ee);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    animation: energyFloat 15s ease-in-out infinite;
}

.energy-particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.energy-particle:nth-child(2) {
    top: 45%;
    left: 85%;
    animation-delay: 3s;
}

.energy-particle:nth-child(3) {
    top: 75%;
    left: 25%;
    animation-delay: 6s;
}

.energy-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 9s;
}

.energy-particle:nth-child(5) {
    top: 60%;
    left: 50%;
    animation-delay: 12s;
}

@keyframes energyFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.9;
    }
}

.solution-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.solution-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

/* Feature Hologram Cards Grid */
.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 80px 0;
    position: relative;
    z-index: 2;
}

.feature-hologram-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-hologram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(108, 92, 231, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-hologram-card:hover::before {
    opacity: 1;
}

.card-hologram-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
    z-index: 0;
}

.feature-hologram-card:hover .card-hologram-effect {
    transform: rotate(45deg) translate(100%, 100%);
}

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

.feature-icon-hologram {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-hologram i {
    font-size: 36px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.5));
}

.icon-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3), transparent 70%);
    border-radius: 50%;
    animation: auraPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes auraPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

.feature-hologram-card h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.feature-hologram-card p {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    text-align: center;
}

.feature-metrics {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.metric-chip {
    padding: 6px 14px;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-hologram-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 170, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-hologram-card:hover .metric-chip {
    background: rgba(0, 212, 170, 0.25);
    border-color: rgba(0, 212, 170, 0.5);
    transform: translateY(-2px);
}

/* CTA Section */
.solution-cta-modern {
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.cta-hologram-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 32px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 212, 170, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2), transparent 70%);
    animation: ctaGlow 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes ctaGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(20%, 20%) scale(1.2);
        opacity: 0.8;
    }
}

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

.cta-content-modern h3 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.cta-content-modern > p {
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn-hologram {
    position: relative;
    overflow: hidden;
}

.btn-hologram::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 ease;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

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

.cta-stat-item .stat-number {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-item .stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .cta-hologram-card {
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 100px 0;
    }
    
    .solution-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-hologram-card {
        padding: 40px 24px;
    }
    
    .cta-stats {
        gap: 40px;
    }
}

.solution-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridFloat 20s ease-in-out infinite;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00d4ff, #7b68ee);
    border-radius: 50%;
    opacity: 0.6;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation: particleFloat 12s ease-in-out infinite reverse;
}

.particle-3 {
    top: 30%;
    left: 70%;
    animation: particleFloat 18s ease-in-out infinite;
}

.particle-4 {
    top: 80%;
    left: 20%;
    animation: particleFloat 14s ease-in-out infinite reverse;
}

.particle-5 {
    top: 50%;
    left: 50%;
    animation: particleFloat 16s ease-in-out infinite;
}

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

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-10px); }
}

.solution-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.solution-showcase {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (min-width: 1025px) {
    .solution-visual {
        position: sticky;
        top: 120px;
        align-self: start;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .solution-features {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .solution-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

/* Device Mockup Styling */
.device-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding-top: 20px;
}

.device-mockup {
    position: relative;
    width: 400px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.3s ease;
}

.device-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #00d4ff, #7b68ee);
    border-radius: 40px;
    opacity: 0.1;
    z-index: -1;
    filter: blur(20px);
    animation: deviceGlow 4s ease-in-out infinite alternate;
}

@keyframes deviceGlow {
    0% { opacity: 0.1; }
    100% { opacity: 0.2; }
}

/* Dashboard Preview Styling */
.dashboard-preview {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-left h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    margin: 0;
}

.status-indicator {
    padding: 4px 8px;
    background: linear-gradient(90deg, #00d4ff, #7b68ee);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.notification-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Metrics Overview */
.metrics-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

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

.metric-card.primary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 104, 238, 0.1));
    border-color: rgba(0, 212, 255, 0.2);
}

.metric-card.secondary {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border-color: rgba(76, 175, 80, 0.2);
}

.metric-card.tertiary {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-color: rgba(255, 193, 7, 0.2);
}

.metric-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 14px;
}

.metric-data {
    flex: 1;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
}

.metric-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2px 0;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
}

.metric-trend.positive {
    color: #4caf50;
}

.metric-trend i {
    font-size: 8px;
}

/* Performance Chart */
.performance-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    flex: 1;
}

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

.chart-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
}

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

.chart-btn {
    padding: 4px 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 6px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-btn.active {
    background: linear-gradient(90deg, #00d4ff, #7b68ee);
    color: white;
    border-color: transparent;
}

.chart-visualization {
    height: 80px;
    position: relative;
}

.chart-line {
    width: 100%;
    height: 100%;
    position: relative;
}

.performance-line {
    width: 100%;
    height: 100%;
}

.chart-path-animated {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot.active {
    background: #7b68ee;
    animation: pulse 2s infinite;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 14px;
    margin-bottom: 2px;
}

.action-btn.primary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(123, 104, 238, 0.2));
    color: #00d4ff;
}

.action-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    color: #4caf50;
}

.action-btn.tertiary:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    color: #ffc107;
}

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

.ui-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--light);
    font-size: 14px;
    transform: translateZ(50px);
    animation: floatCard 6s ease-in-out infinite;
    width: fit-content;
    white-space: nowrap;
}

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

.ui-card.card-2 {
    top: 50%;
    right: -25%;
    animation-delay: 2s;
}

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

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) translateZ(50px); opacity: 0.8; }
    50% { transform: translateY(-10px) translateZ(50px); opacity: 1; }
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff, #7b68ee);
    border-radius: 10px;
    color: white;
    font-size: 18px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.card-desc {
    font-size: 12px;
    color: var(--text-light);
}

/* Features Grid - Solution Section */
.solution-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.solution-features .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

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

.solution-features .feature-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(0, 212, 170, 0.2);
}

.feature-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff, #7b68ee);
    border-radius: 20px;
    color: white;
    font-size: 32px;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #00d4ff, #7b68ee);
    border-radius: 25px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: 1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.solution-features .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.solution-features .feature-content h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.solution-features .feature-content p {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.solution-features .feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.solution-features .highlight {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.solution-features .highlight:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(108, 92, 231, 0.2));
    border-color: rgba(0, 212, 170, 0.4);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Solution CTA - Modern Design */
.solution-cta {
    margin-top: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7b68ee, #00d4ff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.cta-content h3 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.cta-content p {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    max-width: 550px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.success-indicator {
    position: relative;
    width: 120px;
    height: 120px;
}

.indicator-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #00d4ff;
    border-right: 4px solid #7b68ee;
    transform: rotate(-90deg);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(-90deg); }
    to { transform: rotate(270deg); }
}

.indicator-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.indicator-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
}

.indicator-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .device-mockup {
        width: 350px;
        height: 525px;
        transform: none;
    }
    
    .device-mockup:hover {
        transform: scale(1.02);
    }
    
    .floating-ui-elements {
        display: none;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .solution-header {
        margin-bottom: 3rem;
    }
    
    .device-mockup {
        width: 300px;
        height: 450px;
        padding: 15px;
    }
    
    .dashboard-preview {
        padding: 16px;
        gap: 16px;
    }
    
    .metrics-overview {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .metric-card {
        padding: 12px;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 24px;
        border-radius: 15px;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .success-indicator {
        width: 100px;
        height: 100px;
    }
    
    .indicator-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .device-mockup {
        width: 280px;
        height: 420px;
        padding: 12px;
    }
    
    .dashboard-preview {
        padding: 12px;
        gap: 12px;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .action-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 12px;
        gap: 8px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
}

/* Features Section - Modern Redesign */
.features-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.features-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-tab:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.feature-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 
        0 8px 24px rgba(0, 212, 170, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.feature-tab i {
    font-size: 20px;
}

.feature-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
}

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

.feature-panel.active {
    display: grid;
}

.feature-details h3 {
    color: var(--white);
    font-size: clamp(28px, 3.5vw, 36px);
    margin-bottom: 24px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.feature-details > p {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}

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

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-lighter);
}

.feature-point i {
    color: var(--primary);
    font-size: 16px;
}

.feature-visual {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Batch Timeline */
.batch-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-stage {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.timeline-stage:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 40px;
    width: 2px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-stage.active::after {
    background: var(--primary);
}

.stage-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.timeline-stage.active .stage-dot {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.timeline-stage.current .stage-dot {
    background: var(--secondary);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
    animation: pulse 2s infinite;
}

.stage-info h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 4px;
}

.stage-info p {
    color: var(--gray-lighter);
    font-size: 14px;
}

/* Cost Chart */
.cost-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
}

.chart-header h4 {
    color: var(--white);
    margin-bottom: 24px;
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cost-item {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 16px;
    align-items: center;
}

.cost-category {
    color: var(--gray-lighter);
    font-size: 14px;
}

.cost-bar {
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.cost-amount {
    color: var(--white);
    font-weight: 600;
    text-align: right;
}

/* Profit Dashboard */
.profit-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
}

.profit-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

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

.profit-item:last-child {
    border-bottom: none;
}

.profit-item.success .value {
    color: var(--success);
}

.profit-item .label {
    color: var(--gray-lighter);
}

.profit-item .value {
    color: var(--white);
    font-weight: 600;
}

.roi-indicator {
    text-align: center;
    padding: 20px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
}

.roi-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.roi-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

/* Health Monitor */
.health-monitor {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
}

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

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.alert-item.warning {
    background: rgba(253, 203, 110, 0.1);
    color: var(--warning);
    border: 1px solid rgba(253, 203, 110, 0.2);
}

.alert-item.success {
    background: rgba(0, 184, 148, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 184, 148, 0.2);
}

.health-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 16px;
}

.chart-title {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 16px;
}

.trend-line {
    position: relative;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.trend-points {
    position: relative;
    height: 100%;
}

.point {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.point.excellent {
    background: var(--success);
}

.point.good {
    background: var(--primary);
}

.point.warning {
    background: var(--warning);
}

/* Library Preview */
.library-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.article-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.article-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.article-content h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
}

.article-content p {
    color: var(--gray-lighter);
    font-size: 14px;
}

/* Audience Section - Modern Design */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.audience-card {
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.audience-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(0, 212, 170, 0.2);
}

.audience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
}

.audience-card h3 {
    color: var(--white);
    font-size: clamp(20px, 2.5vw, 26px);
    margin-bottom: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.audience-card > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: clamp(14px, 1.8vw, 16px);
}

.audience-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.audience-features span {
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

/* Impact Section - Modern Design */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.impact-stat {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.impact-stat:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(0, 212, 170, 0.2);
}

.impact-stat:hover::before {
    transform: scaleX(1);
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.impact-label {
    color: var(--white);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.impact-stat p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: clamp(13px, 1.6vw, 15px);
}

.impact-stories {
    text-align: center;
}

.impact-stories h3 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

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

.story-card {
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    text-align: left;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 16px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.story-quote {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    font-weight: 500;
}

.story-quote::before {
    content: '"';
    font-size: 48px;
    color: var(--primary);
    position: absolute;
    top: -10px;
    left: -10px;
    line-height: 1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-name {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.author-location {
    color: var(--gray-lighter);
    font-size: 14px;
}

/* About Section - Modern Design */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.7;
    margin-bottom: 28px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission-point:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.mission-point i {
    color: var(--primary);
    font-size: 18px;
    min-width: 18px;
}

.mission-point span {
    color: var(--gray-lighter);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.team-card {
    max-width: 320px;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 
        0 24px 70px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(0, 212, 170, 0.2);
}

.team-image {
    margin-bottom: 24px;
}

.team-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 48px;
    border: 3px solid var(--primary);
}

.team-info h3 {
    color: var(--white);
    font-size: clamp(22px, 2.5vw, 28px);
    margin-bottom: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.team-info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
    font-size: clamp(14px, 1.6vw, 16px);
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-stats .stat {
    text-align: center;
}

.team-stats .value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.team-stats .label {
    font-size: 12px;
    color: var(--gray-lighter);
    margin-top: 4px;
}

/* CTA Section - Modern Design */
.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-text {
    margin-bottom: 56px;
}

.cta-text p {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.75);
    margin-top: 28px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.cta-feature:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-4px);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-feature i {
    color: var(--primary);
    font-size: 24px;
}

/* Footer - Modern Design */
/* Blog Section Styles */
.blog-container {
    position: relative;
    z-index: 2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray-lighter);
    flex-wrap: wrap;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    font-size: 12px;
    color: var(--primary);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-footer {
    margin-top: auto;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-card:hover .blog-read-more {
    gap: 12px;
    color: var(--primary);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
}

/* Blog Detail Styles */
.blog-detail-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.blog-back-btn {
    margin-bottom: 40px;
}

.blog-article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    backdrop-filter: blur(10px);
}

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

.blog-article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray-lighter);
    flex-wrap: wrap;
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-article-meta i {
    font-size: 14px;
    color: var(--primary);
}

.blog-article-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-article-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.blog-article-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 40px 0;
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 18px;
}

.blog-article-content h1,
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.blog-article-content h1 {
    font-size: 36px;
}

.blog-article-content h2 {
    font-size: 30px;
}

.blog-article-content h3 {
    font-size: 24px;
}

.blog-article-content h4 {
    font-size: 20px;
}

.blog-article-content p {
    margin-bottom: 20px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-article-content li {
    margin-bottom: 12px;
}

.blog-article-content strong {
    color: var(--white);
    font-weight: 600;
}

.blog-article-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    transition: var(--transition);
}

.blog-article-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.blog-article-content code {
    background: rgba(0, 212, 170, 0.15);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-article-content pre {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.blog-article-content pre code {
    background: none;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
}

.blog-article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* App Download Section */
.app-download-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.app-download-section h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}

.app-download-section > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 16px;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.app-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.app-store-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.app-store-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.play-store-btn {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.play-store-btn:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.app-download-btn i {
    font-size: 32px;
}

.app-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-btn-small {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-btn-large {
    font-size: 18px;
    font-weight: 600;
}

/* Hero App Download Buttons */
.hero-app-download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-app-download-buttons .app-download-btn {
    padding: 12px 20px;
    min-width: 160px;
}

.hero-app-download-buttons .app-download-btn i {
    font-size: 28px;
}

.hero-app-download-buttons .app-btn-large {
    font-size: 16px;
}

.hero-app-download-buttons .app-btn-small {
    font-size: 10px;
}

/* CTA Section App Download Buttons */
.cta-buttons .app-download-buttons {
    width: 100%;
    margin-bottom: 20px;
}

.cta-buttons .app-download-btn {
    flex: 1;
    max-width: 250px;
    justify-content: center;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-article {
        padding: 32px 24px;
    }
    
    .blog-article-image {
        height: 250px;
    }
    
    .app-download-section {
        padding: 30px 20px;
    }
    
    .app-download-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .app-download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-app-download-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-app-download-buttons .app-download-btn {
        width: 100%;
    }
    
    .cta-buttons .app-download-btn {
        max-width: 100%;
    }
    
    .blog-article-content {
        font-size: 16px;
    }
    
    .blog-article-title {
        font-size: 28px;
    }
    
    .blog-article-description {
        font-size: 18px;
    }
}

.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 100px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-logo .logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo i {
    color: var(--primary);
    font-size: 28px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: clamp(14px, 1.6vw, 16px);
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 8px 24px rgba(0, 212, 170, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.footer-section h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(13px, 1.5vw, 15px);
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-lighter);
}

.contact-item i {
    color: var(--primary);
    width: 16px;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-lighter);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-lighter);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 0;
    }
    
    .stat-item {
        text-align: center;
        padding-left: 0;
    }
    
    .stat-item::before {
        display: none;
    }
    
    .hero-visual {
        min-height: 500px;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
    
    .solution-showcase,
    .opportunity-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .features-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .feature-tab {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .feature-panel {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .feature-visual {
        padding: 32px;
    }
    
    .audience-card,
    .impact-stat {
        padding: 36px 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .team-card {
        max-width: 100%;
    }
    
    .cta-feature {
        min-width: 120px;
        padding: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 40px;
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: clamp(36px, 8vw, 56px);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
        margin-bottom: 32px;
    }
    
    .stat-item {
        text-align: center;
        padding-left: 0;
    }
    
    .stat-item::before {
        display: none;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 400px;
        margin-top: 20px;
    }
    
    .phone-mockup-container {
        transform: scale(0.9);
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
    }
    
    .hero-scroll-indicator {
        bottom: 30px;
        font-size: 12px;
    }
    
    .floating-features {
        display: block; /* Show floating cards on mobile */
    }
    
    .feature-card {
        min-width: 160px;
        max-width: 200px;
        padding: 8px 16px;
        font-size: 11px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 11px;
    }
    
    .feature-card span {
        font-size: 10px;
    }
    
    .card-1,
    .card-2,
    .card-3,
    .card-4 {
        right: -120px;
        left: -120px;
    }
    
    .screen-labels {
        margin-top: 15px;
    }
    
    .screen-label {
        font-size: 14px;
    }
    
    .tablet-mockup {
        transform: scale(0.8);
    }
    
    .problems-grid,
    .audience-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .opportunity-stats {
        gap: 24px;
    }
    
    .feature-card {
        min-width: 140px;
        max-width: 180px;
        padding: 7px 14px;
        font-size: 10px;
        gap: 8px;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 10px;
    }
    
    .feature-card span {
        font-size: 9px;
    }
    
    .card-1,
    .card-2,
    .card-3,
    .card-4 {
        right: -105px;
        left: -105px;
    }
}

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

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: rgba(0, 212, 170, 0.3);
    color: var(--white);
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== Privacy Policy Modal ===== */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-modal.active {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.privacy-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 212, 170, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.privacy-modal.active .privacy-modal-container {
    transform: translateY(0) scale(1);
}

/* Privacy Modal Header */
.privacy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: rgba(0, 212, 170, 0.08);
    border-bottom: 1px solid rgba(0, 212, 170, 0.15);
    flex-shrink: 0;
}

.privacy-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.privacy-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3);
}

.privacy-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.privacy-updated {
    font-size: 13px;
    color: var(--gray-lighter);
    margin: 4px 0 0 0;
}

.privacy-close-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-lighter);
    font-size: 18px;
    transition: all 0.3s ease;
}

.privacy-close-btn:hover {
    background: rgba(232, 67, 147, 0.2);
    border-color: rgba(232, 67, 147, 0.3);
    color: var(--error);
    transform: rotate(90deg);
}

/* Privacy Modal Content */
.privacy-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.privacy-modal-content::-webkit-scrollbar {
    width: 6px;
}

.privacy-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.privacy-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Privacy Sections */
.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h3 i {
    color: var(--primary);
    font-size: 20px;
}

.privacy-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.privacy-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.privacy-section ul li strong {
    color: var(--white);
}

/* Privacy Subsections */
.privacy-subsection {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-subsection h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Privacy Data Grid */
.privacy-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.privacy-data-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.privacy-data-item:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateX(4px);
}

.privacy-data-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.privacy-data-item span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

.privacy-data-item strong {
    color: var(--white);
}

/* Privacy Use List */
.privacy-use-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.privacy-use-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.privacy-use-item:hover {
    background: rgba(0, 212, 170, 0.05);
    border-color: rgba(0, 212, 170, 0.15);
}

.use-number {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.use-content strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 6px;
}

.use-content p {
    margin: 0;
    font-size: 14px;
}

/* Privacy Storage Cards */
.privacy-storage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

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

.storage-card:hover {
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateY(-4px);
}

.storage-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.storage-icon.cloud {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(108, 92, 231, 0.2));
    color: var(--primary);
}

.storage-icon.local {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(253, 121, 168, 0.2));
    color: var(--secondary);
}

.storage-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.storage-card p {
    font-size: 14px;
    margin-bottom: 12px;
}

.storage-card ul {
    margin: 0;
}

.storage-card ul li {
    font-size: 14px;
}

/* Privacy Note */
.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
    font-size: 14px;
    margin-top: 16px;
}

.privacy-note i {
    color: var(--secondary);
    margin-top: 2px;
}

/* Privacy Third Party */
.privacy-third-party {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.third-party-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.third-party-logo {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.third-party-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.third-party-content ul {
    margin-bottom: 12px;
}

.third-party-link {
    font-size: 13px;
    color: var(--gray-lighter);
}

.third-party-link a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.third-party-link a:hover {
    text-decoration: underline;
}

/* Privacy Highlight */
.privacy-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.privacy-highlight.warning {
    background: rgba(253, 203, 110, 0.1);
    border: 1px solid rgba(253, 203, 110, 0.2);
}

.privacy-highlight.warning i {
    color: var(--warning);
    font-size: 20px;
}

.privacy-highlight.warning p {
    color: var(--warning);
    margin: 0;
    font-weight: 500;
}

.privacy-highlight.info {
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
}

.privacy-highlight.info i {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.privacy-highlight.info p {
    margin: 0;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.security-feature:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateX(4px);
}

.security-feature i {
    color: var(--primary);
    font-size: 18px;
}

.security-feature span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.right-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.right-item:hover {
    background: rgba(0, 212, 170, 0.05);
    border-color: rgba(0, 212, 170, 0.15);
    transform: translateY(-4px);
}

.right-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.right-icon i {
    color: var(--white);
    font-size: 18px;
}

.right-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.right-item p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Permissions Container */
.permissions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.permission-platform {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.permission-platform h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.permission-platform h4 i {
    font-size: 22px;
}

.permission-platform h4 i.fa-android {
    color: #a4c639;
}

.permission-platform h4 i.fa-apple {
    color: #ffffff;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(0, 212, 170, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.15);
}

.contact-detail-item i {
    color: var(--primary);
    font-size: 18px;
}

.contact-detail-item span {
    color: var(--white);
    font-weight: 500;
}

/* Privacy Modal Footer */
.privacy-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.privacy-modal-footer p {
    color: var(--gray-lighter);
    font-size: 14px;
    margin: 0;
}

.privacy-modal-footer .btn {
    padding: 12px 28px;
}

/* Privacy Modal Responsive */
@media (max-width: 768px) {
    .privacy-modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .privacy-modal-header {
        padding: 20px;
    }
    
    .privacy-header-content {
        gap: 12px;
    }
    
    .privacy-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .privacy-modal-header h2 {
        font-size: 22px;
    }
    
    .privacy-modal-content {
        padding: 24px 20px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
    
    .privacy-data-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-storage-cards {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .permissions-container {
        grid-template-columns: 1fr;
    }
    
    .third-party-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .privacy-use-item {
        flex-direction: column;
    }
    
    .use-number {
        width: 32px;
        height: 32px;
    }
    
    .privacy-modal-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 16px 20px;
    }
    
    .privacy-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
}