:root {
            --primary: #0c0819;
            --secondary: #4601FA;
            --tertiary: #CCAFFF;
            --dark: #05030d;
            --light: #f8fafc;
            --gray: #94a3b8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Loader Futurista */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }

        .loader-content {
            text-align: center;
            position: relative;
        }

        .loader-logo {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .loader-logo::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            transform: scaleX(0);
            transform-origin: left;
            animation: loaderLine 2s infinite;
        }

        @keyframes loaderLine {
            0% { transform: scaleX(0); }
            50% { transform: scaleX(1); }
            100% { transform: scaleX(0); transform-origin: right; }
        }

        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(204, 175, 255, 0.1);
            border-radius: 50%;
            border-top-color: var(--tertiary);
            animation: spin 1.5s linear infinite;
            margin: 0 auto 20px;
            position: relative;
        }

        .loader-spinner::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border: 3px solid rgba(204, 175, 255, 0.1);
            border-radius: 50%;
            border-top-color: var(--secondary);
            animation: spin 2s linear infinite reverse;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loader-percentage {
            margin-top: 20px;
            font-size: 1.2rem;
            color: var(--tertiary);
            font-weight: 300;
        }

        /* Header Holográfico */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 25px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        header.scrolled {
            background-color: rgba(12, 8, 25, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 5%;
            box-shadow: 0 5px 30px rgba(70, 1, 250, 0.2);
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            -webkit-background-clip: text;
            background-clip: text;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            transition: width 0.5s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .logo-icon {
            margin-right: 10px;
            font-size: 32px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 40px;
            position: relative;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--tertiary);
        }

        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            transition: width 0.5s ease;
        }

        nav ul li a:hover::before {
            width: 100%;
        }

        .menu-btn {
            display: none;
            cursor: pointer;
            z-index: 101;
            width: 40px;
            height: 40px;
            position: relative;
        }

        .menu-btn span {
            display: block;
            width: 30px;
            height: 2px;
            background: var(--light);
            position: absolute;
            left: 5px;
            transition: all 0.3s ease;
        }

        .menu-btn span:nth-child(1) {
            top: 10px;
        }

        .menu-btn span:nth-child(2) {
            top: 19px;
        }

        .menu-btn span:nth-child(3) {
            bottom: 10px;
        }

        .menu-btn.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 19px;
            background: var(--tertiary);
        }

        .menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg);
            bottom: 19px;
            background: var(--tertiary);
        }

        /* Hero Section - Efeito Matrix */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
            background: radial-gradient(circle at 70% 30%, rgba(70, 1, 250, 0.1), transparent 50%);
        }

        .hero-content {
            height: 80vh;
            max-height: 90vh;
            max-width: 700px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 3;
            position: relative;
            margin-top: 20px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--light), var(--tertiary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            transform: scaleX(0);
            transform-origin: left;
            animation: titleUnderline 3s infinite;
        }

        @keyframes titleUnderline {
            0% { transform: scaleX(0); }
            50% { transform: scaleX(1); }
            100% { transform: scaleX(0); transform-origin: right; }
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--light);
            margin-bottom: 40px;
            line-height: 1.8;
            opacity: 0.8;
            max-width: 600px;
        }

        .typed-cursor {
            opacity: 1;
            animation: blink 0.7s infinite;
            color: var(--tertiary);
            font-size: 3.5rem;
        }

        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--secondary), var(--tertiary));
            color: var(--primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            border: none;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 10px 30px rgba(70, 1, 250, 0.5);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:hover {
            transition: all 0.5s ease-in-out !important;
            transform: scale(1.2) !important;
            box-shadow: 0 15px 40px rgba(70, 1, 250, 0.7);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--tertiary), var(--secondary));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn-outline {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--tertiary);
            margin-left: 20px;
            box-shadow: none;
            position: relative;
        }

        .btn-outline:hover {
            color: var(--primary);
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--tertiary);
            transition: width 0.5s ease;
            z-index: -1;
        }

        .btn-outline:hover::before {
            width: 100%;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            z-index: 1;
            opacity: 0.7;
        }

        /* Efeito de Grid Holográfico */
        .grid-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(70, 1, 250, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(70, 1, 250, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { background-position: 0 0; }
            100% { background-position: 1000px 1000px; }
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, 50px) rotate(180deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        /* Features Section - Cards Holográficos */
        .section {
            padding: 150px 5%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--light);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--tertiary);
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: rgba(12, 8, 25, 0.7);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 10px 30px rgba(70, 1, 250, 0.1);
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(204, 175, 255, 0.1);
            width: 80%;
            min-width: 80%;
            max-width: 80%;
            /* height: 65%;
            min-height: 65%;
            max-height: 65%; */
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(70, 1, 250, 0.3);
            border-color: rgba(204, 175, 255, 0.3);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(70, 1, 250, 0.1), rgba(204, 175, 255, 0.05));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary), var(--tertiary));
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
            color: var(--primary);
            font-size: 36px;
            box-shadow: 0 10px 30px rgba(70, 1, 250, 0.3);
        }

        .feature-card h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--light);
            position: relative;
            display: inline-block;
        }

        .feature-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            transition: width 0.5s ease;
        }

        .feature-card:hover h3::after {
            width: 100%;
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Stats Section - Efeito de Partículas */
        .stats {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            padding: 150px 5%;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' opacity='0.05'%3E%3Cg fill='%23CCAFFF' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            background: rgba(12, 8, 25, 0.5);
            padding: 40px 30px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(204, 175, 255, 0.1);
            transition: all 0.5s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(70, 1, 250, 0.3);
            border-color: rgba(204, 175, 255, 0.3);
        }

        .stat-item h3 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--light), var(--tertiary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .stat-item p {
            font-size: 1.2rem;
            opacity: 0.8;
            color: var(--tertiary);
        }

        /* Testimonials - Efeito de Neon */
        .testimonials {
            background-color: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(70, 1, 250, 0.2), transparent 50%);
        }

        .testimonials-slider {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card {
            background: rgba(12, 8, 25, 0.7);
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 10px 30px rgba(70, 1, 250, 0.1);
            margin: 0 15px;
            border: 1px solid rgba(204, 175, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.5s ease;
        }

        .testimonial-card:hover {
            border-color: rgba(204, 175, 255, 0.3);
            box-shadow: 0 20px 50px rgba(70, 1, 250, 0.3);
        }

        .testimonial-content {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--light);
            margin-bottom: 40px;
            position: relative;
            font-style: italic;
        }

        .testimonial-content::before {
            content: '"';
            font-size: 6rem;
            position: absolute;
            top: -40px;
            left: -30px;
            color: var(--tertiary);
            opacity: 0.2;
            font-family: serif;
            line-height: 1;
            z-index: -1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 25px;
            border: 2px solid var(--tertiary);
            box-shadow: 0 5px 20px rgba(204, 175, 255, 0.3);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--light);
        }

        .author-info p {
            color: var(--tertiary);
            font-size: 1rem;
            opacity: 0.8;
        }

        /* CTA Section - Efeito de Distorção */
        .cta {
            text-align: center;
            background: linear-gradient(135deg, var(--primary), #080515);
            position: relative;
            overflow: hidden;
            padding: 200px 5%;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--dark);
        }

        .cta h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--light);
            position: relative;
            display: inline-block;
        }

        .cta h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
        }

        .cta p {
            font-size: 1.3rem;
            color: var(--tertiary);
            max-width: 800px;
            margin: 0 auto 60px;
            opacity: 0.8;
        }

        /* Footer - Efeito de Neon */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 120px 5% 50px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: var(--light);
            position: relative;
            display: inline-block;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 15px;
        }

        .footer-col ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            position: relative;
        }

        .footer-col ul li a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--tertiary);
            transition: width 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--tertiary);
        }

        .footer-col ul li a:hover::before {
            width: 100%;
        }

        .footer-bottom {
            border-top: 1px solid rgba(204, 175, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: var(--gray);
            font-size: 1rem;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(204, 175, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--light);
            font-size: 20px;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary), var(--tertiary));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            color: var(--primary);
        }

        .social-links a:hover::before {
            opacity: 1;
        }

        /* Floating Particles */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        /* 3D DNA Helix */
        .dna-container {
            position: absolute;
            top: 50%;
            right: 10%;
            width: 500px;
            height: 500px;
            transform: translateY(-50%);
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 1400px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .dna-container {
                width: 450px;
                height: 450px;
                right: 5%;
            }
        }

        @media (max-width: 1200px) {
            .hero {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                padding-top: 120px;
            }

            .hero p {
                font-size: 1.1rem;
                min-width: 100%;
            }
            
            .hero-content {
                display: flex;
                height: 60vh;
                max-width: 100%;
                min-width: 100%;
                margin-bottom: 80px;
                flex-direction: column;
                align-items: center;
                justify-content: space-around;
            }
            
            .hero-bg {
                position: relative;
                width: 100%;
                height: 500px;
            }
            
            .dna-container {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                margin: 0 auto;
                width: 400px;
                height: 400px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 20px;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .cta h2 {
                font-size: 3rem;
            }
            
            .menu-btn {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            
            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
                z-index: 100;
                backdrop-filter: blur(10px);
                border-right: 1px solid rgba(204, 175, 255, 0.1);
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 20px 0;
            }
            
            .dna-container {
                width: 350px;
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .feature-card {
                height: 100%;
                min-height: 100%;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 100px 5%;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-card {
                padding: 40px 30px;
            }
            
            .cta h2 {
                font-size: 2.5rem;
            }
            
            .cta p {
                font-size: 1.1rem;
            }
            
            .dna-container {
                width: 300px;
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .feature-card h3 {
                font-size: 1.3rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
                font-size: 22px;
            }

            .hero-content {
                margin-top: 0px;
                height: 85vh;
                min-height: 85vh;
                max-height: 85vh;
                max-width: 100%;
                min-width: 100%;
                margin-bottom: 5px;
                justify-content: space-between;
            }

            .feature-card {
                width: 90vw;
                min-width: 90vw;
                max-width: 90vw;
                height: 100%;
                min-height: 100%;
                padding: 20px !important;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 20px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .stat-item h3 {
                font-size: 3rem;
            }
            
            .dna-container {
                width: 250px;
                height: 250px;
            }
            
            .testimonial-card {
                padding: 40px 30px;
            }
            
            .testimonial-content {
                font-size: 1.1rem;
            }
            
            .author-avatar {
                width: 50px;
                height: 50px;
                margin-right: 15px;
            }
            
            .author-info h4 {
                font-size: 1.2rem;
            }
        }