/*

TemplateMo 596 Electric Xtra

https://templatemo.com/tm-596-electric-xtra

*/

@charset "utf-8";

/* CSS Document */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
            width: 100%;
        }

        /* Animated background with hexagon pattern */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, transparent 2%, rgba(32, 77, 164, 0.03) 2%, rgba(32, 77, 164, 0.03) 3%, transparent 3%),
                radial-gradient(circle at 75% 75%, transparent 2%, rgba(61, 161, 222, 0.03) 2%, rgba(61, 161, 222, 0.03) 3%, transparent 3%);
            background-size: 80px 80px;
            animation: grid-move 30s linear infinite;
            z-index: -2;
        }

        /* Animated shapes */
        .shapes-container {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
        }

        .shape-circle {
            width: 300px;
            height: 300px;
            border: 2px solid #204da4;
            border-radius: 50%;
            top: 10%;
            left: 10%;
            animation: float-rotate 20s ease-in-out infinite;
        }

        .shape-triangle {
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 173px solid rgba(61, 161, 222, 0.2);
            top: 60%;
            right: 15%;
            animation: float-rotate 25s ease-in-out infinite reverse;
        }

        .shape-square {
            width: 150px;
            height: 150px;
            border: 2px solid #3da1de;
            transform: rotate(45deg);
            bottom: 20%;
            left: 20%;
            animation: float-rotate 22s ease-in-out infinite;
        }

        @keyframes float-rotate {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translateY(-10px) rotate(270deg) scale(1.05);
            }
        }

        /* Gradient overlay */
        .gradient-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(32, 77, 164, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(61, 161, 222, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            z-index: -1;
            animation: gradient-shift 10s ease-in-out infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Floating particles */
        .particle {
            position: fixed;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .particle::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 2px;
            background: #204da4;
            box-shadow: 0 0 10px #204da4, 0 0 20px #204da4;
            animation: float-up 15s linear infinite;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(32, 77, 164, 0.1);
        }

        nav.scrolled {
            padding: 15px 50px;
            background: rgba(10, 10, 10, 0.95);
            box-shadow: 0 5px 30px rgba(32, 77, 164, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px;
        }

        .logo-svg {
            width: 40px;
            height: 40px;
        }

        .logo-link img {
            height: 40px;
            width: auto;
            border-radius: 8px;
            padding: 3px 6px;
            background: rgba(255, 255, 255, 0.9);
            object-fit: contain;
        }

        .logo-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(13px, 3.5vw, 24px);
            font-weight: 900;
            background: linear-gradient(45deg, #204da4, #3da1de);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(32, 77, 164, 0.5);
        }

        @keyframes glow {
            0%, 100% { 
                filter: brightness(1);
                text-shadow: 0 0 30px rgba(32, 77, 164, 0.5);
            }
            50% { 
                filter: brightness(1.5);
                text-shadow: 0 0 40px rgba(32, 77, 164, 0.8);
            }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 16px;
            font-family: 'Orbitron', monospace;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        .nav-links a.active {
            opacity: 1;
            color: #204da4;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            border-color: #204da4;
            box-shadow: inset 0 0 10px rgba(32, 77, 164, 0.5);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #204da4, #3da1de);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(32, 77, 164, 0.8);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #204da4;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 80px 20px 20px;
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
            animation: fade-in-up 1s ease-out;
            z-index: 10;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Text Rotator Styles */
        .text-rotator {
            position: relative;
            min-height: 100px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .text-set {
            position: absolute;
            width: 100%;
            opacity: 0;
            display: none;
        }

        .text-set.active {
            opacity: 1;
            display: block;
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(0.98rem, 2.94vw, 2.4rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px rgba(32, 77, 164, 0.5);
            overflow: hidden;
        }

        .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
            animation: charFlyIn 0.5s ease-out forwards;
        }

        @keyframes charFlyIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .char.out {
            animation: charFlyOut 0.3s ease-in forwards;
        }

        @keyframes charFlyOut {
            to {
                opacity: 0;
                transform: translateY(-30px) rotateX(90deg);
            }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        .subtitle.visible {
            animation: subtitleFade 0.8s ease-out 0.5s forwards;
        }

        @keyframes subtitleFade {
            to {
                opacity: 0.6;
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2.6rem, 10vw, 3.8rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px rgba(32, 77, 164, 0.5);
        }

        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch-text::before {
            animation: glitch-1 0.5s infinite;
            color: #204da4;
            z-index: -1;
            text-shadow: -2px 0 #204da4;
        }

        .glitch-text::after {
            animation: glitch-2 0.5s infinite;
            color: #3da1de;
            z-index: -1;
            text-shadow: 2px 0 #3da1de;
        }

        @keyframes glitch-1 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(33% 0 33% 0); transform: translate(-2px); }
            40% { clip-path: inset(66% 0 0 0); transform: translate(2px); }
            60% { clip-path: inset(0 0 66% 0); transform: translate(1px); }
            80% { clip-path: inset(25% 0 50% 0); transform: translate(-1px); }
        }

        @keyframes glitch-2 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(50% 0 25% 0); transform: translate(2px); }
            40% { clip-path: inset(0 0 75% 0); transform: translate(-2px); }
            60% { clip-path: inset(75% 0 0 0); transform: translate(-1px); }
            80% { clip-path: inset(40% 0 40% 0); transform: translate(1px); }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0.6;
            animation: fade-in 1s ease-out 0.5s both;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 0.6; }
        }

        .cta-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
            margin-top: 30px;
            z-index: 100;
        }

        .cta-button {
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }

        .cta-primary {
            background: linear-gradient(45deg, #204da4, #3da1de);
            color: white;
            animation: pulse 2s infinite;
            box-shadow: 0 0 30px rgba(32, 77, 164, 0.5);
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(32, 77, 164, 0.5);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(32, 77, 164, 0.8);
            }
        }

        .cta-secondary {
            background: transparent;
            color: #204da4;
            border: 2px solid #204da4;
            box-shadow: inset 0 0 20px rgba(32, 77, 164, 0.1);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-secondary:hover {
            background: rgba(32, 77, 164, 0.1);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(32, 77, 164, 0.4), inset 0 0 30px rgba(32, 77, 164, 0.2);
            border-color: #ffffff;
        }

        /* Features Section with Tabs */
        .features {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.5rem, 5vw, 3rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #204da4, #3da1de);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            word-break: break-word;
        }

        .features-container {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            align-items: start;
        }

        .feature-tabs {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(32, 77, 164, 0.2);
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
        }

        .tab-item {
            padding: 15px 20px;
            margin-bottom: 10px;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }

        .tab-item:hover {
            background: rgba(32, 77, 164, 0.1);
            border-color: rgba(32, 77, 164, 0.3);
        }

        .tab-item.active {
            background: linear-gradient(45deg, rgba(32, 77, 164, 0.2), rgba(61, 161, 222, 0.2));
            border-color: #204da4;
            box-shadow: 0 0 20px rgba(32, 77, 164, 0.3);
        }

        .tab-icon {
            font-size: 1.5rem;
        }

        .feature-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(32, 77, 164, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
            min-height: 400px;
        }

        .content-panel {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .content-panel.active {
            display: block;
        }

        .content-panel h3 {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.2rem, 4vw, 2rem);
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #204da4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

        .content-panel p {
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .feature-list {
            list-style: none;
            margin-top: 20px;
        }

        .feature-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            opacity: 0.8;
        }

        .feature-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #204da4;
            font-size: 1.2rem;
        }

        /* About Section */
        .about {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.3rem, 4.5vw, 2.5rem);
            margin-bottom: 30px;
            background: linear-gradient(45deg, #204da4, #3da1de);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

        .about-text p {
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-graphic {
            width: 300px;
            height: 300px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .about-graphic::before,
        .about-graphic::after {
            content: '';
            position: absolute;
            border: 2px solid #204da4;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(32, 77, 164, 0.5);
        }

        .about-graphic::before {
            width: 100%;
            height: 100%;
            animation: rotate 20s linear infinite;
        }

        .about-graphic::after {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-color: #3da1de;
            animation: rotate 15s linear infinite reverse;
            box-shadow: 0 0 30px rgba(61, 161, 222, 0.5);
        }

        /* Alternative graphic for second row */
        .about-graphic-alt {
            width: 300px;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .hexagon {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #204da4, #3da1de);
            opacity: 0.3;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .hexagon:nth-child(1) {
            width: 150px;
            height: 150px;
            animation: hexagon-rotate 8s linear infinite;
        }

        .hexagon:nth-child(2) {
            width: 100px;
            height: 100px;
            animation: hexagon-rotate 12s linear infinite reverse;
            opacity: 0.5;
        }

        .hexagon:nth-child(3) {
            width: 200px;
            height: 200px;
            animation: hexagon-rotate 15s linear infinite;
            opacity: 0.2;
        }

        @keyframes hexagon-rotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Contact Section */
        .contact {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-centered {
            grid-template-columns: 1fr;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-centered .contact-info {
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(32, 77, 164, 0.2);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(32, 77, 164, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #204da4;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(32, 77, 164, 0.3);
            color: white;
            font-size: 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #204da4;
            box-shadow: 0 0 20px rgba(32, 77, 164, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #204da4, #3da1de);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', monospace;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(32, 77, 164, 0.5);
        }

        .contact-info {
            padding: 40px;
        }

        .contact-info h3 {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.2rem, 4vw, 2rem);
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #204da4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

        .info-item {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #204da4, #3da1de);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .info-details h4 {
            color: #204da4;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-details p {
            opacity: 0.8;
        }

        /* Map Section */
        .map-container {
            margin-top: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(32, 77, 164, 0.2);
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            text-align: center;
            opacity: 0.6;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(32, 77, 164, 0.1) 50%, transparent 60%);
            animation: scan 3s linear infinite;
        }

        @keyframes scan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(32, 77, 164, 0.2);
            padding: 40px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #204da4;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #3da1de;
            text-shadow: 0 0 10px currentColor;
        }

        .copyright {
            opacity: 0.6;
            font-size: 0.9rem;
        }

        .copyright a {
            color: #204da4;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .copyright a:hover {
            color: #3da1de;
            text-shadow: 0 0 10px currentColor;
        }

        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(
                transparent 50%,
                rgba(32, 77, 164, 0.01) 50%
            );
            background-size: 100% 4px;
            animation: scanlines 8s linear infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 0 0 30px rgba(32, 77, 164, 0.5);
            }
            50% { 
                transform: translateY(-10px);
                box-shadow: 0 10px 40px rgba(32, 77, 164, 0.7);
            }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Botão Flutuante WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 9999;
            transition: all 0.3s ease;
            animation: wpp-pulse 2.5s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.12);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
        }

        @keyframes wpp-pulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
            50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.85); }
        }

        /* Responsive */
        @media (max-width: 768px) {

            /* ── Nav ── */
            nav {
                padding: 15px 20px;
            }

            .nav-container {
                gap: 10px;
            }

            .nav-cta-btn {
                display: none;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            /* ── Hero ── */
            .hero-content {
                padding: 0 20px;
            }

            .hero-tag {
                font-size: 0.72rem;
                letter-spacing: 1px;
                padding: 6px 16px;
            }

            .hero-headline {
                font-size: clamp(1.4rem, 6.5vw, 2.2rem);
            }

            .hero-subheadline {
                font-size: 0.97rem;
            }

            .glitch-text {
                font-size: clamp(1.2rem, 4.9vw, 2.4rem);
            }

            .text-rotator {
                min-height: 150px;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .cta-container {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }

            /* ── Titles ── */
            .section-title {
                font-size: clamp(1.2rem, 5.5vw, 1.8rem);
                margin-bottom: 32px;
                padding: 0 4px;
            }

            .section-subtitle {
                margin-top: -16px;
                margin-bottom: 36px;
                font-size: 0.9rem;
                padding: 0 8px;
            }

            /* ── Results section ── */
            .results {
                padding: 48px 16px;
                overflow: hidden;
            }

            .results-inner {
                width: 100%;
                overflow: hidden;
            }

            /* Stats bar → 2×2 grid */
            .stats-bar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                padding: 16px 12px;
                gap: 0;
                margin-bottom: 32px;
                border-radius: 14px;
            }

            /* Reset desktop right-border, re-apply as 2×2 grid borders */
            .stat-item:not(:last-child) {
                border-right: none;
            }

            .stat-item {
                padding: 14px 8px;
                min-width: 0;
            }

            .stat-item:nth-child(1),
            .stat-item:nth-child(3) {
                border-right: 1px solid rgba(32, 77, 164, 0.25);
            }

            .stat-item:nth-child(1),
            .stat-item:nth-child(2) {
                border-bottom: 1px solid rgba(32, 77, 164, 0.25);
            }

            .stat-number {
                font-size: clamp(1.1rem, 5.5vw, 1.6rem);
            }

            .stat-label {
                font-size: 0.68rem;
                letter-spacing: 0.6px;
            }

            /* Result cards */
            .results-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 14px;
                width: 100%;
            }

            .result-card {
                width: 100%;
                box-sizing: border-box;
                padding: 20px 16px;
            }

            .result-metric {
                font-size: clamp(1.4rem, 7vw, 2rem);
                line-height: 1.2;
            }

            .result-metric-label {
                font-size: 0.7rem;
                margin-bottom: 14px;
            }

            .result-card-header {
                gap: 10px;
                margin-bottom: 12px;
            }

            .result-icon-wrap {
                width: 40px;
                height: 40px;
                font-size: 1.4rem;
            }

            .result-card h3 {
                font-size: 0.82rem;
                margin-bottom: 8px;
            }

            .result-card p {
                font-size: 0.88rem;
                line-height: 1.65;
            }

            .result-card-footer {
                margin-top: 14px;
                padding-top: 12px;
            }

            .results-disclaimer {
                font-size: 0.72rem;
                padding: 0 4px;
            }

            /* ── Features ── */
            .features {
                padding: 60px 16px;
            }

            /* On mobile: hide the side tab nav, show all panels as stacked cards */
            .features-container {
                display: block;
            }

            .feature-tabs {
                display: none;
            }

            .feature-content {
                display: flex;
                flex-direction: column;
                gap: 16px;
                background: transparent;
                border: none;
                padding: 0;
                min-height: unset;
            }

            /* Show ALL panels (not just active) as individual cards */
            .content-panel {
                display: block !important;
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(32, 77, 164, 0.2);
                border-radius: 12px;
                padding: 22px 18px;
                animation: none;
            }

            .content-panel h3 {
                font-size: 0.95rem;
                margin-bottom: 10px;
            }

            .content-panel p {
                font-size: 0.9rem;
                line-height: 1.7;
                margin-bottom: 12px;
            }

            .feature-list li {
                font-size: 0.88rem;
                padding: 7px 0 7px 26px;
            }

            /* ── About ── */
            .about {
                padding: 60px 16px;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .about-content {
                gap: 28px;
            }

            .about-visual {
                height: 200px;
            }

            .about-graphic {
                width: 180px;
                height: 180px;
            }

            .about-graphic-alt {
                width: 180px;
                height: 180px;
            }

            /* ── Contact ── */
            .contact {
                padding: 60px 16px;
            }

            .contact-form,
            .contact-centered .contact-info {
                padding: 22px 16px;
            }

            .info-item {
                gap: 14px;
            }

            .info-icon {
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
                flex-shrink: 0;
            }

            /* ── CTA Banner ── */
            .cta-banner-section {
                padding: 50px 16px;
            }

            .cta-banner-content h3 {
                font-size: 1.15rem;
            }

            /* ── Shapes (decorativas) ── */
            .shape-circle,
            .shape-triangle,
            .shape-square {
                transform: scale(0.5);
                opacity: 0.05;
            }

            /* ── Footer ── */
            .footer-links {
                flex-wrap: wrap;
                gap: 14px;
                justify-content: center;
            }

            /* ── WhatsApp button ── */
            .whatsapp-float {
                bottom: 20px;
                right: 16px;
                width: 52px;
                height: 52px;
            }
        }

        /* Extra small screens (≤ 390px) */
        @media (max-width: 390px) {
            .logo-text {
                font-size: 12px;
            }

            .tab-item {
                flex: 1 1 100%;
            }

            .stat-number {
                font-size: 1.4rem;
            }

            .hero-headline {
                font-size: 1.3rem;
            }
        }

        /* ====================================================
           NEW SECTIONS — Value Prop, Social Proof, CTA Banner
           ==================================================== */

        /* Nav CTA Button */
        .nav-cta-btn {
            background: linear-gradient(45deg, #204da4, #3da1de);
            color: #fff !important;
            border-radius: 4px;
            padding: 10px 22px !important;
            font-family: 'Orbitron', monospace;
            font-size: 12px !important;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            opacity: 1 !important;
            white-space: nowrap;
        }

        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(32, 77, 164, 0.5);
        }

        .nav-cta-btn::before,
        .nav-cta-btn::after {
            display: none !important;
        }

        /* Hero Value Proposition */
        .hero-tag {
            display: inline-block;
            background: rgba(32, 77, 164, 0.18);
            border: 1px solid rgba(61, 161, 222, 0.4);
            color: #3da1de;
            padding: 8px 22px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 32px;
            animation: fade-in 0.8s ease-out both;
        }

        .hero-headline {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 4.5vw, 3.6rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 28px;
            animation: fade-in-up 0.8s ease-out 0.2s both;
        }

        .hero-highlight {
            background: linear-gradient(45deg, #204da4, #3da1de);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subheadline {
            font-size: clamp(1.05rem, 2vw, 1.4rem);
            opacity: 0.75;
            max-width: 680px;
            margin: 0 auto 44px;
            line-height: 1.7;
            font-weight: 400;
            animation: fade-in 0.8s ease-out 0.4s both;
        }

        /* Section subtitle */
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.6;
            margin-top: -40px;
            margin-bottom: 60px;
            font-weight: 400;
        }

        /* Results / Social Proof Section */
        .results {
            padding: 100px 20px;
            background: rgba(32, 77, 164, 0.04);
            border-top: 1px solid rgba(32, 77, 164, 0.12);
            border-bottom: 1px solid rgba(32, 77, 164, 0.12);
            position: relative;
            overflow: hidden;
        }

        .results::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(32, 77, 164, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .results-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* Stats bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(32, 77, 164, 0.25);
            border-radius: 16px;
            padding: 28px 40px;
            margin-bottom: 70px;
            backdrop-filter: blur(10px);
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
            min-width: 120px;
            padding: 12px 20px;
        }

        .stat-number {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.5rem, 3.5vw, 2.8rem);
            font-weight: 900;
            background: linear-gradient(45deg, #204da4, #3da1de);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.15;
            text-align: center;
        }

        .stat-label {
            font-size: 0.82rem;
            opacity: 0.6;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            text-align: center;
            font-weight: 500;
        }

        .stat-item:not(:last-child) {
            border-right: 1px solid rgba(32, 77, 164, 0.3);
        }

        /* Results grid */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 60px;
            align-items: start;
        }

        .result-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(32, 77, 164, 0.2);
            border-radius: 16px;
            padding: 32px 28px;
            backdrop-filter: blur(12px);
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #204da4, #3da1de, transparent);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .result-card:hover {
            transform: translateY(-8px);
            border-color: rgba(61, 161, 222, 0.4);
            box-shadow: 0 20px 50px rgba(32, 77, 164, 0.25);
            background: rgba(255, 255, 255, 0.06);
        }

        .result-card:hover::before {
            opacity: 1;
        }

        /* Card header: icon + tag */
        .result-card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        .result-icon-wrap {
            font-size: 2rem;
            width: 52px;
            height: 52px;
            background: rgba(32, 77, 164, 0.15);
            border: 1px solid rgba(32, 77, 164, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .result-tag {
            display: inline-block;
            background: rgba(32, 77, 164, 0.18);
            color: #3da1de;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 20px;
        }

        /* Prominent metric */
        .result-metric {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 900;
            background: linear-gradient(45deg, #3da1de, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.15;
            margin-bottom: 4px;
        }

        .result-metric-label {
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #3da1de;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .result-card h3 {
            font-family: 'Orbitron', monospace;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fff;
            line-height: 1.5;
        }

        .result-card p {
            line-height: 1.8;
            opacity: 0.68;
            font-size: 0.97rem;
            flex: 1;
        }

        /* Card footer */
        .result-card-footer {
            margin-top: 22px;
            padding-top: 16px;
            border-top: 1px solid rgba(32, 77, 164, 0.15);
        }

        .result-proof {
            font-size: 0.78rem;
            font-weight: 600;
            color: #3da1de;
            opacity: 0.75;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .results-disclaimer {
            text-align: center;
            font-size: 0.78rem;
            opacity: 0.4;
            max-width: 600px;
            margin: -30px auto 40px;
            line-height: 1.6;
        }

        .results-cta {
            text-align: center;
            padding: 10px 0;
        }

        .results-cta > p {
            font-size: 1.15rem;
            opacity: 0.65;
            margin-bottom: 26px;
        }

        /* CTA Banner Section */
        .cta-banner-section {
            background: linear-gradient(135deg, rgba(32, 77, 164, 0.18) 0%, rgba(61, 161, 222, 0.10) 100%);
            border-top: 1px solid rgba(32, 77, 164, 0.25);
            border-bottom: 1px solid rgba(32, 77, 164, 0.25);
            padding: 80px 20px;
            text-align: center;
        }

        .cta-banner-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-banner-content h3 {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.3rem, 3vw, 2rem);
            font-weight: 900;
            margin-bottom: 16px;
            color: #fff;
            line-height: 1.3;
        }

        .cta-banner-content p {
            font-size: 1.1rem;
            opacity: 0.65;
            margin-bottom: 34px;
        }

        /* About CTA */
        .about-cta {
            text-align: center;
            margin-top: 70px;
            padding: 10px 0 20px;
        }