/* Core Variables */
:root {
    --primary: #ff9b33;
    --primary-dark: #e67a00;
    --primary-light: #ffa84d;
    --secondary: #0088ff;
    --dark: #f8f8f8;
    --dark-alt: #e9e9e9;
    --light: #121212;
    --gray: #888;
    --gray-light: #ddd;
    --error: #ff3366;
    --success: #00cc66;
    
    --gradient-primary: linear-gradient(135deg, var(--primary), #ff5500);
    --gradient-blue: linear-gradient(135deg, #0066ff, #00ccff);
    --gradient-dark: linear-gradient(135deg, #202020, #000000);
    
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-xxl: 32px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 10px;
    
    --z-header: 100;
    --z-modal: 200;
    --z-tooltip: 300;
    --z-cursor: 1000;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: var(--z-cursor);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: var(--z-cursor);
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.year {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-primary);
    font-weight: 500;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 136, 0, 0.4);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    max-width: 60%;
}

.hero-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero .container {
    display: flex;
    align-items: center;
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.power-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.2) 0%, rgba(255, 136, 0, 0) 70%);
    opacity: 0.8;
    animation: pulse 3s infinite;
    z-index: -1;
}

.power-waves::before,
.power-waves::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.3) 0%, rgba(255, 136, 0, 0) 70%);
}

.power-waves::before {
    width: 80%;
    height: 80%;
    animation: pulse 3s infinite 0.5s;
}

.power-waves::after {
    width: 60%;
    height: 60%;
    animation: pulse 3s infinite 1s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--dark);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: var(--dark);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--dark);
    border-right: 2px solid var(--dark);
    transform: rotate(45deg);
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Product Section */
.product-section {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image svg {
    transform: scale(1.05);
}

/* SVG Animation Styles */
.product-image .power-indicators rect,
.product-image .power-indicators circle {
    animation: pulse-opacity 2s infinite alternate;
    transform-origin: center;
}

.product-image .power-indicators rect:nth-child(2),
.product-image .power-indicators circle:nth-child(2) {
    animation-delay: 0.2s;
}

.product-image .power-indicators rect:nth-child(3),
.product-image .power-indicators circle:nth-child(3) {
    animation-delay: 0.4s;
}

.product-image .power-indicators rect:nth-child(4) {
    animation-delay: 0.6s;
}

.product-image .power-indicators rect:nth-child(5) {
    animation-delay: 0.8s;
}

.product-image path[stroke="#ff8800"],
.product-image path[stroke="#30CFD0"] {
    opacity: 0.7;
    animation: pulse-stroke 3s infinite alternate;
}

.product-image path[stroke="#ff8800"] {
    animation-delay: 0.5s;
}

.product-image .connection-dots circle {
    animation: pulse-scale 3s infinite alternate;
}

.product-image .connection-dots line {
    animation: dash 3s infinite;
    stroke-dasharray: 5;
}

@keyframes pulse-opacity {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse-stroke {
    from {
        opacity: 0.4;
        stroke-width: 1px;
    }
    to {
        opacity: 0.8;
        stroke-width: 2px;
    }
}

@keyframes pulse-scale {
    from {
        transform: scale(0.8);
        opacity: 0.6;
    }
    to {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 25;
    }
}

.product-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 136, 0, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover .product-glow {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.feature-list li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.5rem;
}

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

.spec-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    transition: transform var(--transition-fast);
}

.spec-card:hover {
    transform: translateY(-5px);
}

.spec-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.spec-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.spec-text p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 0;
}

.product-cta {
    text-align: center;
}

.product-disclaimer {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Technology Section */
.technology-section {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 136, 0, 0.05), transparent 60%);
    pointer-events: none;
}

.tech-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.tech-animation {
    flex: 1;
    min-width: 300px;
}

.animation-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.transmitter-device,
.receiver-device {
    width: 120px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.transmitter-device::before,
.receiver-device::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    top: 50%;
    transform: translateY(-50%);
}

.transmitter-device::before {
    right: -25px;
}

.receiver-device::before {
    left: -25px;
}

.wave-animation {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wave {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 136, 0, 0.7), rgba(255, 136, 0, 0.3));
    border-radius: 2px;
}

.wave-1 {
    animation: wave 2s infinite;
}

.wave-2 {
    animation: wave 2s infinite 0.5s;
}

.wave-3 {
    animation: wave 2s infinite 1s;
}

@keyframes wave {
    0% {
        width: 0;
        opacity: 0.8;
        left: 20%;
    }
    100% {
        width: 60%;
        opacity: 0;
        left: 20%;
    }
}

.tech-details {
    flex: 1;
    min-width: 300px;
}

.tech-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
    border: 1px solid var(--glass-border);
}

.tab-btn:hover {
    background-color: rgba(255, 136, 0, 0.1);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
}

.tab-content {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    margin-bottom: 1rem;
}

.tab-pane p {
    margin-bottom: 1.5rem;
}

.tech-advantages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-advantages li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-advantages li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

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

.highlight-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform var(--transition-fast);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 136, 0, 0.2);
    position: absolute;
    top: 10px;
    right: 15px;
}

.highlight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.highlight-card p {
    color: var(--gray);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 136, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image .image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 136, 0, 0.2), rgba(0, 136, 255, 0.2));
    opacity: 0.7;
    mix-blend-mode: overlay;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    margin-bottom: 1rem;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 100px;
}

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

.stat-label {
    font-size: 1rem;
    color: var(--gray);
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.member-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member:hover .member-image::before {
    opacity: 1;
}

.member-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.member-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.partners-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.partner {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) opacity(0.7);
    transition: filter var(--transition-normal);
}

.partner:hover {
    filter: grayscale(0) opacity(1);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 80%, rgba(255, 136, 0, 0.05), transparent 60%),
                radial-gradient(circle at 20% 20%, rgba(0, 136, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-light);
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--dark);
    transition: border-color var(--transition-fast);
}

.form-group select {
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-group label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    font-size: 1rem;
    color: var(--gray);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -1.25rem;
    font-size: 0.85rem;
    color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group textarea {
    resize: none;
    min-height: 100px;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--dark);
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: var(--primary);
}

.social-link:hover svg {
    fill: white;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 136, 0, 0.2), rgba(0, 136, 255, 0.2));
    opacity: 0.5;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}

.map {
    width: 100%;
    height: 100%;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--dark-alt);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo {
    margin-bottom: 1rem;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.link-group {
    flex: 1;
    min-width: 150px;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-group a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0;
}

.language-selector select {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.language-selector select:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Get Started Button Styles */
/* From Uiverse.io by marcelodolza */ 
.area {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: var(--z-header);
    transition: all var(--transition-normal);
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

header .logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-left: 100px;
}

header .logo .highlight {
    color: var(--primary);
    margin-left: 0.25rem;
}

header nav {
    margin-right: 100px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Mobile menu toggle already defined in the updates below */

/* From Uiverse.io by marcelodolza */ 
.area {
    --ease-elastic: cubic-bezier(0.5, 2, 0.3, 0.8);
    --ease-elastic-2: cubic-bezier(0.5, -1, 0.3, 0.8);
    --primary: #ff8800;
    --rounded-max: 100px;
    --rounded-min: 10px;
    --h: 78px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
  
    .area-wrapper {
      position: relative;
      padding: 20px 5px;
      cursor: pointer;
  
      &:hover .wrapper {
        transform: translateY(0) scale(1);
  
        .case .mask {
          box-shadow:
            inset 8px -15px 15px -10px black,
            inset 10px -17px 12px -12px white,
            0 20px 50px -5px #111;
        }
  
        .part-2 .glass {
          box-shadow:
            inset 0 0 7px -4px white,
            inset 0 -10px 10px -8px rgba(255, 255, 255, 0.4),
            inset 8px -15px 15px -10px black,
            inset 8px -10px 12px -12px white,
            0 20px 50px -5px #111;
        }
      }
    }
  
    svg {
      overflow: visible;
    }
  }
  
  .wrapper {
    display: block;
    border-radius: 100px;
    position: relative;
    z-index: 2;
    transition: all 0.6s var(--ease-elastic);
    transform: translateY(-10px) scale(1.02);
  
    input {
      position: absolute;
      background: transparent;
      opacity: 0;
      width: 100%;
      height: 100%;
      inset: 0;
      z-index: 10;
      cursor: pointer;
      pointer-events: all;
      user-select: none;
      outline: none;
    }
  
    .button {
      background: transparent;
      display: flex;
      border: none;
      padding: 0;
      margin: 0;
  
      &::before {
        content: "";
        top: 0;
        bottom: 0;
        left: 25%;
        width: 70%;
        height: 100%;
        margin: auto;
        border-radius: 0 50% 50% 0;
        position: absolute;
        pointer-events: none;
        background: var(--primary);
        background: linear-gradient(
          to right,
          var(--primary) 0%,
          transparent 100%
        );
        z-index: 1;
        filter: blur(30px);
        mix-blend-mode: color-dodge;
        transition: all 1s ease 0.4s;
        opacity: 0;
      }
  
      &::after {
        content: "";
        width: 50px;
        height: 50px;
        top: 0;
        bottom: 0;
        left: 28%;
        margin: auto;
        border-radius: 50%;
        position: absolute;
        pointer-events: none;
        background: var(--primary);
        z-index: 2;
        filter: blur(15px);
        mix-blend-mode: color-dodge;
        transition: all 1s ease 0.4s;
        opacity: 0;
      }
  
      .part-1 {
        position: relative;
        z-index: 1;
        height: var(--h);
        width: 80px;
        border-radius: var(--rounded-max) var(--rounded-min) var(--rounded-min)
          var(--rounded-max);
  
        .line {
          position: absolute;
          top: 0;
          bottom: 0;
          right: -1px;
          transition: all 0.4s ease;
  
          &::before {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            content: "";
            width: 1px;
            background: white;
            box-shadow: 1px 0 10px 3px #ffa600;
            border-radius: 50%;
            height: 0%;
            margin: auto;
            animation: 1.8s line ease infinite;
          }
        }
  
        .screw {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          margin: auto;
          z-index: -1;
          overflow: hidden;
          padding: 10px 0;
  
          svg {
            width: auto;
            height: 60px;
  
            g {
              transform-origin: center;
            }
  
            .dot {
              color: #8e8c8b;
            }
          }
        }
  
        .case {
          height: var(--h);
          width: 80px;
          border-radius: inherit;
          transform: translateX(-40px);
          transition: all 0.9s var(--ease-elastic);
  
          .mask {
            position: absolute;
            overflow: hidden;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(
              to bottom,
              #2c2e31 0%,
              #31343e 20%,
              #212329 100%
            );
            box-shadow:
              inset 8px -15px 15px -10px black,
              inset 10px -17px 12px -12px white,
              0 30px 70px -5px #111;
            transition: all 0.9s var(--ease-elastic);
  
            &::before {
              content: "";
              position: absolute;
              border-radius: inherit;
              left: 30%;
              top: 23%;
              width: 100%;
              height: 30%;
              background: white;
              filter: blur(12px);
            }
  
            &::after {
              content: "";
              position: absolute;
              right: 0;
              top: 0;
              bottom: 0;
              width: 4px;
              background-color: rgba(255, 255, 255, 0.2);
              mix-blend-mode: overlay;
            }
          }
        }
      }
  
      .part-2 {
        position: relative;
        height: var(--h);
        width: 190px;
        border-radius: var(--rounded-min) var(--rounded-max) var(--rounded-max)
          var(--rounded-min);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.6s ease;
  
        .glass {
          position: relative;
          overflow: hidden;
          height: 100%;
          width: 100%;
          transition: all 0.9s var(--ease-elastic);
          border-radius: inherit;
          border-left: 1px solid rgba(0, 0, 0, 0.3);
          background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(0, 0, 0, 0.5) 100%
          );
          box-shadow:
            inset 0 0 7px -4px white,
            inset 0 -10px 10px -8px rgba(255, 255, 255, 0.4),
            inset 8px -15px 15px -10px black,
            inset 8px -10px 12px -12px white,
            0 30px 70px -5px #111;
  
          &::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10%;
            right: 14%;
            height: 70%;
            border-radius: 0 25px 0 0;
            background: linear-gradient(
              to bottom,
              rgba(255, 255, 255, 0.5) 0%,
              rgba(255, 255, 255, 0) 60%
            );
          }
  
          &::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 15%;
            right: 5%;
            height: 75%;
            border-radius: 0 30px 30px 0;
            box-shadow: inset -2px -6px 5px -5px rgba(255, 255, 255, 0.8);
            filter: blur(3px);
          }
  
          .glass-reflex {
            position: absolute;
            inset: 0;
            width: 70%;
            border-radius: 0 50% 50% 0;
            background: linear-gradient(
              to right,
              rgba(255, 255, 255, 0.03) 0%,
              rgba(255, 255, 255, 0.2) 100%
            );
            transform: translateX(-115%) skewX(30deg);
          }
  
          .glass-noise {
            position: absolute;
            inset: 0;
            opacity: 0.2;
          }
        }
  
        .path-glass {
          position: absolute;
          inset: 0;
          transition: opacity 0.6s linear;
          opacity: 0;
  
          path {
            stroke-dashoffset: 430;
            stroke-dasharray: 430 430;
            animation: 1.4s path-glass ease infinite;
          }
        }
  
        @keyframes path-glass {
          0% {
            stroke-dasharray: 430 430;
            color: greenyellow;
            opacity: 1;
            filter: blur(2px);
          }
          50% {
            stroke-dasharray: 860 430;
            opacity: 1;
            filter: blur(4px);
          }
          100% {
            stroke-dasharray: 860 430;
            color: var(--primary);
            opacity: 0;
          }
        }
  
        .filament {
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          margin: auto;
          width: auto;
          height: 26px;
          stroke-width: 2px;
          opacity: 0.3;
  
          path {
            transition: all 0.6s ease-in-out;
          }
        }
  
        .filament-on {
          opacity: 1;
          path {
            stroke-dashoffset: 100;
            stroke-dasharray: 100 100;
          }
        }
  
        .filament-blur {
          opacity: 1;
          filter: blur(8px);
          color: rgb(255, 208, 0);
          stroke-width: 10px;
        }
      }
    }
  }
  
  .text {
    transition: all 0.3s ease;
    transform: translateY(-4px);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.16em;
    position: absolute;
    inset: 0;
  }
  .text span {
    display: block;
    color: transparent;
    position: relative;
  }
  .text.state-1 span:nth-child(3) {
    margin-right: 5px;
  }
  .text.state-2 span:nth-child(4),
  .text.state-2 span:nth-child(6) {
    margin-right: 5px;
  }
  
  .text span::before,
  .text span::after {
    content: attr(data-label);
    position: absolute;
    font-size: 18px;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
  }
  .text span::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  
  .area-wrapper input:checked ~ .button .filament path {
    transition-delay: 0.6s;
  }
  
  .area-wrapper:hover input:checked ~ .button .filament path {
    stroke-dasharray: 100 0;
  }
  
  .area-wrapper input:checked ~ .button .part-1 .case {
    transform: translateX(0px);
    transition: all 1.25s var(--ease-elastic-2);
  }
  
  .area-wrapper:hover input:checked ~ .button::before,
  .area-wrapper:hover input:checked ~ .button::after,
  .area-wrapper:hover input:checked ~ .button .path-glass {
    opacity: 1;
  }
  
  .area-wrapper:hover .button .part-1 .line {
    opacity: 0;
  }
  
  .area-wrapper input:not(:checked) ~ .button .part-1 .line::before {
    box-shadow: 1px 0 10px 3px rgba(255, 220, 145, 0.4);
    background: rgb(140, 140, 140);
  }
  
  .area-wrapper:hover .glass-reflex {
    animation: reflex 0.6s ease;
  }
  
  .area-wrapper:hover .text span::before {
    animation: char-in 1s ease calc(var(--i) * 0.03s) forwards;
  }
  
  .area-wrapper:hover .text span::after,
  .area-wrapper input:not(:checked) ~ .button .text.state-1 span::before,
  .area-wrapper input:not(:checked) ~ .button .text.state-1 span::after,
  .area-wrapper input:checked ~ .button .text.state-2 span::before,
  .area-wrapper input:checked ~ .button .text.state-2 span::after {
    opacity: 0;
    animation: char-out 1.3s ease calc(var(--i) * 0.04s) backwards;
  }
  
  .area-wrapper input:not(:checked) ~ .button .part-1 .screw g {
    animation: pulse 0.8s ease calc(var(--i) * 0.1s) backwards;
  }
  .area-wrapper input:checked ~ .button .part-1 .screw g {
    animation: pulse-out 0.8s ease calc((5 - var(--i)) * 0.2s) backwards;
  }
  
  .area-wrapper input:not(:checked) ~ .button .part-1 .screw .dot {
    animation: dot 0.7s ease calc(var(--i) * 0.15s) backwards;
  }
  
  .area-wrapper input:checked ~ .button .part-1 .screw .dot {
    animation: dot-out 0.7s ease calc((3 - var(--i)) * 0.15s) forwards;
  }
  
  @keyframes line {
    0% {
      height: 0%;
      opacity: 1;
    }
    50% {
      height: 100%;
      opacity: 1;
    }
    100% {
      height: 140%;
      opacity: 0;
    }
  }
  
  @keyframes dot {
    30% {
      color: var(--primary);
      filter: blur(2px);
    }
  }
  
  @keyframes dot-out {
    40% {
      color: white;
      filter: blur(2px);
    }
  }
  
  @keyframes pulse {
    30% {
      transform: scaleY(0.8);
    }
  }
  
  @keyframes pulse-out {
    40% {
      transform: scaleY(0.8);
    }
  }
  
  @keyframes char-in {
    0% {
      opacity: 0;
      transform: scale(10) translateX(-25%);
      filter: blur(10px);
      color: rgb(0, 251, 255);
    }
    25% {
      transform: translateY(-15%);
      opacity: 1;
      filter: blur(1px);
      color: var(--primary);
    }
    50% {
      transform: translateY(7%);
      opacity: 1;
      filter: blur(0);
    }
    100% {
      transform: translateY(0);
      opacity: 1;
      filter: blur(0);
    }
  }
  @keyframes char-out {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-70%);
      opacity: 0;
      filter: blur(4px);
    }
  }
  
  @keyframes reflex {
    0% {
      transform: translateX(-115%);
    }
    100% {
      transform: translateX(140%);
    }
  }
  
  .noise {
    position: absolute;
    top: -25px;
    bottom: -20px;
    left: 0;
    right: 0;
    opacity: 0.07;
    mask-image: linear-gradient(
      transparent 5%,
      white 30%,
      white 70%,
      transparent 95%
    );
    filter: grayscale(1);
    pointer-events: none;
    z-index: 1;
  }
  
  .bg {
    position: absolute;
    inset: 0;
  
    svg {
      position: absolute;
      overflow: visible;
      inset: 0;
      z-index: 999;
    }
  
    &::before {
      content: "";
      border-radius: 50%;
      position: absolute;
      right: -25%;
      top: -25%;
      width: 50%;
      height: 50%;
      background-color: var(--primary);
      border-bottom: 10px solid white;
      border-left: 10px solid white;
      filter: blur(130px);
      z-index: 1;
    }
  
    .light-1 {
      position: absolute;
      right: 20%;
      top: -35%;
      height: 70%;
      width: 8%;
      border-radius: 0 0 50% 50%;
      background-color: white;
      transform: rotate(65deg);
      filter: blur(90px);
    }
    .light-2 {
      position: absolute;
      right: 20%;
      top: -25%;
      height: 90%;
      width: 2%;
      border-radius: 50%;
      background-color: var(--primary);
      transform: rotate(50deg);
      filter: blur(80px);
    }
  
    .light-3 {
      position: absolute;
      right: 0%;
      top: -20%;
      height: 80%;
      width: 3%;
      border-radius: 0 0 50% 50%;
      background-color: white;
      transform: rotate(35deg);
      filter: blur(80px);
    }
  }
   












  .buton-rap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.02) 1px,
        transparent 3px
      ),
      radial-gradient(circle at center, #11161f 0%, #08090b 100%);
    background-size:
      7px 7px,
      100% 100%;
    background-position:
      0 0,
      center center;
  }
  
  .butong {
    --radius: 18px;
    outline: none;
    cursor: pointer;
    font-size: 22px;
    background: transparent;
    border: 0;
    position: relative;
    width: 228px;
    height: 64px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    border-radius: var(--radius);
  }
  .butong::before,
  .butong::after {
    content: "";
    position: absolute;
    top: 40%;
    z-index: 0;
    height: 50px;
    width: 50%;
    background: black;
    filter: blur(10px);
    border-radius: 10px;
    opacity: 0.7;
    pointer-events: none;
    touch-action: none;
  }
  .butong::before {
    left: -2px;
    transform: rotate(-15deg);
  }
  .butong::after {
    right: -2px;
    transform: rotate(15deg);
  }
  
  .glowmf {
    position: absolute;
    inset: 0;
    box-shadow: 0 0 200px 5px rgba(255, 208, 0, 0.4);
    pointer-events: none;
    touch-action: none;
  }
  
  .glowmf::before {
    content: "";
    position: absolute;
    margin: auto;
    background: rgba(160, 158, 122, 0.05);
    border-radius: 50%;
    filter: blur(50px);
    inset: 0;
    height: 500px;
    width: 150px;
    transform: rotate(-45deg);
  }
  
  .mfwave {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    margin: auto;
    transition: all 0.3s linear;
  }
  .mfwave::before,
  .mfwave::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.5px solid rgba(255, 208, 0, 0.4);
    inset: 0;
    filter: blur(2px);
    border-radius: 30px;
  }
  .butong:focus .mfwave::before,
  .butong:focus .mfwave::after {
    animation: wave 2.2s linear;
  }
  .butong:focus .mfwave::after {
    animation-delay: 0.35s;
  }
  @keyframes wave {
    0%,
    40% {
      transform: scale(1);
      opacity: 0;
      box-shadow:
        0 0 30px 10px black,
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
    60% {
      transform: scale(1.2, 1.5);
      opacity: 1;
    }
    100% {
      transform: scale(1.6, 2);
      opacity: 0;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }
  }
  
  .bgmf {
    position: absolute;
    inset: -7px;
    border-radius: calc(var(--radius) * 1.35);
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  }
  .bgmf::before,
  .bgmf::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: calc(var(--radius) * 1.35);
  }
  .bgmf::after {
    background: black;
    box-shadow:
      inset 0 0 0 1px rgba(92, 83, 54, 0.4),
      inset -2px 0 0 -1px rgba(92, 83, 54, 1),
      inset 0 -2px 0 -1px rgba(92, 83, 54, 0.1);
  }
  
  .bgmf .mfshine {
    transition: all 0.5s linear;
    color: rgba(255, 239, 168, 0.85);
  }
  .butong:active .bgmf .mfshine {
    color: rgba(42, 255, 205, 0.85);
  }
  .bgmf .mfshine::before {
    content: "";
    position: absolute;
    z-index: 2;
    background: currentColor;
    width: 10px;
    height: 10px;
    opacity: 0.3;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    filter: blur(2px);
    transform: translateY(0) scale(0);
    animation: shine 2.2s linear infinite;
  }
  @keyframes shine {
    0% {
      transform: translateY(0) scale(0);
    }
    20% {
      transform: translateY(0) scale(25);
    }
    100% {
      transform: translateY(-280px) scale(20, 18);
    }
  }
  
  .mfoutline {
    position: absolute;
    overflow: hidden;
    inset: 0;
    outline: none;
    border-radius: inherit;
    transition: all 0.4s ease;
  }
  .mfoutline::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 120px;
    height: 300px;
    margin: auto;
    background: linear-gradient(
      to right,
      transparent 0%,
      #ffea00 50%,
      transparent 100%
    );
    animation: spin 1.7s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .circuit {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    width: 392px;
    height: auto;
    margin-top: -13px;
    pointer-events: none;
    touch-action: none;
  }
  .circuit-bg {
    opacity: 0.5;
  }
  
  .circuit-path {
    opacity: 0;
    transition: opacity 0.4s linear;
  }
  
  .circuit-path .circuit-side path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: line-1 1.7s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
  }
  @keyframes line-1 {
    0% {
      stroke-dashoffset: 200;
      filter: blur(2px) brightness(2);
    }
    70% {
      stroke-dashoffset: 0;
    }
    100% {
      opacity: 0;
    }
  }
  .circuit-path .circuit-bottom path {
    stroke-dasharray: 250;
    stroke-dashoffset: -250;
    animation: line-2 2.2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
  }
  @keyframes line-2 {
    0% {
      stroke-dashoffset: -250;
      filter: blur(2px) brightness(2);
    }
    70% {
      stroke-dashoffset: 0;
    }
    100% {
      opacity: 0;
    }
  }
  .circuit-path-2 .circuit-side path {
    animation-duration: 0.7s;
  }
  .circuit-path-2 .circuit-bottom path {
    animation-duration: 0.9s;
  }
  .circuit-path-2 .circuit-side path,
  .circuit-path-2 .circuit-bottom path {
    filter: sepia(50%) saturate(500%) hue-rotate(90deg) brightness(100%)
      contrast(100%) drop-shadow(0 0 0 white);
  }
  .butong .circuit-path-1,
  .butong:hover .circuit-path-2 {
    opacity: 1;
  }
  .butong:hover .circuit-path-1 {
    opacity: 0;
  }
  .butong:focus .mfwrap:hover .circuit-path-1 {
    opacity: 1;
  }
  .butong:focus .mfwrap:hover .circuit-path-2,
  .butong:active .mfwrap:hover .circuit-path-1 {
    opacity: 0;
  }
  .butong:active .mfwrap:hover .circuit-path-2 {
    opacity: 1;
  }
  
  .mfwrap-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: all 0.3s ease;
  }
  .butong:active .mfwrap-content {
    transform: scale(0.97, 0.96);
  }
  .mfcontent {
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    padding: 2px;
    background: #fedc83;
    box-shadow:
      inset 0 0 16px 6px #c88a00,
      inset 0 -10px 10px -8px #ffac82;
    position: relative;
  }
  .butong:hover .mfcontent {
    animation: shake 0.5s linear infinite;
  }
  @keyframes shake {
    15% {
      transform: translate(1px, 1px);
    }
    30% {
      transform: translate(0, -1px);
    }
    45% {
      transform: translate(1px, -1px);
    }
    55% {
      transform: translate(-1px, 1px);
    }
    70% {
      transform: translate(1px, 0);
    }
    85% {
      transform: translate(-1px, -1px);
    }
  }
  .butong:focus .mfcontent {
    animation: shake-out 1.9s ease forwards;
  }
  @keyframes shake-out {
    5% {
      transform: translate(2px, 2px);
    }
    10% {
      transform: translate(0, -2px);
    }
    15% {
      transform: translate(2px, -2px);
    }
    20% {
      transform: translate(-2px, 2px);
    }
    25% {
      transform: translate(2px, 0);
    }
    30% {
      transform: translate(-2px, -2px);
    }
    35% {
      transform: translate(2px, 2px);
    }
    40% {
      transform: translate(0, -2px);
    }
    45% {
      transform: translate(2px, -2px);
    }
    48% {
      transform: scale(0.9);
    }
    100% {
      transform: translate(0);
    }
  }
  
  .mfglyphs {
    pointer-events: none;
    touch-action: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    height: 100%;
    gap: 10px;
    border-radius: calc(var(--radius) * 0.85);
    font-weight: 600;
    background: #fedc83;
    box-shadow:
      inset 0 0 16px 6px #c88a00,
      0 0 10px 10px rgba(0, 0, 0, 0.2),
      inset 0 -10px 10px -8px rgb(255, 89, 0);
    transition: all 0.3s ease;
  }
  
  .mftext {
    transition: all 0.3s ease;
    transform: translateY(-1px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mftext span {
    display: block;
    color: transparent;
    position: relative;
  }
  .mftext span:nth-child(5) {
    margin-right: 5px;
  }
  .mftext span {
    animation: char-in 1.2s ease backwards calc(var(--i) * 0.03s);
  }
  .mftext span::before,
  .mftext span::after {
    content: attr(data-label);
    position: absolute;
    color: black;
    text-shadow: 0 2px 3px #dabc45;
    left: 0;
  }
  .mftext span::before {
    opacity: 0;
    transform: translateY(-100%);
  }
  .butong:hover .mftext span::before {
    animation: char-in 0.7s ease calc(var(--i) * 0.03s);
  }
  .butong:hover .mftext span::after {
    opacity: 1;
    animation: char-out 0.7s ease calc(var(--i) * 0.03s) backwards;
  }
  .butong:focus .mftext span {
    animation: char-out-2 0.7s ease forwards calc((var(--i)) * -0.02s);
  }
  @keyframes char-in {
    0% {
      opacity: 0;
      transform: translateY(60%);
      filter: blur(20px);
      color: blue;
    }
    30% {
      transform: translateY(-15%);
      opacity: 1;
      filter: blur(1px);
      color: #ff5100;
    }
    60% {
      transform: translateY(5%);
      opacity: 1;
      filter: blur(0);
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes char-out {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-70%);
      opacity: 0;
      filter: blur(4px);
    }
  }
  @keyframes char-out-2 {
    0%,
    50% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-70%);
      opacity: 0;
      filter: blur(4px);
    }
  }
  
  .icon-1 svg,
  .icon-2 svg {
    margin-top: 3px;
  }
  .butong .icon-2 {
    position: absolute;
    filter: blur(5px);
    opacity: 0;
    animation: icon-2-out 0.6s ease-in forwards;
  }
  @keyframes icon-2-out {
    0% {
      transform: translateX(0);
      filter: blur(0);
      opacity: 1;
    }
    100% {
      transform: translateX(100px);
      filter: blur(5px);
      opacity: 0;
    }
  }
  .butong .icon-2 svg {
    height: 28px;
    width: auto;
    overflow: visible;
  }
  .butong .icon-2 .cloud {
    animation: cloud 6s linear infinite 0.3s;
    opacity: 0;
    filter: blur(10px);
    animation-play-state: paused;
  }
  .butong .icon-2 .cloud-2 {
    animation-delay: 1.5s;
  }
  .butong:focus .icon-2 .cloud {
    animation-play-state: running;
  }
  @keyframes cloud {
    0%,
    20% {
      transform: translateX(-140px);
      opacity: 0;
    }
    70% {
      transform: translateX(0);
      opacity: 0.7;
    }
    100% {
      transform: translateX(140px);
      opacity: 0;
    }
  }
  .butong:focus .icon-2 {
    animation: icon-2-in 1.5s cubic-bezier(0.5, -0.15, 0.3, 1) 0.8s forwards;
  }
  @keyframes icon-2-in {
    0% {
      transform: translateY(20px);
      filter: blur(5px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      filter: blur(0);
      opacity: 1;
    }
  }
  .butong:focus .icon-2 .check {
    stroke-dasharray: 110;
    stroke-dashoffset: 110;
    animation: check 1.5s cubic-bezier(0.5, -0.15, 0.3, 1) forwards 1.2s;
  }
  @keyframes check {
    0% {
      stroke-dashoffset: 110;
      stroke-width: 5px;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  .butong .cloud-mask {
    animation: cloud-mask 2.2s ease infinite;
  }
  @keyframes cloud-mask {
    0%,
    5% {
      transform: translateX(0);
      opacity: 0.5;
    }
    65%,
    100% {
      transform: translateX(640px);
      opacity: 1;
    }
  }
  #cloud-mask-bg {
    color: #ffefa8;
  }
  .butong:active #cloud-mask-bg {
    color: #90ffeb;
  }
  
  .icon-1 {
    margin-right: -8px;
    animation: icon-1-in 1s cubic-bezier(0.5, -0.15, 0.3, 1.4) forwards;
  }
  @keyframes icon-1-in {
    0% {
      transform: translateX(-230px) scale(2.5) rotate(-130deg);
      filter: blur(4px);
    }
    80% {
      transform: translateX(5px);
      filter: blur(3px);
      color: #ffd15b;
    }
    100% {
      transform: translate(0);
    }
  }
  .icon-1:active path:nth-child(1) {
    animation: none;
  }
  .butong:focus .icon-1 {
    animation: icon-1-out 1.5s ease-in-out forwards;
  }
  @keyframes icon-1-out {
    0% {
      transform: translate(0);
    }
    40% {
      transform: translateX(-250px) scale(2) rotate(-90deg);
      filter: blur(5px);
    }
    40.0001% {
      transform: translate(-80px, -80px) scale(4);
      filter: contrast(2);
      opacity: 1;
      color: white;
      background-color: transparent;
      box-shadow: none;
    }
    70%,
    97% {
      transform: translate(-80px, 70px) scale(1);
      box-shadow: 0 0 50px 100px white;
      background-color: white;
      border-radius: 50%;
    }
    100% {
      opacity: 0;
    }
  }
  .icon-1 svg {
    height: 32px;
    width: auto;
    overflow: visible;
    fill: #3a3631;
  }
  .icon-1 .stroke {
    stroke-dasharray: 90;
    stroke-dashoffset: -90;
    filter: blur(2px);
    animation: icon-stroke 3s linear infinite;
  }
  @keyframes icon-stroke {
    0% {
      stroke-dashoffset: -90;
    }
    100% {
      stroke-dashoffset: 90;
    }
  }
  .icon-1 .stroke:nth-child(1) {
    stroke: #00ffff;
    stroke-width: 4px;
  }
  .icon-1 .stroke:nth-child(2) {
    stroke: #ff7700;
    stroke-width: 3px;
    animation-delay: 1.5s;
  }
  .icon-1 .lightnings > g {
    transform: translate(15px, -15px);
  }
  .icon-1 .lightning {
    transform-origin: center;
    animation: lightning-1 0.9s linear infinite;
  }
  .icon-1 .lightning:last-child {
    animation: lightning-1 1.1s linear infinite 0.2s;
  }
  .icon-1 .lightning-2 {
    transform-origin: center;
    animation: lightning-2 0.9s linear infinite 0.2s;
  }
  .icon-1 .lightning-2:last-child {
    animation: lightning-2 1.1s linear infinite 0.4s;
  }
  .icon-1 g {
    opacity: 0;
    transition: 0.4s linear;
  }
  .butong:hover .icon-1 g {
    opacity: 1;
  }
  @keyframes lightning-1 {
    0% {
      transform: translate(30px, -30px);
      filter: blur(10px);
      opacity: 0;
      color: white;
    }
    50% {
      transform: translate(0);
      filter: blur(0);
      opacity: 1;
      color: #acacac;
    }
    100% {
      transform: translate(-30px, 30px);
      filter: blur(10px);
      opacity: 0;
      color: white;
    }
  }
  @keyframes lightning-2 {
    0% {
      transform: translate(30px, -30px);
      filter: blur(10px);
      opacity: 0;
    }
    50% {
      transform: translate(0);
      filter: blur(0);
      opacity: 1;
      color: white;
    }
    100% {
      transform: translate(-30px, 30px);
      filter: blur(10px);
      opacity: 0;
    }
  }
  
  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    margin-left: auto;
    margin-right: 1rem;
  }
  
  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
    transition: transform var(--transition-fast);
  }
  
  @media (max-width: 576px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    header {
        justify-content: space-between;
        padding: 1rem;
    }
    
    .logo {
        margin-left: 1rem !important;
    }
    
    nav {
        display: none;
        background-color: var(--light);
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav a {
        padding: 0.5rem 0;
        display: block;
    }
  }
  
  /* Animation classes for scroll animations */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .animate-on-scroll.fade-in {
    transform: none;
  }
  
  .animate-on-scroll.slide-left {
    transform: translateX(50px);
  }
  
  .animate-on-scroll.slide-right {
    transform: translateX(-50px);
  }
  
  .animate-on-scroll.scale-up {
    transform: scale(0.8);
  }
  
  body.no-animations .animate-on-scroll {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  