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

        :root {
            --bg-primary: #050507;
            --bg-secondary: #0a0a0f;
            --bg-card: #0f0f17;
            --bg-hover: #14141f;
            --accent: #BE34F5;
            --accent-blue: #00B6F0;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border: rgba(190, 52, 245, 0.15);
            --gradient: linear-gradient(135deg, #BE34F5 0%, #00B6F0 100%);
        }

        * {
            scrollbar-width: thin;
            scrollbar-color: var(--accent) transparent;
        }

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

        /* Animated Background */
        .bg-container {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: radial-gradient(ellipse at top, #0a0a0f 0%, #050507 50%, #000000 100%);
        }

        .bg-container::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(190, 52, 245, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 182, 240, 0.03) 0%, transparent 50%);
            animation: pulse 15s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Fade in animation */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            background: rgba(5, 5, 7, 0.9);
            backdrop-filter: blur(20px) saturate(180%);
            padding: 1rem 0;
            box-shadow: 0 1px 0 rgba(190, 52, 245, 0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo svg {
            height: 60px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

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

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

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

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

        .nav-cta {
            background: var(--gradient);
            color: #ffffff !important;
            padding: 0.75rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(190, 52, 245, 0.3);
        }

        /* remove underline animation for CTA link */
        .nav-cta::after { display: none !important; }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(190, 52, 245, 0.4);
        }

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mobile-menu li a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: block;
            padding: 0.5rem 0;
        }

        .mobile-menu li a:hover {
            color: var(--accent);
            transform: translateX(10px);
        }

        .mobile-nav-cta {
            background: var(--gradient);
            color: #ffffff !important;
            padding: 1rem 2rem;
            border-radius: 12px;
            margin-top: 1rem;
        }

        .mobile-nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(190, 52, 245, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: brightness(1); }
            to { filter: brightness(1.2); }
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Dark Web Check */
        .dark-web-check {
            background: rgba(190, 52, 245, 0.05);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3.5rem;
            max-width: 1000px;
            margin: 0 auto 3rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .check-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .check-form {
            display: flex;
            gap: 1rem;
            max-width: 700px;
            margin: 2rem auto 0;
        }

        .check-input {
            flex: 1;
            padding: 1.2rem 1.8rem;
            background: rgba(10, 10, 15, 0.8);
            border: 1px solid rgba(190, 52, 245, 0.2);
            border-radius: 14px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .check-input:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(190, 52, 245, 0.05);
            box-shadow: 0 0 20px rgba(190, 52, 245, 0.2);
        }

        .check-btn {
            padding: 1.2rem 3rem;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(190, 52, 245, 0.3);
        }

        .check-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(190, 52, 245, 0.4);
        }

        /* Stats Section */
        .stats-section {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
        }

        .stats-grid {
            max-width: 1200px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(190, 52, 245, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(190, 52, 245, 0.2);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            font-family: 'Orbitron', sans-serif;
        }

        /* Clients Section */
        .clients-section {
            padding: 5rem 2rem;
            overflow: hidden;
            background: var(--bg-primary);
            position: relative;
        }

        .clients-title {
            text-align: center;
            font-size: 1.8rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .clients-track {
            display: flex;
            gap: 4rem;
            animation: scroll-clients 40s linear infinite;
            width: max-content;
            will-change: transform;
        }

        @keyframes scroll-clients {
            0% { 
                transform: translateX(0); 
            }
            100% { 
                transform: translateX(calc(-50%)); 
            }
        }

        .client-logo {
            width: 180px;
            height: 100px;
            background: var(--bg-card);
            border: 1px solid rgba(190, 52, 245, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .client-logo img {
            max-width: 140px;
            max-height: 60px;
            object-fit: contain;
            filter: brightness(0.8) contrast(0.8);
            transition: all 0.3s ease;
        }

        .client-logo:hover {
            background: var(--bg-hover);
            border-color: var(--accent);
            transform: scale(1.05);
        }

        .client-logo:hover img {
            filter: brightness(1) contrast(1);
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(190, 52, 245, 0.15);
        }

        .service-card:hover::before {
            transform: translateX(0);
        }

        /* Process Section */
        .process-section {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
            overflow: hidden;
        }

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

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

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.125rem;
        }

        .process-timeline {
            position: relative;
            padding: 4rem 0;
        }
        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 60px;
            bottom: 60px;
            width: 3px;
            background: var(--gradient);
            transform: translateX(-50%);
        }

        .process-step {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 6rem;
            position: relative;
        }

        .step-spacer { flex: 1; }

        /* Alternate sides by step order (1 left, 2 right, ...). Layout handled by DOM + spacers */

        .step-content {
            flex: 1;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.4s ease;
            max-width: 540px;
        }

        .process-step:nth-child(odd) .step-content { /* left cards */
            margin-right: 4rem;
            transform: translateX(-30px);
            opacity: 0;
            animation: slideFromLeft 0.8s ease forwards;
        }

        .process-step:nth-child(even) .step-content { /* right cards */
            margin-left: 4rem;
            transform: translateX(30px);
            opacity: 0;
            animation: slideFromRight 0.8s ease forwards;
        }

        /* connector lines from cards to center timeline */
        .process-step .step-content::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 48px;
            height: 2px;
            background: var(--gradient);
            opacity: 0.7;
        }

        .process-step:nth-child(odd) .step-content::after { /* left card connects from right edge to center */
            right: -48px;
            transform: translateY(-50%);
        }

        .process-step:nth-child(even) .step-content::after { /* right card connects from left edge to center */
            left: -48px;
            transform: translateY(-50%) rotate(180deg);
        }

        @keyframes slideFromLeft {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideFromRight {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .step-number {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            background: var(--gradient);
            border: 5px solid var(--bg-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.4rem;
            color: white;
            z-index: 2;
            box-shadow: 0 0 36px rgba(190, 52, 245, 0.3);
        }

        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

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

        /* Team Section */
        .team {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .achievements-container {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 4rem;
            border: 1px solid var(--border);
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .achievements-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        /* Certifications Grid */
        .certifications-showcase {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 4rem;
            border: 1px solid var(--border);
            margin: 3rem 0;
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .cert-card {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 1rem;
            background: rgba(190, 52, 245, 0.08);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.25rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .cert-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 36px rgba(190, 52, 245, 0.18);
            border-color: rgba(190, 52, 245, 0.35);
        }

        .cert-logo {
            width: 72px; height: 72px;
            border-radius: 14px;
            background: rgba(10,10,15,0.7);
            border: 1px solid rgba(255,255,255,0.08);
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .cert-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }

        .cert-title { font-size: 1.2rem; font-weight: 800; letter-spacing: 0.3px; }
        .cert-sub { color: var(--text-secondary); font-weight: 700; margin-top: 0.15rem; }
        .cert-desc { color: var(--text-secondary); margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.6; }

        /* Feedback Section - Carousel */
        .feedback-section {
            padding: 6rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feedback-carousel {
            position: relative;
            margin-top: 4rem;
        }

        .feedback-container {
            position: relative;
            min-height: 400px;
        }

        .feedback-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
        }

        .feedback-slide.active {
            position: relative;
            opacity: 1;
            visibility: visible;
        }

        .feedback-card-single {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feedback-card-single::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
        }

        .feedback-stars {
            color: #FFD700;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

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

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

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            background: rgba(10, 10, 15, 0.5);
        }

        .author-avatar svg {
            width: 100%;
            height: 100%;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 4px;
        }

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

        .feedback-indicators {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(190, 52, 245, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            -webkit-tap-highlight-color: transparent;
        }

        .indicator.active {
            background: var(--accent);
            transform: scale(1.2);
            border-color: rgba(190, 52, 245, 0.5);
        }

        .indicator:hover {
            background: rgba(190, 52, 245, 0.6);
        }

        /* Solutions Section */
        .solutions-section {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
            max-width: 1400px;
            margin: 0 auto;
        }

        .solution-container {
            margin-top: 4rem;
        }

        .solution-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .solution-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Orbitron', sans-serif;
        }

        .solution-description {
            color: var(--text-secondary);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .try-now-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gradient);
            color: #ffffff;
            text-decoration: none;
            border-radius: 14px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(190, 52, 245, 0.3);
            font-family: 'Inter', sans-serif;
        }

        .try-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(190, 52, 245, 0.4);
        }

        .solution-features {
            display: grid;
            gap: 2rem;
        }

        .solution-feature {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: rgba(190, 52, 245, 0.15);
            border: 1px solid rgba(190, 52, 245, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
        }

        .solution-feature h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .solution-feature p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 1rem;
        }

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

        .solution-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
        }

        .solution-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(190, 52, 245, 0.08);
            border-radius: 16px;
            border: 1px solid rgba(190, 52, 245, 0.15);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 0.5rem;
        }

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

        .solution-illustration {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .solution-illustration svg {
            width: 100%;
            height: 100%;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 2rem;
            background: var(--gradient);
            margin: 4rem 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
            font-family: 'Orbitron', sans-serif;
        }

        /* Newsletter */
        .newsletter-section {
            padding: 5rem 2rem;
            background: var(--bg-secondary);
            text-align: center;
        }

        /* Training Section */
        .training-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .training-wrap {
            background: linear-gradient(135deg, rgba(190,52,245,0.08), rgba(0,182,240,0.08));
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .training-points { display: grid; gap: 1rem; }
        .training-point { display: flex; gap: 0.75rem; align-items: flex-start; }
        .training-bullet { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); margin-top: 8px; box-shadow: 0 0 10px rgba(239,68,68,0.4); }
        .training-title { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }
        .apply-btn { padding: 0.9rem 2rem; background: var(--accent); color: #fff; border: 0; border-radius: 8px; font-weight: 700; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 4px 15px rgba(190, 52, 245, 0.3); }
        .apply-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(190, 52, 245, 0.4); }
        @media(max-width: 900px){ .training-wrap{grid-template-columns: 1fr;} }

        /* Training Page Styles */
        .training-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            text-align: center;
        }

        .training-levels-section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .level-section {
            margin-bottom: 6rem;
        }

        .level-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .level-badge.beginner {
            background: rgba(190, 52, 245, 0.15);
            border: 1px solid rgba(190, 52, 245, 0.3);
            color: var(--accent);
        }

        .level-badge.advanced {
            background: rgba(190, 52, 245, 0.15);
            border: 1px solid rgba(190, 52, 245, 0.3);
            color: var(--accent);
        }

        .level-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Orbitron', sans-serif;
        }

        .level-description {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            max-width: 800px;
        }

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

        .course-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(190, 52, 245, 0.15);
        }

        .course-card:hover::before {
            transform: translateX(0);
        }

        .course-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .course-icon {
            width: 50px;
            height: 50px;
            background: rgba(190, 52, 245, 0.15);
            border: 1px solid rgba(190, 52, 245, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

        .course-icon svg {
            width: 24px;
            height: 24px;
        }

        .course-level-badge {
            padding: 0.4rem 1rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .course-level-badge.beginner {
            background: rgba(190, 52, 245, 0.15);
            color: var(--accent);
        }

        .course-level-badge.advanced {
            background: rgba(190, 52, 245, 0.15);
            color: var(--accent);
        }

        .course-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .course-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .course-certifications {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            min-height: 2.5rem;
        }

        .cert-badge {
            padding: 0.4rem 1rem;
            background: rgba(190, 52, 245, 0.1);
            border: 1px solid rgba(190, 52, 245, 0.3);
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            font-family: 'JetBrains Mono', monospace;
        }

        .course-btn {
            width: 100%;
            padding: 1rem;
            background: var(--gradient);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(190, 52, 245, 0.3);
            margin-top: auto;
        }

        .course-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(190, 52, 245, 0.4);
        }

        .training-benefits {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .benefit-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(190, 52, 245, 0.1);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .benefit-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

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

        /* Course Detail Modal */
        .course-modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px) saturate(140%);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 1.5rem;
            overflow-y: auto;
        }

        .course-modal-backdrop.visible {
            display: flex;
        }

        .course-modal-card {
            width: min(900px, 95vw);
            max-height: 90vh;
            background: rgba(190, 52, 245, 0.08);
            border: 1px solid rgba(190, 52, 245, 0.25);
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .course-modal-content {
            padding: 2.5rem;
            overflow-y: auto;
            flex: 1;
        }

        .course-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(190, 52, 245, 0.2);
        }

        .course-modal-header h2 {
            font-size: 2rem;
            font-weight: 800;
            font-family: 'Orbitron', sans-serif;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex: 1;
        }

        .course-modal-body {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .course-detail-section {
            background: rgba(10, 10, 15, 0.5);
            border: 1px solid rgba(190, 52, 245, 0.15);
            border-radius: 16px;
            padding: 2rem;
        }

        .course-detail-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .course-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .course-list li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .course-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .modules-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .module-item {
            background: rgba(15, 15, 23, 0.5);
            border: 1px solid rgba(190, 52, 245, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .module-item:hover {
            border-color: rgba(190, 52, 245, 0.4);
            background: rgba(15, 15, 23, 0.7);
        }

        .module-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .module-item ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .module-item ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .module-item ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .cert-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .certifications-detailed {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cert-item {
            background: rgba(190, 52, 245, 0.1);
            border: 1px solid rgba(190, 52, 245, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
        }

        .cert-item strong {
            display: block;
            color: var(--text-primary);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .cert-item p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        .course-modal-footer {
            display: flex;
            gap: 1rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(190, 52, 245, 0.2);
            margin-top: 2rem;
        }

        .course-modal-footer .course-btn {
            flex: 1;
        }

        @media (max-width: 640px) {
            .course-modal-card {
                width: 95vw;
                max-height: 95vh;
            }

            .course-modal-content {
                padding: 1.5rem;
            }

            .course-modal-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .course-modal-header h2 {
                font-size: 1.5rem;
            }

            .course-detail-section {
                padding: 1.5rem;
            }

            .course-modal-footer {
                flex-direction: column;
            }

            .module-item {
                padding: 1.25rem;
            }

            .module-item h4 {
                font-size: 1rem;
            }

            .module-item ul li {
                font-size: 0.9rem;
            }
        }

        /* Training form */
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-grid .full { grid-column: span 2; }
        .input {
            width: 100%;
            padding: 0.9rem 1rem;
            background: rgba(10,10,15,0.7);
            border: 1px solid rgba(190,52,245,0.25);
            border-radius: 12px;
            color: var(--text-primary);
        }
        .select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%); background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 2rem auto 0;
        }

        .newsletter-input {
            flex: 1;
            padding: 1.2rem 1.8rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .newsletter-btn {
            padding: 1.2rem 3rem;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(190, 52, 245, 0.3);
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(190, 52, 245, 0.4);
        }

        /* CTA action button at the end */
        .cta-action-btn {
            padding: 1rem 3rem;
            background: var(--gradient);
            color: #ffffff;
            border: none;
            border-radius: 14px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(190, 52, 245, 0.3);
        }

        .cta-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(190, 52, 245, 0.4);
        }

        /* Footer */
        footer {
            padding: 3rem 2rem 2rem;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-toggle { display: flex; }
            .process-step { flex-direction: column !important; }
            .process-step:nth-child(odd) .step-content,
            .process-step:nth-child(even) .step-content {
                margin: 2rem 0;
            }
            .process-timeline::before { content: none; }
            .process-step .step-content::after { display: none; }
            .cert-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
            /* reposition step numbers so they don't overlap cards */
            .process-step .step-number {
                top: -18px;
                left: 24px;
                transform: none;
                width: 46px;
                height: 46px;
                font-size: 1rem;
                border-width: 4px;
            }
        }

        /* Mobile optimizations */
        @media (max-width: 640px) {
            .hero { padding: 7rem 1rem 3rem; }
            .dark-web-check { padding: 1.5rem; margin: 0 0 2rem; }
            .check-form { flex-direction: column; max-width: 100%; }
            .check-btn { width: 100%; }

            .stats-section { padding: 3.5rem 1rem; }
            .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
            .stat-number { font-size: 2.5rem; }

            .services { padding: 3.5rem 1rem; }
            .services-grid { grid-template-columns: 1fr; }

            .clients-section { 
                padding: 3rem 1rem; 
                overflow: hidden;
            }
            .clients-track { 
                animation: scroll-clients 35s linear infinite;
                gap: 2rem;
                flex-wrap: nowrap;
            }
            .client-logo { 
                width: 140px;
                height: 80px;
                padding: 1rem;
                flex-shrink: 0;
            }
            .client-logo img { 
                max-width: 100px; 
                max-height: 40px; 
                object-fit: contain;
            }

            .team { padding: 3.5rem 1rem; }
            .achievements-container, .certifications-showcase { padding: 1.5rem; }
            .achievements-grid { grid-template-columns: 1fr; gap: 1rem; }
            .cert-grid { grid-template-columns: 1fr; gap: 1rem; }
            .cert-card { grid-template-columns: 56px 1fr; padding: 1rem; }
            .cert-logo { width: 56px; height: 56px; }
            .cert-title { font-size: 1.05rem; }
            .cert-sub { font-size: 0.95rem; }
            .cert-desc { font-size: 0.9rem; }

            .feedback-section { padding: 3.5rem 1rem; }
            .feedback-container { min-height: 350px; }
            .feedback-card-single { padding: 2rem; }
            .feedback-text { font-size: 1rem; }
            .indicator {
                width: 16px;
                height: 16px;
                cursor: pointer;
                -webkit-tap-highlight-color: transparent;
            }
            .indicator.active {
                transform: scale(1.3);
            }

            .solutions-section { padding: 3.5rem 1rem; }
            .solution-content { grid-template-columns: 1fr; gap: 3rem; }
            .solution-title { font-size: 2rem; }
            .solution-description { font-size: 1.1rem; }
            .try-now-btn { padding: 0.9rem 2rem; font-size: 1rem; width: 100%; text-align: center; }
            .solution-stats { grid-template-columns: 1fr; gap: 1rem; }
            .stat-value { font-size: 1.5rem; }
            .solution-illustration { height: 150px; }

            .cta-section { margin: 2rem 1rem; padding: 4rem 1rem; }

            .newsletter-section { padding: 3.5rem 1rem; }
            .newsletter-form { flex-direction: column; }
            .newsletter-btn { width: 100%; }

            .training-section { padding: 3.5rem 1rem; }
            .training-wrap { padding: 1.5rem; grid-template-columns: 1fr; }
            .form-grid { grid-template-columns: 1fr; }
            .form-grid .full { grid-column: span 1; }

            .training-hero { padding: 7rem 1rem 3rem; min-height: 40vh; }
            .training-levels-section { padding: 3.5rem 1rem; }
            .level-section { margin-bottom: 4rem; }
            .level-title { font-size: 2rem; }
            .courses-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .course-card { padding: 2rem; }
            .training-benefits { padding: 3.5rem 1rem; }
            .benefits-grid { grid-template-columns: 1fr; gap: 1.5rem; }

            .modal-card { grid-template-columns: 1fr; min-height: unset; }
            .modal-content { padding: 1.25rem; }
        }

        /* Modal Popups */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: radial-gradient(1200px 800px at 70% 10%, rgba(190, 52, 245, 0.12), transparent 60%), rgba(0,0,0,0.6);
            backdrop-filter: blur(10px) saturate(140%);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 1.5rem;
        }

        .modal-backdrop.visible { display: flex; }

        .modal-card {
            width: min(900px, 95vw);
            min-height: 420px;
            background: rgba(190, 52, 245, 0.08);
            border: 1px solid rgba(190, 52, 245, 0.25);
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            display: grid;
            place-items: center;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
        }

        .modal-media {
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scan-illustration {
            width: 100%;
            max-width: 360px;
            aspect-ratio: 1/1;
            border-radius: 20px;
            background:
                radial-gradient(60px 60px at 20% 30%, rgba(190, 52, 245, 0.5), transparent 60%),
                radial-gradient(60px 60px at 70% 60%, rgba(190, 52, 245, 0.45), transparent 60%),
                radial-gradient(40px 40px at 45% 80%, rgba(255,255,255,0.15), transparent 60%),
                rgba(5,5,7,0.6);
            border: 1px dashed rgba(190, 52, 245, 0.25);
            box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
            position: relative;
            display: grid;
            place-items: center;
        }

        .scan-illustration::after {
            content: '';
            position: absolute;
            inset: 10%;
            border-radius: 16px;
            border: 2px solid transparent;
            background: rgba(190, 52, 245, 0.6);
            -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
                    mask-composite: exclude;
            animation: pulseBorder 2s ease-in-out infinite;
        }

        @keyframes pulseBorder {
            0%, 100% { opacity: 0.45; }
            50% { opacity: 1; }
        }

        .modal-content {
            padding: 2.25rem 2.25rem 2rem 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .illustration-icon {
            width: 70%;
            height: 70%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        .illustration-icon svg { width: 100%; height: 100%; }
        .spin-slow { animation: spin 6s linear infinite; transform-origin: 50% 50%; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .pulse { animation: pulseBorder 2s ease-in-out infinite; }

        .modal-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
        }

        .scan-steps { margin-top: 0.5rem; }
        .scan-step {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.9rem 1rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.06);
            background: rgba(15,15,23,0.5);
        }

        .scan-step + .scan-step { margin-top: 0.6rem; }

        .step-dot {
            width: 12px; height: 12px; border-radius: 50%;
            background: rgba(255,255,255,0.25);
            box-shadow: 0 0 0 0 rgba(190, 52, 245, 0.6);
            animation: ping 1.6s infinite;
        }

        @keyframes ping {
            0% { box-shadow: 0 0 0 0 rgba(190, 52, 245, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(190, 52, 245, 0); }
            100% { box-shadow: 0 0 0 0 rgba(190, 52, 245, 0); }
        }

        .step-done { background: var(--accent); animation: none; }
        .step-text { color: var(--text-secondary); font-size: 1.05rem; }

        .modal-actions { margin-top: auto; display: flex; gap: 0.75rem; }
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 0.75rem 1.25rem;
            cursor: pointer;
        }

        @media (max-width: 900px) {
            .modal-card { grid-template-columns: 1fr; }
            .modal-media { display: none; }
            .modal-content { padding: 2rem; }
        }