/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, rgba(139, 92, 246, 0.15) 0%, rgba(5, 5, 5, 1) 50%),
                linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    padding: 120px 0 80px;
    margin-top: 0;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Add light rays effect */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, 
                transparent 0deg,
                rgba(139, 92, 246, 0.03) 20deg,
                transparent 40deg,
                rgba(139, 92, 246, 0.03) 60deg,
                transparent 80deg,
                rgba(139, 92, 246, 0.03) 100deg,
                transparent 120deg,
                rgba(139, 92, 246, 0.03) 140deg,
                transparent 160deg,
                rgba(139, 92, 246, 0.03) 180deg,
                transparent 200deg,
                rgba(139, 92, 246, 0.03) 220deg,
                transparent 240deg,
                rgba(139, 92, 246, 0.03) 260deg,
                transparent 280deg,
                rgba(139, 92, 246, 0.03) 300deg,
                transparent 320deg,
                rgba(139, 92, 246, 0.03) 340deg,
                transparent 360deg);
    transform: translateX(-50%) rotate(0deg);
    animation: rotateRays 60s linear infinite;
}

@keyframes rotateRays {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* Grid Lines Background - with subtle glow */
.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

/* Floating Orbs - Brighter */
.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-orbs::before,
.floating-orbs::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.floating-orbs::before {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
    animation: float-slow 25s ease-in-out infinite;
}

.floating-orbs::after {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
    animation: float-slow 30s ease-in-out infinite reverse;
}

/* Add subtle center spotlight */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

/* Bypass Badges */
.bypass-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bypass-badge {
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-soft 3s ease-in-out infinite;
}

.bypass-badge i {
    font-size: 0.75rem;
}

@keyframes pulse-soft {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 0 20px 5px rgba(16, 185, 129, 0.1);
    }
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #9ca3af;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Detection Grid - Simple Cards */
.detection-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 40px auto;
}

a.detection-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

a.detection-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: #8B5CF6;
    transform: translateY(-2px);
}

/* AC Icon */
.ac-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.2s ease;
}

a.detection-item:hover .ac-icon {
    transform: scale(1.1);
}

/* Detection Name */
.detection-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #e5e7eb;
    margin-top: 4px;
}

/* Status Dot - Simple */
.status-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    animation: simple-pulse 2s infinite;
}

@keyframes simple-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Remove old complex styles */
.detection-glow,
.detection-pulse {
    display: none;
}

.detection-status {
    display: none;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .detection-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .detection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .detection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ac-icon {
        width: 28px;
        height: 28px;
    }
}



/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.trust-item i {
    font-size: 1.25rem;
    color: #8B5CF6;
}

.trust-item span {
    color: #9ca3af;
    font-size: 0.95rem;
}

.trust-item strong {
    color: #f3f4f6;
    font-weight: 700;
}

/* Hero CTA - Simple Clean Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 45px 0;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #8B5CF6;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25);
}

.btn-primary i {
    font-size: 1.1rem;
}

.btn-primary span {
    letter-spacing: 0.3px;
}

.btn-primary small {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #8B5CF6;
    text-decoration: none;
    border: 2px solid #8B5CF6;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

.btn-secondary i {
    font-size: 1.1rem;
}

.btn-secondary span {
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .btn-primary small {
        font-size: 0.8rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #050505;
    position: relative;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #050505;
    position: relative;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
    text-align: center;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #8B5CF6;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #f3f4f6;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px) translateZ(0);
    border-color: #8B5CF6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7c3aed 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    transition: transform 0.4s ease;
}

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

.feature-card h3 {
    color: #f3f4f6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature-tags .tag {
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 5px;
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #050505;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch; /* Ensures all cards stretch to same height */
}

.pricing-card {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    position: relative;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    color: white;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card:hover {
    transform: translateY(-5px) translateZ(0);
    border-color: #8B5CF6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) translateZ(0);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #f3f4f6;
    margin-bottom: 10px;
}

.pricing-header p {
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-price {
    margin: 30px 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #8B5CF6;
}

.price-currency {
    font-size: 1.5rem;
    color: #9ca3af;
}

.price-period {
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex: 1; /* Makes features section grow to fill available space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-features li {
    padding: 10px 0;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px; /* Ensures consistent spacing */
}

.pricing-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #8B5CF6;
    color: #8B5CF6;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto; /* Pushes button to bottom */
}

.btn-pricing:hover,
.btn-pricing.featured {
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    color: white;
    border-color: transparent;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: #f3f4f6;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 40px;
}

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

/* Video Demo Section */
.video-demo-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-box {
    position: relative;
    transition: all 0.3s ease;
}

.video-box.featured {
    transform: scale(1.05);
}

.video-box:hover {
    transform: translateY(-5px) scale(1.02);
}

.video-box.featured:hover {
    transform: translateY(-5px) scale(1.07);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    background: #000;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.video-box.featured .video-container {
    border-color: #8B5CF6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
}

.video-box:hover .video-container {
    border-color: #8B5CF6;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

.video-info {
    margin-top: 20px;
    text-align: center;
}

.video-info h4 {
    color: #f3f4f6;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.video-info p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    margin-top: 60px;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    margin-bottom: 20px;
}

/* Animation for left moving track */
.track-left {
    animation: scrollLeft 40s linear infinite;
    will-change: transform;
}

/* Animation for right moving track */
.track-right {
    animation: scrollRight 45s linear infinite;
    will-change: transform;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-33.333%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Pause on hover */
.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 400px;
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.testimonial-card:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: #8B5CF6;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    color: #f3f4f6;
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.testimonial-date {
    color: #6b7280;
    font-size: 0.85rem;
}

.verified-badge {
    position: absolute;
    right: 0;
    top: 0;
    color: #10b981;
    font-size: 1.2rem;
}

.testimonial-message {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .video-box.featured {
        transform: scale(1);
    }
    
    .video-box.featured:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 320px;
    }
    
    .track-left,
    .track-left-fast {
        animation-duration: 25s;
    }
    
    .track-right,
    .track-right-slow {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 280px;
        padding: 20px;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .videos-grid {
        gap: 20px;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .detection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .detection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .trust-indicators {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .detection-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}