 /* Hero Section */
        .hero-section {
            min-height: 100vh;
            max-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            padding-top: var(--space-24);
            padding-bottom: var(--space-16);
        }

        .page-natroy-td .hero-section {
            max-height: 150vh;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -25%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(94, 106, 210, 0.15) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -25%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
            animation: float 25s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            padding: var(--space-2) var(--space-4);
            background: rgba(94, 106, 210, 0.1);
            border: 1px solid rgba(94, 106, 210, 0.3);
            border-radius: var(--radius-full);
            margin-bottom: var(--space-6);
            font-size: var(--font-size-sm);
            color: var(--color-accent);
            font-weight: var(--font-weight-medium);
            animation: fadeInUp 0.8s ease-out;
        }

        .page-natroy-s .hero-badge {
            background: rgba(213, 117, 0, 0.1);
            border: 1px solid #fb923c;
            color: #fb923c;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: var(--font-weight-bold);
            line-height: 1.1;
            margin-bottom: var(--space-6);
            background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-modern h1 {
            margin-bottom: var(--space-6);
        }
        
        .hero-description {
            font-size: var(--font-size-xl);
            color: var(--color-text-secondary);
            margin-bottom: var(--space-8);
            max-width: 700px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .hero-cta {
            display: flex;
            gap: var(--space-4);
            animation: fadeInUp 1.2s ease-out 0.6s both;
        }
        
        
        /* CVE Protection Visual */
        .cve-visual-section {
            padding: var(--space-16) 0;
            background: linear-gradient(var(--color-bg-primary), var(--color-bg-secondary));
            position: relative;
            overflow: hidden;
        }
        
        .cve-visual-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-16);
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        @media (max-width: 968px) {
            .cve-visual-content {
                grid-template-columns: 1fr;
            }
        }
        
        .cve-visual-text h2 {
            font-size: var(--font-size-3xl);
            font-weight: var(--font-weight-bold);
            margin-bottom: var(--space-6);
            text-align: center;
        }

        .cve-visual-text p {
            font-size: var(--font-size-lg);
            color: var(--color-text-secondary);
            line-height: var(--line-height-relaxed);
            margin-bottom: var(--space-8);
            text-align: center;
        }
        
        .cve-features {
            display: flex;
            flex-direction: column;
            gap: var(--space-4);
            align-items: center;
        }
        
        .cve-feature {
            display: flex;
            align-items: center;
            gap: var(--space-4);
            max-width: 600px;
            width: 100%;
        }
        
        .cve-feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(16, 95, 185, 0.1);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3b82f6;
            flex-shrink: 0;
        }

        .page-natroy-td .cve-feature-icon {
            background: linear-gradient(#10b981, #a855f7);
            color: #ffffff;
        }
        
        .cve-visual-graphic {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .threat-radar {
            width: 400px;
            height: 400px;
            position: relative;
            animation: rotate 30s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .radar-ring {
            position: absolute;
            border: 2px solid rgba(94, 106, 210, 0.2);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .radar-ring:nth-child(1) { width: 100%; height: 100%; }
        .radar-ring:nth-child(2) { width: 75%; height: 75%; }
        .radar-ring:nth-child(3) { width: 50%; height: 50%; }
        .radar-ring:nth-child(4) { width: 25%; height: 25%; }
        
        .threat-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .threat-dot.critical {
            background: #ef4444;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
        }
        
        .threat-dot.high {
            background: #f59e0b;
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
        }
        
        .threat-dot.medium {
            background: #3b82f6;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        }
        
        .threat-dot.low {
            background: #10b981;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }
        
        /* Features Timeline */
        .timeline-section {
            padding: var(--space-24) 0;
            background: linear-gradient(var(--color-bg-secondary), var(--color-bg-primary));
        }

        .page-natroy-c  .timeline-section {
            background: linear-gradient(var(--color-bg-primary), var(--color-bg-secondary));
        }

        .page-natroy-td  .timeline-section {
            background: linear-gradient(var(--color-bg-primary), var(--color-bg-secondary));
        }

        
        .timeline-header {
            text-align: center;
            margin-bottom: var(--space-16);
        }

        .timeline-header h2{
            text-align: center;
            margin-bottom: var(--space-16);
            font-size: var(--font-size-3xl);
            font-weight: var(--font-weight-bold);
            margin-bottom: var(--space-6);
        }
        
        .timeline-header p{
            font-size: var(--font-size-lg);
            color: var(--color-text-secondary);
            line-height: var(--line-height-relaxed);
            margin-bottom: var(--space-8);
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--color-border);
        }
        
        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }
        }
        
        .timeline-item {
            position: relative;
            padding: var(--space-8) 0;
            display: flex;
            align-items: center;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        @media (max-width: 768px) {
            .timeline-item,
            .timeline-item:nth-child(odd) {
                flex-direction: row;
                padding-left: 60px;
            }
        }
        
        .timeline-content {
            flex: 0 0 45%;
            text-align: center;
            padding: var(--space-8);
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            transition: all 0.6s ease;
        }

        .page-natroy-c .timeline-content {
            background: var(--color-bg-primary);
        }

        .page-natroy-td .timeline-content {
            background: var(--color-bg-primary);
        }

        .page-natroy-c .timeline-content:hover {
            transform: translateY(-4px);
            border-color: #3b82f6;
            background: var(--color-bg-tertiary);
        }

         .page-natroy-td .timeline-content:hover {
            transform: translateY(-4px);
            border-color: #10b981;
            background: var(--color-bg-tertiary);
        }

        @media (max-width: 768px) {
            .timeline-content {
                flex: auto;
            }
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: var(--color-accent);
            border-radius: 50%;
            border: 4px solid var(--color-bg-primary);
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .timeline-dot {
                left: 20px;
            }
        }
        
        .timeline-content h3 {
            font-size: var(--font-size-xl);
            font-weight: var(--font-weight-semibold);
            margin-bottom: var(--space-3);
        }
        
        .timeline-content p {
            color: var(--color-text-secondary);
            line-height: var(--line-height-relaxed);
        }
        
        /* Documentation links */
        .doc-link {
            background: rgba(139, 92, 246, 0.1) !important;
            border-color: rgba(139, 92, 246, 0.3) !important;
            color: #8b5cf6 !important;
        }
        .doc-link:hover {
            background: rgba(139, 92, 246, 0.15) !important;
            border-color: rgba(139, 92, 246, 0.3) !important;
            color: #8b5cf6 !important;
        }

        .page-documentation .doc-link {
            background: transparent!important;
            border-color: transparent!important;
            color: #3b82f6 !important;
        }
        
        /* CTA Section */
        .cta-section {
            padding: var(--space-24) 0;
            background: linear-gradient(135deg, rgba(94, 106, 210, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(94, 106, 210, 0.1) 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: var(--font-size-3xl);
            font-weight: var(--font-weight-bold);
            margin-bottom: var(--space-6);
        }
        
        .cta-description {
            font-size: var(--font-size-xl);
            color: var(--color-text-secondary);
            margin-bottom: var(--space-8);
            line-height: var(--line-height-relaxed);
        }
        
        .cta-buttons {
            display: flex;
            gap: var(--space-4);
            justify-content: center;
        }

        .footer-line {
            position: absolute; 
            top: 0; 
            left: 0; 
            right: 0; 
            height: 2px; 
            background: linear-gradient(90deg, #fb923c, #a855f7, #a855f7,  #fb923c); 
            background-size: 200% 100%; 
            animation: gradientSlide 8s linear infinite;
        }

        .footer-cta-button {
            display: flex; 
            flex-direction: column; 
            gap: 16px;
        }