/* ============================================
   Global Styles & Variables
   ============================================ */
:root {
    --primary-color: #0066ff;
    --secondary-color: #00d4ff;
    --accent-color: #ff6b35;
    --dark-bg: #0a0e27;
    --dark-card: #141b2d;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --gradient-1: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary) !important;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure all text is visible by default */
body * {
    color: inherit;
}

p, h1, h2, h3, h4, h5, h6, span, a, li, div {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override any hidden text */
.feature-title,
.feature-description,
.testimonial-text,
.benefit-content h5,
.benefit-content p {
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit !important;
}

/* Smooth scrolling with momentum */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ============================================
   Navigation
   ============================================ */
#mainNav {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    will-change: background, box-shadow;
}

#mainNav.scrolled {
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.3);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--text-primary) !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    text-decoration: none;
    will-change: transform;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.6));
}

.logo-img {
    width: 40px;
    height: 40px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain;
}

.brand-text {
    display: inline-block;
    vertical-align: middle;
    font-weight: 800;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0 !important;
    will-change: color, transform;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

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

.nav-link:hover::after {
    transform: translateY(-50%) scale(1);
    left: -15px;
}

.nav-link:hover {
    color: var(--text-primary) !important;
    transform: translateX(5px);
}

.nav-link.active {
    color: var(--text-primary) !important;
}

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

.btn-cta {
    background: var(--gradient-1) !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

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

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5) !important;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: backgroundShift 20s ease infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
    color: var(--text-primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    opacity: 1 !important;
    visibility: visible !important;
    /* Fallback color in case gradient doesn't work */
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary) !important;
    line-height: 1.8;
    z-index: 1;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-buttons {
    z-index: 1;
    position: relative;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.6), 0 0 30px rgba(0, 212, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, background, border-color;
    cursor: pointer;
}

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

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline-light:active {
    transform: translateY(-2px) scale(1.02);
}

.pulse-animation {
    animation: pulse 2s ease infinite;
}

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

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

.stat-item {
    z-index: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    padding: 1rem;
    border-radius: 15px;
    will-change: transform;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 102, 255, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    will-change: transform;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-label {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Hero Graphic */
.hero-graphic {
    position: relative;
    height: 500px;
    z-index: 1;
}

.floating-plane {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 4rem;
    color: var(--primary-color);
    animation: float 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.5));
    will-change: transform;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-plane:hover {
    transform: scale(1.2) !important;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(3deg); 
    }
    50% { 
        transform: translateY(-30px) translateX(0px) rotate(5deg); 
    }
    75% { 
        transform: translateY(-20px) translateX(-10px) rotate(3deg); 
    }
}

.dashboard-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
}

.dashboard-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: dashboardFloat 8s ease-in-out infinite;
}

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

.dashboard-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.dashboard-dots span:nth-child(1) { background: #ff5f56; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background: #27c93f; }

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dashboard-widget {
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: widgetPulse 3s ease infinite;
}

.dashboard-widget:nth-child(3) {
    grid-column: 1 / -1;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 1.5rem;
    animation: bounce 2s ease infinite;
    z-index: 1;
}

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

/* ============================================
   Features Section
   ============================================ */
.features-section {
    background: var(--dark-bg);
    position: relative;
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.feature-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, box-shadow, border-color;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    transform: rotate(45deg);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 20px;
}

.feature-card:hover::before {
    opacity: 1;
    animation: rotateGradient 3s linear infinite;
}

.feature-card:hover::after {
    opacity: 0.08;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.3), 
                0 0 0 1px rgba(0, 212, 255, 0.2),
                inset 0 0 60px rgba(0, 102, 255, 0.1);
}

@keyframes rotateGradient {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.feature-card.feature-highlight {
    border: 2px solid rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5), 
                0 0 30px rgba(0, 212, 255, 0.4);
    filter: brightness(1.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(10, 14, 39, 0.5) 100%);
    padding: 100px 0;
    position: relative;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    will-change: transform, background;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: rgba(0, 102, 255, 0.05);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5),
                0 0 20px rgba(0, 212, 255, 0.4);
}

.benefit-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.benefits-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    background: var(--dark-card);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    will-change: transform, box-shadow;
    overflow: hidden;
}

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

.visual-card:hover::before {
    width: 200px;
    height: 200px;
}

.visual-card i {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.visual-card span {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.4),
                0 0 30px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 102, 255, 0.5);
}

.visual-card:hover i {
    transform: scale(1.2) rotate(-10deg);
    filter: brightness(1.3);
}

.visual-card:hover span {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.card-1 {
    top: 0;
    left: 0;
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    top: 20%;
    right: 10%;
    animation: floatCard2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    animation: floatCard3 8s ease-in-out infinite;
}

.card-4 {
    bottom: 0;
    right: 0;
    animation: floatCard4 6.5s ease-in-out infinite;
}

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

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

@keyframes floatCard3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, 10px); }
}

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

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, box-shadow, border-color;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

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

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3),
                0 0 0 1px rgba(0, 212, 255, 0.2);
}

.testimonial-stars {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaPulse 8s ease infinite;
}

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

.cta-box {
    background: var(--dark-card);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.footer-logo {
    width: 45px;
    height: 45px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain;
}

.footer-brand:hover .footer-logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.6));
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    will-change: transform, background;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}

.social-links a:hover::before {
    width: 100px;
    height: 100px;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-links a:hover {
    background: transparent;
    color: var(--text-primary);
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.social-links a:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    will-change: transform, color;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.footer-links a:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Tablets and Small Desktops (992px - 1200px) */
@media (max-width: 1200px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: flex-start;
    }
    
    .stat-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .benefits-visual {
        height: 350px;
        margin-top: 3rem;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 3rem 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo {
        width: 38px;
        height: 38px;
    }
    
    .nav-link {
        margin: 0 0.3rem;
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 0.4rem 1.2rem !important;
        font-size: 0.9rem;
    }
}

/* Small Tablets and Large Phones (576px - 768px) */
@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    /* Navigation */
    #mainNav {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0;
        font-size: 1rem;
    }
    
    .btn-cta {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary,
    .btn-outline-light {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Hero Graphic */
    .hero-graphic {
        height: 250px;
        margin-top: 2rem;
    }
    
    .dashboard-preview {
        max-width: 100%;
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .dashboard-card {
        padding: 1rem;
    }
    
    .dashboard-widget {
        height: 80px;
    }
    
    .floating-plane {
        font-size: 2rem;
        top: 10%;
        right: 5%;
    }
    
    /* Features Section */
    .features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Benefits Section */
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .benefit-icon {
        margin-bottom: 1rem;
    }
    
    .benefit-content h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .benefits-visual {
        height: 250px;
        margin-top: 2rem;
    }
    
    .visual-card {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .visual-card i {
        font-size: 1.5rem;
    }
    
    .card-1, .card-2, .card-3, .card-4 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0.5rem;
        display: inline-block;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-box .btn-primary {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-brand {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .footer-logo {
        width: 38px;
        height: 38px;
    }
    
    .footer-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-divider {
        margin: 2rem 0 1.5rem;
    }
    
    .footer-copyright {
        text-align: center;
        font-size: 0.85rem;
    }
}

/* Mobile Phones (320px - 576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .footer-logo {
        width: 32px;
        height: 32px;
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: 60px;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-outline-light {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Hero Graphic */
    .hero-graphic {
        height: 200px;
        margin-top: 1.5rem;
    }
    
    .dashboard-card {
        padding: 0.75rem;
        border-radius: 15px;
    }
    
    .dashboard-widget {
        height: 60px;
        border-radius: 8px;
    }
    
    .floating-plane {
        font-size: 1.5rem;
        top: 5%;
        right: 0;
    }
    
    /* Sections */
    .features-section,
    .benefits-section,
    .testimonials-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Benefits */
    .benefit-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .benefit-content h5 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.85rem;
    }
    
    .benefits-visual {
        height: 200px;
    }
    
    .visual-card {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .visual-card i {
        font-size: 1.25rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    /* CTA */
    .cta-box {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-brand {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-heading {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Extra Small Phones (max-width: 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .cta-title {
        font-size: 1.35rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 1rem;
    }
    
    .btn-primary,
    .btn-outline-light {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 2rem;
    }
    
    .hero-graphic {
        height: 200px;
    }
    
    .benefits-visual {
        height: 200px;
    }
}

/* ============================================
   Smooth Scrolling
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   Additional Smooth Animations
   ============================================ */
.cta-box {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.cta-box:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.4) !important;
}

.dashboard-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.dashboard-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

.dashboard-widget {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.dashboard-widget:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* Performance optimizations */
.feature-card,
.testimonial-card,
.visual-card,
.benefit-item {
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Cursor trail styling */
.cursor-trail {
    will-change: transform, opacity;
    pointer-events: none;
}

/* Enhanced button animations */
.btn-primary,
.btn-outline-light,
.btn-cta {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Smooth page transitions */
section {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Enhanced hover states for all interactive elements */
a, button, .feature-card, .testimonial-card, .visual-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Mobile-specific touch improvements */
@media (max-width: 768px) {
    /* Larger touch targets for mobile */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem !important;
    }
    
    .btn-primary,
    .btn-outline-light,
    .btn-cta {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Disable hover effects on touch devices */
    .feature-card:hover,
    .testimonial-card:hover,
    .visual-card:hover,
    .benefit-item:hover {
        transform: none !important;
        box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
    }
    
    /* Better scrolling on mobile */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Prevent text size adjustment on iOS */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Remove 3D transforms on mobile for performance */
    .feature-card,
    .testimonial-card {
        transform-style: flat;
        perspective: none;
    }
    
    /* Simplify animations on mobile */
    .floating-plane,
    .dashboard-card,
    .visual-card {
        animation-duration: 4s;
    }
    
    /* Mobile navigation improvements */
    .navbar-collapse {
        background: rgba(10, 14, 39, 0.98);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        backdrop-filter: blur(20px);
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    /* Ensure proper spacing on mobile */
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Better image/graphic scaling */
    img, svg, .hero-graphic {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }
    
    /* Improve form elements on mobile */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.35rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 1rem;
    }
}

/* Loading state improvements */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.feature-card::after {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 0.3;
}

/* Improved text rendering */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Smooth gradient animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.gradient-text {
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Smooth image loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

