:root {
    --bg-color: #05070a;
    /* Darker, deeper black */
    --card-bg: rgba(20, 25, 40, 0.6);
    /* More transparent for glass */
    --text-primary: #ffffff;
    --text-secondary: #b0b8d0;
    --accent-primary: #00f2ff;
    --accent-secondary: #7000ff;
    /* Purple for cyberpunk feel */
    --gradient-main: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    --gradient-glow: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, rgba(112, 0, 255, 0.05) 100%);
    --font-main: 'Outfit', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--bg-color), var(--accent-secondary));
    border-radius: 5px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 121, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: left 0.1s ease, top 0.1s ease;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(10, 14, 23, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight {
    color: var(--accent-primary);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-button {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.primary-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-main);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.3);
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.scanner-container {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    position: relative;
    background: rgba(0, 242, 255, 0.05);
    overflow: hidden;
}

.scan-line {
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
    position: absolute;
    top: 0;
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Sections */
.section {
    padding: 8rem 10%;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    margin-top: -2rem;
}

/* Problem Section */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-secondary);
}

.text-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.error-card {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.error-card:hover {
    transform: scale(1.05);
}

.error-card .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff4d4d;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    padding: 3px;
    /* Border width */
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.team-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.team-card .role {
    color: var(--accent-primary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-us-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(0, 242, 255, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefits-list strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.2rem;
}

.benefits-list p {
    margin-bottom: 0;
    font-size: 1rem;
}

.why-us-visual {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-primary);
    z-index: 10;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-1 {
    top: 10%;
    right: 10%;
}

.card-2 {
    top: 40%;
    left: 10%;
}

.card-3 {
    bottom: 10%;
    right: 20%;
}

/* Roadmap Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--card-bg);
    border: 2px solid var(--text-secondary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-dot.done {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.timeline-dot.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary);
}

.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.timeline-content {
    width: 45%;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.timeline-content.active-card {
    border-color: var(--accent-primary);
    background: rgba(0, 242, 255, 0.05);
}

.stage-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 10px;
    text-transform: uppercase;
}

.timeline-content .date {
    color: var(--accent-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

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

/* Implementation Section */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.arrow {
    font-size: 2rem;
    color: var(--accent-secondary);
}

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

.tech-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid var(--accent-secondary);
}

.tech-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.tech-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.tech-list li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-visual {
        height: 300px;
        margin-top: 2rem;
    }

    .stat-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 1rem;
        width: 100%;
    }

    /* Timeline Responsive */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 50px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
    }

    /* Implementation Responsive */
    .process-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for demo */
}

/* Language Switcher */
.lang-switch {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    margin-left: 2rem;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.3s;
}

.lang-switch:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: rgba(0, 242, 255, 0.1);
}

/* Language Switcher Group */
.lang-group {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-switch {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 0.9rem;
    margin-left: 0;
    /* Override previous margin */
}

.lang-switch:hover,
.lang-switch.active {
    color: #000;
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* Dynamic Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, rgba(77, 121, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.08) 0%, transparent 25%);
    z-index: -1;
    animation: bgPulse 10s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Glitch Effect for Hero Title */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    15% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    20% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    100% {
        clip: rect(60px, 9999px, 70px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    5% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    15% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    20% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    100% {
        clip: rect(60px, 9999px, 70px, 0);
    }
}

/* 3D Tilt Smooth Transition */
.feature-card,
.team-card,
.stat-card,
.tech-card,
.error-card {
    transition: transform 0.1s ease-out, border-color 0.3s, background 0.3s;
    /* Fast transform for tilt */
    transform-style: preserve-3d;
}

.feature-card:hover,
.team-card:hover,
.stat-card:hover,
.tech-card:hover,
.error-card:hover {
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Magnetic Button Smoothness */
.cta-button,
.primary-btn,
.lang-switch {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s, color 0.3s, box-shadow 0.3s;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    margin-left: 2rem;
    display: inline-block;
}

.lang-btn {
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
    transition: color 0.3s;
}

.lang-btn:hover {
    color: var(--accent-primary);
}

.lang-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 22, 37, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-dropdown:hover .lang-content {
    display: flex;
    flex-direction: column;
    animation: fadeInDropdown 0.3s ease forwards;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.lang-content a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 !important;
    /* Override nav link margin */
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s;
}

.lang-content a:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-primary);
}

/* Aesthetic Polish - Glassmorphism 2.0 & Glows */

/* Refined Glass Cards */
.feature-card,
.team-card,
.stat-card,
.tech-card,
.timeline-content,
.error-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Highlight top border */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    /* Highlight left border */
}

.feature-card:hover,
.team-card:hover,
.stat-card:hover,
.tech-card:hover,
.timeline-content:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2), inset 0 0 20px rgba(0, 242, 255, 0.05);
}

/* Ambient Glows for Sections */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--gradient-glow);
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

/* Typography Enhancements */
h1,
h2,
h3 {
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

/* Navbar Polish */
.navbar {
    background: rgba(5, 7, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Button Glows */
.primary-btn,
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn::after,
.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s;
    z-index: -1;
}

.primary-btn:hover::after,
.cta-button:hover::after {
    transform: scale(1);
}

/* WOW Factor - Neon Borders & Shimmer */

/* Neural Canvas */
#neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Let clicks pass through */
}

/* Text Shimmer Effect */
.gradient-text {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 50%, #00f2ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Neon Stream Borders */
.feature-card,
.team-card,
.stat-card,
.tech-card,
.timeline-content,
.error-card {
    position: relative;
    overflow: hidden;
    /* Keep the pseudo-element inside */
}

.feature-card::before,
.team-card::before,
.stat-card::before,
.tech-card::before,
.timeline-content::before,
.error-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover::before,
.team-card:hover::before,
.stat-card:hover::before,
.tech-card:hover::before,
.timeline-content:hover::before,
.error-card:hover::before {
    opacity: 1;
    animation: borderStream 2s linear infinite;
}

@keyframes borderStream {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }

    /* Simulate movement */
}

/* Enhanced Glow for Active Roadmap Item */
.timeline-dot.active {
    box-shadow: 0 0 20px var(--accent-primary), 0 0 40px var(--accent-primary);
}

.timeline-content.active-card {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-photo {
    width: 140%;
    height: 140%;
    object-fit: cover;
    transform: translateY(10px);
}

/* Solution Result Box */
.solution-result {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--accent-primary);
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.solution-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

.result-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
}

.result-text strong {
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Redesigned Why Us Section - User Preferred Layout */
.why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.why-us-content {
    text-align: center;
    max-width: 100%;
    /* Allow full width for 3 cols */
    margin: 0 auto;
}

.why-us-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-us-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Grid - 3 Columns Strictly */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Responsive for Benefits */
@media (max-width: 992px) {
    .benefits-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.benefits-list li:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

/* Neon Border for Benefit Cards */
.benefits-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.benefits-list li:hover::before {
    opacity: 1;
    animation: borderStream 2s linear infinite;
}

.check-icon {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.benefits-list strong {
    display: block;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefits-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
    text-align: left;
}

/* Stat Cards - New Horizontal Layout */
.why-us-visual {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-card {
    position: relative;
    /* Reset absolute positioning */
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 200px;
    text-align: center;
    padding: 2rem;
    background: rgba(20, 25, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-us-visual {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
    }
}

/* Refactored Why Us Section - Top/Bottom Layout */
.why-us-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Top Section: Text + Stats */
.why-us-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-us-text {
    text-align: left;
}

.why-us-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-us-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stat Cards - Smaller & Right Aligned */
.why-us-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 in a row */
    gap: 1rem;
}

.stat-card {
    background: rgba(20, 25, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bottom Section: 3-Column Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Equal height */
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

/* Neon Border */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: borderStream 2s linear infinite;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-icon {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-us-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-us-text {
        text-align: center;
    }

    .why-us-stats {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Implementation / Technical Architecture Section */
.impl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.impl-card {
    background: rgba(20, 25, 40, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.impl-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.impl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0.7;
}

.impl-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.impl-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.impl-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
    /* Space for number */
}

.impl-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impl-card li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1rem;
}

.impl-card li::before {
    content: '•';
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.impl-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .impl-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}