:root {
    --primary: #4D94FF;
    --primary-dark: #0066FF;
    --primary-glow: #80B3FF;
    --secondary: #00FFD4;
    --secondary-glow: #66FFE6;
    --accent: #FF66FF;
    --accent-glow: #FF99FF;
    --dark: #0A0E27;
    --dark-light: #1A1F3A;
    --gray: #94A3B8;
    --gray-light: #2A3050;
    --white: #FFFFFF;
    --success: #00FFD4;
    --warning: #FFB800;
    --danger: #FF6B6B;
    --gradient-primary: linear-gradient(135deg, #4D94FF 0%, #0066FF 100%);
    --gradient-accent: linear-gradient(135deg, #00FFD4 0%, #00D4AA 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    --gradient-neon: linear-gradient(135deg, #FF00FF 0%, #00FFFF 100%);
    --gradient-cyber: linear-gradient(135deg, #00FFD4 0%, #4D94FF 50%, #FF66FF 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 50px rgba(77, 148, 255, 0.5);
    --shadow-neon: 0 0 100px rgba(0, 255, 212, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    
    --bg-primary: #0A0E27;
    --bg-secondary: #0F1329;
    --bg-card: #1A1F3A;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --border-color: #2A3050;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        0deg,
        transparent 0%,
        rgba(0, 255, 212, 0.03) 50%,
        transparent 100%
    );
    height: 200%;
    animation: scanline 8s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 148, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 102, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: ambient-shift 20s ease-in-out infinite;
}

@keyframes ambient-shift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(77, 148, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 0 20px rgba(77, 148, 255, 0.5);
}

.logo:hover {
    text-shadow: 0 0 30px rgba(0, 255, 212, 0.8);
}

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

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

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

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

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

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-white {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
}

/* Ensure anchor-styled buttons have no underline */
a.btn-primary, a.btn-secondary, a.btn-white {
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent; /* match secondary height */
}

.btn-primary::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-primary:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-glow);
    border: 2px solid var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-glow);
    box-shadow: 0 0 20px rgba(0, 255, 212, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 212, 0.3);
}

.btn-white:hover {
    background: rgba(0, 255, 212, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 212, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0F1329 0%, #1A1F3A 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 148, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(77, 148, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    border: 1px solid rgba(77, 148, 255, 0.3);
    color: var(--primary-glow);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    box-shadow: 0 0 30px rgba(77, 148, 255, 0.3);
    border-color: var(--primary-glow);
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.separator {
    color: var(--gray-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(77, 148, 255, 0.3);
}

.gradient-text {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
    position: relative;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: fit-content;
    border: 1px solid rgba(77, 148, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats:hover {
    box-shadow: 0 0 30px rgba(77, 148, 255, 0.2);
    transform: translateY(-2px);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-glow);
    text-shadow: 0 0 20px currentColor;
    transition: color 0.3s ease;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: var(--dark);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A1F3A 0%, #2A3050 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.phone-screen video,
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Phone Content */
.phone-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 20px 20px;
    position: relative;
}

.message-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slide-up 0.5s ease-out;
}

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

.message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    max-width: 90%;
    animation: message-appear 0.3s ease-out;
    animation-fill-mode: both;
}

.message:nth-child(1) { animation-delay: 0.1s; }
.message:nth-child(2) { animation-delay: 0.3s; }
.message:nth-child(3) { animation-delay: 0.5s; }
.message:nth-child(4) { animation-delay: 0.7s; }

@keyframes message-appear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.message-tech {
    background: rgba(77, 148, 255, 0.2);
    border: 1px solid rgba(77, 148, 255, 0.4);
    color: var(--primary-glow);
    align-self: flex-end;
}

.message-ai {
    background: rgba(0, 255, 212, 0.2);
    border: 1px solid rgba(0, 255, 212, 0.4);
    color: var(--secondary-glow);
    align-self: flex-start;
}

.message i {
    font-size: 1rem;
    filter: drop-shadow(0 0 3px currentColor);
}

.message span {
    flex: 1;
    line-height: 1.3;
}

.ar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none; /* Hide AR overlay for now */
}

.ar-annotation {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

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

.ar-pointer {
    width: 20px;
    height: 20px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.2);
}

.ar-label {
    position: absolute;
    top: -30px;
    left: 30px;
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
}

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

.floating-card {
    position: absolute;
    background: rgba(26, 31, 58, 0.9);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 0 30px rgba(77, 148, 255, 0.3);
    border: 1px solid rgba(0, 255, 212, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
        filter: brightness(1.2);
    }
}

.floating-card i {
    color: var(--secondary-glow);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px currentColor);
}

.card-1 {
    top: 10%;
    right: -140px;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: -160px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    right: -120px;
    animation-delay: 2s;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background 0.3s ease;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(77, 148, 255, 0.2);
    transition: color 0.3s ease;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(77, 148, 255, 0.3);
    transition: all 0.3s ease;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: #FF6B6B;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.problem-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.problem-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--danger);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #0F1329 100%);
    position: relative;
    transition: background 0.3s ease;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 212, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(77, 148, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

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

.feature-card {
    background: rgba(26, 31, 58, 0.8);
    border: 1px solid rgba(77, 148, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(77, 148, 255, 0.2);
    border-color: rgba(77, 148, 255, 0.3);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-primary {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(77, 148, 255, 0.2) 0%, rgba(0, 255, 212, 0.2) 100%);
    border: 1px solid rgba(77, 148, 255, 0.4);
    color: white;
}

.feature-primary .feature-list li i {
    color: var(--secondary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(77, 148, 255, 0.1);
    color: var(--primary-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(77, 148, 255, 0.4);
}

.feature-primary .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.feature-primary h3 {
    color: white;
}

.feature-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.feature-primary p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-list li i {
    color: var(--success);
    font-size: 0.9rem;
}

.feature-metric {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

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

.metric-label {
    opacity: 0.9;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(77, 148, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 212, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-glow) 20%, var(--secondary-glow) 80%, transparent 100%);
    z-index: 0;
    box-shadow: 0 0 20px rgba(0, 255, 212, 0.3);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(77, 148, 255, 0.5);
    border: 2px solid rgba(0, 255, 212, 0.3);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 212, 0.6);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    position: relative;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 102, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(0, 255, 212, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

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

.benefit-card {
    background: linear-gradient(135deg, #1A1F3A 0%, #2A3050 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.benefit-header i {
    font-size: 2rem;
    color: var(--primary);
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.benefit-label {
    color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1F3A 0%, #2A3050 100%);
}

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

.testimonial-card {
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 148, 255, 0.2);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-featured {
    grid-column: span 2;
    background: var(--gradient-primary);
    color: white;
}

.testimonial-featured .stars i {
    color: var(--warning);
}

.testimonial-featured .testimonial-text {
    color: white;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--warning);
}

.stars i {
    filter: drop-shadow(0 0 5px currentColor);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.testimonial-metric {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 1.5rem;
}

.metric-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 148, 255, 0.2);
}

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

.author-title,
.author-company {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-logos {
    margin-top: 3rem;
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-light);
}

.logo-scroll {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.logo-scroll img {
    height: 40px;
    filter: grayscale(100%);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0F1329 0%, #0A0E27 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 102, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 212, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(26, 31, 58, 0.8);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(77, 148, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(77, 148, 255, 0.3);
    border-color: rgba(0, 255, 212, 0.3);
}

.pricing-featured {
    border: 2px solid rgba(0, 255, 212, 0.4);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(77, 148, 255, 0.2) 0%, rgba(0, 255, 212, 0.2) 100%);
    box-shadow: 0 0 60px rgba(0, 255, 212, 0.4);
}

.pricing-featured:hover {
    box-shadow: 0 0 80px rgba(0, 255, 212, 0.6);
    transform: scale(1.08) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-glow);
    text-shadow: 0 0 20px currentColor;
}

.period {
    color: var(--text-secondary);
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-features li i {
    color: var(--secondary-glow);
    filter: drop-shadow(0 0 5px currentColor);
}

/* Pricing Calculator */
.pricing-calculator {
    background: rgba(26, 31, 58, 0.8);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(77, 148, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.pricing-calculator::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    opacity: 0.1;
    z-index: -1;
}

.pricing-calculator h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    color: var(--text-secondary);
}

.input-group input {
    padding: 0.75rem;
    border: 2px solid rgba(77, 148, 255, 0.2);
    border-radius: var(--radius);
    font-size: 1rem;
    background: rgba(26, 31, 58, 0.5);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-glow);
    box-shadow: 0 0 20px rgba(77, 148, 255, 0.2);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(77, 148, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

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

.result-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 20px currentColor;
    transition: color 0.3s ease;
}

.result-positive {
    color: #00FFD4;
    text-shadow: 0 0 30px #00FFD4;
}

.result-highlight {
    padding: 1rem;
    background: rgba(77, 148, 255, 0.1);
    border: 2px solid rgba(77, 148, 255, 0.4);
    animation: glow-pulse 2s ease-in-out infinite;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(77, 148, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(77, 148, 255, 0.4); }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1F3A 0%, #0A0E27 100%);
    border-top: 1px solid rgba(77, 148, 255, 0.2);
    border-bottom: 1px solid rgba(77, 148, 255, 0.2);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 148, 255, 0.1), transparent);
    animation: sweep 8s linear infinite;
}

@keyframes sweep {
    to { left: 100%; }
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-white {
    background: linear-gradient(135deg, #1A1F3A 0%, #2A3050 100%);
    color: var(--primary);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #050714;
    border-top: 1px solid rgba(77, 148, 255, 0.2);
    color: white;
    padding: 60px 0 20px;
    transition: background 0.3s ease;
}

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

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

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

/* Global card hover effect - simplified without rotation */
.problem-card,
.feature-card,
.benefit-card,
.pricing-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
}

/* Loading state */
body:not(.loaded) * {
    animation: none !important;
    transition: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .phone-mockup {
        transform: scale(0.85);
        width: 280px;
        height: 560px;
    }
    
    .phone-content {
        padding: 50px 15px 15px;
    }
    
    .message {
        font-size: 0.75rem;
        padding: 0.6rem 0.9rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-primary {
        grid-column: span 1;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .testimonial-featured {
        grid-column: span 1;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Waitlist Section */
.waitlist-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F1329 0%, #0A0E27 100%);
    position: relative;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 212, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(77, 148, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.waitlist-form-wrap {
    background: rgba(26, 31, 58, 0.8);
    border: 1px solid rgba(77, 148, 255, 0.25);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 255, 212, 0.15);
    position: relative;
}

.waitlist-form-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(0, 255, 212, 0.15), 0 0 60px rgba(77, 148, 255, 0.15);
}

#waitlist-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 1rem 1.25rem;
}

.waitlist-form-wrap .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Make first row (email) full-width and checkbox/actions span full width */
.waitlist-form-wrap #waitlist-form .form-row:nth-child(1),
.waitlist-form-wrap #waitlist-form .form-row:nth-child(4),
.waitlist-form-wrap #waitlist-form .form-actions {
    grid-column: 1 / -1;
}

.waitlist-form-wrap label {
    font-weight: 600;
    color: var(--text-secondary);
}

.waitlist-form-wrap input[type="email"],
.waitlist-form-wrap input[type="text"] {
    padding: 0.85rem 1rem;
    border: 2px solid rgba(77, 148, 255, 0.25);
    border-radius: var(--radius);
    background: rgba(26, 31, 58, 0.6);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.25s ease;
}

.waitlist-form-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.waitlist-form-wrap input[type="email"]:focus,
.waitlist-form-wrap input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-glow);
    box-shadow: 0 0 0 4px rgba(77, 148, 255, 0.15), 0 0 20px rgba(77, 148, 255, 0.25);
}

.waitlist-form-wrap .form-actions {
    display: flex;
    justify-content: flex-start;
}

.waitlist-form-wrap .btn-primary {
    min-width: 220px;
}

.waitlist-form-wrap input[type="checkbox"] {
    accent-color: #00ffd4;
    transform: translateY(1px);
}

#waitlist-status {
    margin-top: 0.75rem;
    min-height: 1.25rem;
    font-weight: 600;
}

#waitlist-fallback {
    color: var(--text-secondary);
}

.btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

@media (max-width: 768px) {
    #waitlist-form {
        grid-template-columns: 1fr;
    }
}
