:root {
    /* Main color palette (Green/Blue Neo) */
    --fl-bg-primary: #0b0f0c;
    --fl-bg-secondary: #101a14;
    --fl-bg-tertiary: #11251a;
    --fl-accent-primary: #00C853;
    --fl-accent-secondary: #2979FF;
    --fl-accent-tertiary: #7C4DFF;
    --fl-text-primary: #E8F5E9;
    --fl-text-secondary: #B2DFDB;
    --fl-text-muted: #7DA69A;
    /* Neon glow effects */
    --fl-glow-cyan: 0 0 10px rgba(0, 200, 83, 0.7), 0 0 20px rgba(0, 200, 83, 0.5), 0 0 30px rgba(0, 200, 83, 0.3);
    --fl-glow-purple: 0 0 10px rgba(41, 121, 255, 0.7), 0 0 20px rgba(41, 121, 255, 0.5), 0 0 30px rgba(41, 121, 255, 0.3);
    --fl-glow-blue: 0 0 10px rgba(124, 77, 255, 0.7), 0 0 20px rgba(124, 77, 255, 0.5), 0 0 30px rgba(124, 77, 255, 0.3);
    /* Gradients */
    --fl-gradient-primary: linear-gradient( 135deg, var(--fl-accent-primary), var(--fl-accent-tertiary));
    --fl-gradient-secondary: linear-gradient( 135deg, var(--fl-accent-secondary), var(--fl-accent-tertiary));
    --fl-gradient-dark: linear-gradient( 135deg, var(--fl-bg-secondary), var(--fl-bg-tertiary));
    /* Typography */
    --fl-font-primary: 'Rajdhani', sans-serif;
    --fl-font-secondary: 'Share Tech Mono', monospace;
    --fl-font-size-base: 16px;
    /* Animation Durations */
    --fl-anim-fast: 0.2s;
    --fl-anim-medium: 0.5s;
    --fl-anim-slow: 1s;
    /* Layout */
    --fl-header-height: 80px;
    --fl-container-width: 1320px;
    /* Z-index layers */
    --fl-z-background: -1;
    --fl-z-default: 1;
    --fl-z-header: 100;
    --fl-z-modal: 200;
    --fl-z-overlay: 300;
    --fl-z-popup: 400;
}


/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--fl-font-size-base);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--fl-font-primary);
    background-color: var(--fl-bg-primary);
    color: var(--fl-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--fl-accent-primary);
    text-decoration: none;
    transition: all var(--fl-anim-fast) ease;
    position: relative;
}

a:hover {
    color: var(--fl-accent-secondary);
    text-shadow: var(--fl-glow-cyan);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fl-font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--fl-text-primary);
}

h1 {
    font-size: 4rem;
    background: linear-gradient( to right, var(--fl-accent-primary), var(--fl-accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

button,
.fl-btn {
    background: var(--fl-accent-primary);
    color: var(--fl-bg-primary);
    border: none;
    padding: 12px 28px;
    font-family: var(--fl-font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--fl-anim-medium) ease;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    letter-spacing: 1px;
    /* box-shadow: 0 0 15px rgba(0, 254, 252, 0.5); */
}

button::before,
.fl-btn::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: all var(--fl-anim-slow) ease;
}

button:hover,
.fl-btn:hover {
    background: var(--fl-accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
}

button:hover::before,
.fl-btn:hover::before {
    left: 100%;
}


/* Container and Grid System */

.fl-container {
    width: 100%;
    max-width: var(--fl-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.fl-grid {
    display: grid;
    gap: 30px;
}

.fl-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.fl-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fl-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.fl-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


/* Section Dividers */

.fl-divider {
    height: 120px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.fl-divider-angled {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: var(--fl-bg-secondary);
}

.fl-divider-wave {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' style='fill:%2312121f;'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    height: 150px;
}

.fl-divider-glitch {
    height: 50px;
    background-image: repeating-linear-gradient( to right, var(--fl-accent-primary), var(--fl-accent-secondary) 10px, var(--fl-bg-tertiary) 10px, var(--fl-bg-tertiary) 20px);
}


/* ====== ANIMATIONS ====== */

@keyframes fl-neon-pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 5px var(--fl-accent-primary), 0 0 10px var(--fl-accent-primary);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 15px var(--fl-accent-primary), 0 0 30px var(--fl-accent-primary);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 5px var(--fl-accent-primary), 0 0 10px var(--fl-accent-primary);
    }
}

@keyframes fl-digital-rain {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}

@keyframes fl-glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-5px, 5px);
    }
    40% {
        transform: translate(-5px, -5px);
    }
    60% {
        transform: translate(5px, 5px);
    }
    80% {
        transform: translate(5px, -5px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes fl-float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes fl-rotate-3d {
    0% {
        transform: rotate3d(1, 1, 1, 0deg);
    }
    100% {
        transform: rotate3d(1, 1, 1, 360deg);
    }
}

@keyframes fl-code-typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes fl-rocket-launch {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-50vh) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}


/* ====== HEADER STYLES ====== */

.fl-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    z-index: var(--fl-z-header);
    transition: all var(--fl-anim-medium) ease;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 254, 252, 0.2);
}

.fl-header.fl-scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 18, 0.95);
    box-shadow: 0 0 20px rgba(0, 254, 252, 0.2);
}

.fl-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fl-logo {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--fl-text-primary);
    text-shadow: 0 0 10px var(--fl-accent-primary);
}

.fl-logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    perspective: 1000px;
}

.fl-logo-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(30deg);
    animation: fl-rotate-3d 20s infinite linear;
}

.fl-logo-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 254, 252, 0.3);
    border: 1px solid var(--fl-accent-primary);
    box-shadow: 0 0 10px var(--fl-accent-primary);
}

.fl-nav {
    display: flex;
    gap: 30px;
}

.fl-nav-link {
    color: var(--fl-text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    overflow: hidden;
}

.fl-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--fl-gradient-primary);
    transform: translateX(-100%);
    transition: transform var(--fl-anim-medium) ease;
}

.fl-nav-link::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--fl-accent-primary);
    opacity: 0;
    transform: translateY(100%);
    transition: transform var(--fl-anim-medium) ease, opacity var(--fl-anim-medium) ease;
    text-shadow: var(--fl-glow-cyan);
}

.fl-nav-link:hover {
    color: transparent;
}

.fl-nav-link:hover::before {
    transform: translateX(0);
}

.fl-nav-link:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.fl-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--fl-text-primary);
    font-size: 0;
    cursor: pointer;
    padding: 5px;
}


/* ====== HERO SECTION ====== */

.fl-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--fl-header-height);
}

.fl-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--fl-z-background);
    background-image: radial-gradient( circle at center, var(--fl-bg-tertiary) 0%, var(--fl-bg-primary) 70%);
}

.fl-hero-energy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100%" height="1" y="50" fill="%2300FEFC" opacity="0.5" /></svg>');
    animation: fl-digital-rain 20s linear infinite;
    z-index: var(--fl-z-background);
    opacity: 0.3;
}

.fl-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: linear-gradient( to right, rgba(255, 0, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 0, 255, 0.05) 1px, transparent 1px);
    z-index: var(--fl-z-background);
}

.fl-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.fl-hero-text {
    flex: 1;
    max-width: 600px;
}

.fl-hero-tagline {
    font-family: var(--fl-font-secondary);
    font-size: 1.2rem;
    color: var(--fl-accent-primary);
    margin-bottom: 1.5rem;
    text-shadow: var(--fl-glow-cyan);
    letter-spacing: 2px;
}

.fl-hero-heading {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 254, 252, 0.3);
}

.fl-hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--fl-text-secondary);
}

.fl-hero-cta {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    background: linear-gradient( 45deg, var(--fl-accent-primary), var(--fl-accent-tertiary));
    border: none;
    color: var(--fl-bg-primary);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 3px;
    box-shadow: var(--fl-glow-cyan);
}

.fl-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--fl-accent-secondary);
    animation: fl-scanner-line 2s infinite;
    z-index: -1;
}

@keyframes fl-scanner-line {
    0% {
        top: 0;
        opacity: 1;
    }
    50% {
        top: 100%;
        opacity: 0.5;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

.fl-hero-visual {
    flex: 1;
    position: relative;
    perspective: 1000px;
    width: 100%;
    height: 100%;
}

.fl-hero-visual img {
    width: 75%;
    height: 100%;
    object-fit: cover;
}

.fl-neural-network {
    width: 100%;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: fl-float 6s ease-in-out infinite;
}

.fl-node {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(0, 254, 252, 0.1);
    border: 2px solid var(--fl-accent-primary);
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: 0 0 15px var(--fl-accent-primary);
    animation: fl-neon-pulse 3s infinite;
}

.fl-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--fl-accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--fl-accent-primary);
}

.fl-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient( 90deg, var(--fl-accent-primary), var(--fl-accent-secondary));
    transform-origin: 0% 50%;
    box-shadow: 0 0 10px var(--fl-accent-primary);
}


/* ====== KI-LAB SECTION ====== */

.fl-kilab {
    background: var(--fl-bg-secondary);
    position: relative;
}

.fl-kilab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient( circle at 20% 30%, rgba(127, 17, 224, 0.15) 0%, transparent 50%), radial-gradient( circle at 80% 70%, rgba(0, 254, 252, 0.15) 0%, transparent 50%);
    z-index: var(--fl-z-background);
}

.fl-kilab-header {
    text-align: center;
    margin-bottom: 60px;
}

.fl-kilab-tagline {
    color: var(--fl-accent-primary);
    font-family: var(--fl-font-secondary);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: var(--fl-glow-cyan);
}

.fl-kilab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.fl-code-editor {
    background: rgba(18, 18, 31, 0.8);
    border: 1px solid rgba(0, 254, 252, 0.3);
    border-radius: 5px;
    padding: 20px;
    font-family: var(--fl-font-secondary);
    font-size: 0.9rem;
    color: var(--fl-text-primary);
    line-height: 1.6;
    box-shadow: 0 0 20px rgba(0, 254, 252, 0.2);
    position: relative;
    overflow: hidden;
}

.fl-code-editor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: rgba(10, 10, 18, 0.8);
    border-bottom: 1px solid rgba(0, 254, 252, 0.3);
}

.fl-code-editor::after {
    content: 'KI-Lab Editor';
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--fl-accent-primary);
    text-shadow: var(--fl-glow-cyan);
}

.fl-editor-controls {
    position: absolute;
    top: 10px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.fl-editor-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
}

.fl-editor-btn:nth-child(1) {
    background: #ff5f56;
}

.fl-editor-btn:nth-child(2) {
    background: #ffbd2e;
}

.fl-editor-btn:nth-child(3) {
    background: #27c93f;
}

.fl-code-content {
    margin-top: 40px;
    white-space: pre;
}

.fl-code-line {
    display: block;
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}

.fl-code-line::before {
    content: attr(data-line);
    position: absolute;
    left: 0;
    color: var(--fl-text-muted);
    font-size: 0.8rem;
    width: 20px;
    text-align: right;
}

.fl-code-keyword {
    color: #ff79c6;
}

.fl-code-function {
    color: #50fa7b;
}

.fl-code-string {
    color: #f1fa8c;
}

.fl-code-comment {
    color: #6272a4;
}

.fl-code-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--fl-accent-primary);
    animation: fl-blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes fl-blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.fl-algorithm-vis {
    position: relative;
    height: 400px;
    perspective: 1000px;
}

.fl-algorithm-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: fl-rotate-y 30s infinite linear;
}

@keyframes fl-rotate-y {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.fl-algorithm-node {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--fl-bg-tertiary);
    border: 2px solid var(--fl-accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--fl-accent-primary);
    box-shadow: 0 0 15px rgba(0, 254, 252, 0.5);
}

.fl-algorithm-link {
    position: absolute;
    height: 2px;
    background: var(--fl-accent-primary);
    transform-origin: 0% 50%;
}


/* ====== FINTECH SIMULATOR SECTION ====== */

.fl-simulator {
    background: var(--fl-bg-primary);
    position: relative;
}

.fl-simulator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><circle cx="5" cy="5" r="0.5" fill="%23FF00FF" opacity="0.3" /></svg>');
    z-index: var(--fl-z-background);
    opacity: 0.2;
}

.fl-simulator-header {
    text-align: center;
    margin-bottom: 60px;
}

.fl-simulator-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.fl-chart-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #0a0a12;
    border-radius: 8px;
    border: 1px solid rgba(0, 254, 252, 0.3);
    box-shadow: 0 0 15px rgba(0, 254, 252, 0.2);
    padding: 20px;
    overflow: hidden;
}

.fl-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 254, 252, 0.2);
    padding-bottom: 10px;
}

.fl-chart-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    color: #e0e0e8;
}

.fl-chart-value {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.4rem;
    color: #00fefc;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 254, 252, 0.7);
}

.fl-chart-value.up {
    color: #00ff7f;
}

.fl-chart-value.down {
    color: #ff4444;
}

.fl-chart-canvas {
    position: relative;
    width: 100%;
    height: 300px;
}

.fl-chart-canvas canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fl-chart-y-axis {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.fl-chart-y-label {
    color: rgba(224, 224, 232, 0.5);
    font-size: 0.7rem;
    font-family: 'Share Tech Mono', monospace;
}

.fl-chart-x-axis {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.fl-chart-x-label {
    color: rgba(224, 224, 232, 0.5);
    font-size: 0.7rem;
    font-family: 'Share Tech Mono', monospace;
    transform: translateY(20px);
}

.fl-chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient( ellipse at center, rgba(10, 10, 18, 0) 0%, rgba(10, 10, 18, 0.2) 80%, rgba(10, 10, 18, 0.4) 100%);
}

.fl-chart-crosshair {
    position: absolute;
    display: none;
    pointer-events: none;
}

.fl-chart-crosshair-x {
    width: 1px;
    height: 100%;
    background: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.8);
}

.fl-chart-crosshair-y {
    width: 100%;
    height: 1px;
    background: rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.8);
}

.fl-chart-tooltip {
    position: absolute;
    display: none;
    background: rgba(10, 10, 18, 0.9);
    border: 1px solid rgba(0, 254, 252, 0.5);
    border-radius: 4px;
    padding: 8px;
    font-family: 'Share Tech Mono', monospace;
    color: #e0e0e8;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(0, 254, 252, 0.3);
    z-index: 10;
    pointer-events: none;
}

.fl-chart-tooltip-value {
    color: #00fefc;
    font-weight: bold;
}

.fl-chart-tooltip-date {
    font-size: 0.8rem;
    color: rgba(224, 224, 232, 0.7);
}

.fl-chart-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient( to top, rgba(0, 254, 252, 0.1), rgba(0, 254, 252, 0));
    filter: blur(5px);
}

.fl-chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(5, 1fr);
}

.fl-chart-grid-line-x,
.fl-chart-grid-line-y {
    border: 0.5px dashed rgba(224, 224, 232, 0.1);
}

.fl-chart-grid-line-x {
    width: 100%;
    height: 1px;
}

.fl-chart-grid-line-y {
    width: 1px;
    height: 100%;
}

.fl-trades {
    background: rgba(10, 10, 18, 0.7);
    border: 1px solid rgba(0, 254, 252, 0.3);
    border-radius: 8px;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.fl-trades-header {
    border-bottom: 1px solid rgba(0, 254, 252, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.fl-trades-title {
    font-family: 'Share Tech Mono', monospace;
    color: #e0e0e8;
    font-size: 1.2rem;
    margin: 0;
}

.fl-trade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid;
    animation: fadeIn 0.3s ease-out;
}

.fl-trade-item.buy {
    border-left-color: #00ff7f;
}

.fl-trade-item.sell {
    border-left-color: #ff4444;
}

.fl-trade-info {
    display: flex;
    flex-direction: column;
}

.fl-trade-type {
    font-weight: bold;
    margin-bottom: 3px;
}

.fl-trade-item.buy .fl-trade-type {
    color: #00ff7f;
}

.fl-trade-item.sell .fl-trade-type {
    color: #ff4444;
}

.fl-trade-time {
    font-size: 0.8rem;
    color: rgba(224, 224, 232, 0.5);
}

.fl-trade-amount {
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
}

.fl-trade-price {
    font-size: 0.9rem;
    color: #00fefc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fl-chart-periods {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.fl-chart-period-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 254, 252, 0.2);
    color: rgba(224, 224, 232, 0.7);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fl-chart-period-btn:hover {
    background: rgba(0, 254, 252, 0.1);
    border-color: rgba(0, 254, 252, 0.5);
}

.fl-chart-period-btn.active {
    background: rgba(0, 254, 252, 0.2);
    border-color: rgba(0, 254, 252, 0.7);
    color: #00fefc;
    box-shadow: 0 0 10px rgba(0, 254, 252, 0.3);
}


/* ====== CAREER ROCKET SECTION ====== */

.fl-career {
    background: linear-gradient( 135deg, var(--fl-bg-tertiary) 0%, var(--fl-bg-primary) 100%);
    position: relative;
}

.fl-career::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient( circle at 30% 40%, rgba(0, 254, 252, 0.1) 0%, transparent 50%), radial-gradient( circle at 70% 60%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    z-index: var(--fl-z-background);
}

.fl-career-header {
    text-align: center;
    margin-bottom: 60px;
}

.fl-career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.fl-career-map {
    position: relative;
    height: 100%;
    min-height: 800px;
    perspective: 800px;
}

.fl-roadmap {
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 31, 0.6);
    border: 1px solid rgba(0, 254, 252, 0.3);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    /* transform-style: preserve-3d; */
    /* transform: rotateX(20deg); */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.fl-milestone {
    position: absolute;
    left: 100px;
    transform: translateX(-50%) translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--fl-bg-primary);
    border: 3px solid var(--fl-accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--fl-accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fl-accent-primary);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.fl-milestone::after {
    content: '';
    position: absolute;
    left: 100%;
    width: 150px;
    height: 2px;
    background: var(--fl-accent-primary);
    box-shadow: 0 0 10px var(--fl-accent-primary);
}

.fl-milestone-content {
    position: absolute;
    left: calc(100px + 180px);
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid var(--fl-accent-primary);
    border-radius: 5px;
    padding: 15px;
    width: 220px;
    box-shadow: 0 0 15px rgba(0, 254, 252, 0.3);
}

.fl-milestone-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--fl-accent-primary);
}

.fl-milestone-desc {
    font-size: 0.9rem;
    color: var(--fl-text-secondary);
    margin-bottom: 0;
}

.fl-rocket {
    position: absolute;
    bottom: 10%;
    left: 100px;
    transform: translateX(-50%);
    width: 60px;
    height: 120px;
    z-index: 10;
    transition: transform 1s ease;
}

.fl-rocket-body {
    width: 30px;
    height: 80px;
    background: var(--fl-accent-secondary);
    border-radius: 50% 50% 0 0;
    position: relative;
    left: 15px;
    box-shadow: 0 0 20px var(--fl-accent-secondary);
}

.fl-rocket-window {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--fl-bg-tertiary);
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--fl-accent-primary);
}

.fl-rocket-fin {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.fl-rocket-fin-left {
    border-width: 0 0 30px 15px;
    border-color: transparent transparent var(--fl-accent-secondary) transparent;
    bottom: 30px;
    left: 0;
}

.fl-rocket-fin-right {
    border-width: 0 15px 30px 0;
    border-color: transparent var(--fl-accent-secondary) transparent transparent;
    bottom: 30px;
    transform: rotate(180deg);
    right: 0;
}

.fl-rocket-flame {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    z-index: -1;
    width: 20px;
    height: 30px;
    background: linear-gradient(to bottom, #ff9500, #ff0000);
    border-radius: 50% 50% 0 0;
    animation: fl-flame 0.1s infinite alternate;
}

@keyframes fl-flame {
    from {
        height: 30px;
    }
    to {
        height: 40px;
    }
}

.fl-career-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fl-career-heading {
    font-size: 2.5rem;
    line-height: 1.2;
}

.fl-career-desc {
    font-size: 1.1rem;
    color: var(--fl-text-secondary);
}

.fl-career-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.fl-career-feature {
    background: rgba(18, 18, 31, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    transition: all var(--fl-anim-medium) ease;
}

.fl-career-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
    border-color: var(--fl-accent-secondary);
}

.fl-career-feature i {
    font-size: 1.5rem;
    color: var(--fl-accent-secondary);
    margin-bottom: 15px;
}

.fl-career-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}


/* ====== TEAM SECTION ====== */

.fl-team {
    background: var(--fl-bg-primary);
    position: relative;
}

.fl-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 45deg, rgba(0, 254, 252, 0.03) 0%, rgba(255, 0, 255, 0.03) 100%);
    z-index: var(--fl-z-background);
}

.fl-team-header {
    text-align: center;
    margin-bottom: 60px;
}

.fl-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.fl-team-member {
    background: var(--fl-bg-secondary);
    border: 1px solid rgba(0, 254, 252, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all var(--fl-anim-medium) ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fl-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 254, 252, 0.2);
    border-color: var(--fl-accent-primary);
}

.fl-member-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.fl-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--fl-anim-medium) ease;
}

.fl-team-member:hover .fl-member-image img {
    transform: scale(1.05);
}

.fl-member-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.fl-member-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.fl-member-role {
    color: var(--fl-accent-primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fl-member-bio {
    color: var(--fl-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.fl-member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.fl-specialty {
    background: rgba(0, 254, 252, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--fl-accent-primary);
    border: 1px solid rgba(0, 254, 252, 0.3);
}

.fl-member-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.fl-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 254, 252, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--fl-anim-medium) ease;
    border: 1px solid rgba(0, 254, 252, 0.3);
}

.fl-social-link i {
    color: var(--fl-accent-primary);
    font-size: 1rem;
}

.fl-social-link:hover {
    background: var(--fl-accent-primary);
    transform: translateY(-3px);
}

.fl-social-link:hover i {
    color: var(--fl-bg-primary);
}


/* ====== CONTACT SECTION ====== */

.fl-contact {
    background: var(--fl-bg-tertiary);
    position: relative;
}

.fl-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( 45deg, rgba(0, 254, 252, 0.03) 0, rgba(0, 254, 252, 0.03) 1px, transparent 1px, transparent 10px);
    z-index: var(--fl-z-background);
}

.fl-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.fl-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fl-contact-form {
    background: rgba(18, 18, 31, 0.8);
    border: 1px solid rgba(0, 254, 252, 0.3);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 254, 252, 0.15);
}

.fl-form-group {
    margin-bottom: 25px;
    position: relative;
}

.fl-form-control {
    width: 100%;
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid var(--fl-text-muted);
    border-radius: 5px;
    padding: 15px;
    font-family: var(--fl-font-primary);
    color: var(--fl-text-primary);
    font-size: 1rem;
    transition: all var(--fl-anim-medium) ease;
}

.fl-form-control:focus {
    outline: none;
    border-color: var(--fl-accent-primary);
    box-shadow: 0 0 10px rgba(0, 254, 252, 0.3);
}

.fl-form-control::placeholder {
    color: var(--fl-text-muted);
}

.fl-form-error {
    color: #ff5555;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.fl-form-error.fl-visible {
    display: block;
}

.fl-form-control.fl-error {
    border-color: #ff5555;
    box-shadow: 0 0 10px rgba(255, 85, 85, 0.3);
}

.fl-form-submit {
    width: 100%;
    padding: 15px;
    background: var(--fl-accent-primary);
    color: var(--fl-bg-primary);
    border: none;
    border-radius: 5px;
    font-family: var(--fl-font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--fl-anim-medium) ease;
    position: relative;
    overflow: hidden;
}

.fl-form-submit:disabled {
    background: var(--fl-text-muted);
    cursor: not-allowed;
}

.fl-form-submit::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: all var(--fl-anim-fast) ease;
}

.fl-form-submit:hover:not(:disabled) {
    background: var(--fl-accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.fl-form-submit:hover::before {
    left: 100%;
}


/* Map Section */

.fl-map {
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .fl-map {
        height: 400px;
    }
}

.iti {
    width: 100% !important;
}

.iti input[type='tel'] {
    width: 100% !important;
}

.fl-contact-map {
    position: relative;
    height: 100%;
    /* flex: 1; */
    /* margin-top: 2rem; */
    /* border-radius: 10px; */
    /* overflow: hidden; */
}

.fl-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    cursor: pointer;
}

.fl-error-message {
    display: block;
    color: #ff4444;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}


/* ====== FOOTER ====== */

.fl-footer {
    background: var(--fl-bg-primary);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.fl-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(0, 254, 252, 0.05) 1px, transparent 1px), linear-gradient(0deg, rgba(0, 254, 252, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: var(--fl-z-background);
}

.fl-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.fl-footer-col {
    position: relative;
}

.fl-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fl-text-primary);
    margin-bottom: 20px;
}

.fl-footer-logo i {
    font-size: 1.8rem;
    color: var(--fl-accent-primary);
}

.fl-footer-about {
    color: var(--fl-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.fl-footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.fl-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--fl-accent-primary);
    box-shadow: var(--fl-glow-cyan);
}

.fl-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fl-footer-link {
    color: var(--fl-text-secondary);
    font-size: 0.9rem;
    transition: all var(--fl-anim-fast) ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.fl-footer-link::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--fl-accent-primary);
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all var(--fl-anim-fast) ease;
}

.fl-footer-link:hover {
    color: var(--fl-accent-primary);
    transform: translateX(5px);
}

.fl-footer-link:hover::before {
    opacity: 1;
}

.fl-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fl-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--fl-text-secondary);
    font-size: 0.9rem;
}

.fl-contact-item p {
    margin-bottom: 0;
}

.fl-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 254, 252, 0.1);
    border: 1px solid rgba(0, 254, 252, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fl-accent-primary);
    flex-shrink: 0;
}

.fl-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.fl-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 254, 252, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--fl-text-muted);
}

.fl-footer-bottom span {
    color: var(--fl-accent-primary);
}

.fl-footer-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fl-footer-nav-link {
    color: var(--fl-text-secondary);
    font-size: 0.85rem;
    transition: all var(--fl-anim-fast) ease;
}

.fl-footer-nav-link:hover {
    color: var(--fl-accent-primary);
}


/* ====== COOKIE POPUP ====== */

.fl-cookie {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 380px;
    background: rgba(10, 10, 18, 0.95);
    border: 1px solid var(--fl-accent-primary);
    box-shadow: 0 0 30px rgba(0, 254, 252, 0.3);
    padding: 25px;
    z-index: var(--fl-z-popup);
    border-radius: 10px;
    font-family: var(--fl-font-secondary);
    backdrop-filter: blur(10px);
    transform: translateY(50px);
    opacity: 0;
    transition: all var(--fl-anim-medium) ease;
    display: none;
}

.fl-cookie.fl-active {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.fl-cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.fl-cookie-title {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--fl-accent-primary);
}

.fl-cookie-title::before {
    content: '>';
    margin-right: 5px;
    animation: fl-blink 1s step-end infinite;
}

.fl-cookie-content {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.fl-cookie-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0.85rem;
    color: var(--fl-text-secondary);
    overflow-y: auto;
    padding-right: 10px;
    animation: fl-code-typing 3s steps(60, end);
    white-space: pre-wrap;
}

.fl-cookie-text::-webkit-scrollbar {
    width: 5px;
}

.fl-cookie-text::-webkit-scrollbar-track {
    background: var(--fl-bg-tertiary);
}

.fl-cookie-text::-webkit-scrollbar-thumb {
    background-color: var(--fl-accent-primary);
    border-radius: 10px;
}

.fl-cookie-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.fl-cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    font-family: var(--fl-font-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--fl-anim-fast) ease;
}

.fl-cookie-accept {
    background: var(--fl-accent-primary);
    color: var(--fl-bg-primary);
}

.fl-cookie-accept:hover {
    background: var(--fl-accent-secondary);
    transform: translateY(-3px);
}

.fl-cookie-info {
    background: transparent;
    border: 1px solid var(--fl-accent-primary);
    color: var(--fl-accent-primary);
}

.fl-cookie-info:hover {
    background: rgba(0, 254, 252, 0.1);
}


/* ====== PRIVACY & TERMS PAGES ====== */

.fl-legal {
    background: var(--fl-bg-secondary);
    padding: 120px 0 80px;
}

.fl-legal-container {
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(0, 254, 252, 0.2);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.fl-legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.fl-legal-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.fl-legal-date {
    color: var(--fl-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.fl-legal-section {
    margin-bottom: 40px;
}

.fl-legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--fl-accent-primary);
    position: relative;
    padding-bottom: 15px;
}

.fl-legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--fl-accent-primary), transparent);
}

.fl-legal-section h3 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
    color: var(--fl-accent-secondary);
}

.fl-legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--fl-text-secondary);
}

.fl-legal-section ul,
.fl-legal-section ol {
    margin: 20px 0;
    padding-left: 20px;
}

.fl-legal-section li {
    margin-bottom: 10px;
    color: var(--fl-text-secondary);
}

.fl-legal-contact {
    background: rgba(18, 18, 31, 0.8);
    border: 1px solid rgba(0, 254, 252, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.fl-legal-contact h3 {
    margin-top: 0;
}

.fl-legal-contact p {
    margin-bottom: 8px;
}

.fl-back-to-site {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: var(--fl-accent-primary);
    color: var(--fl-bg-primary);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--fl-anim-fast) ease;
}

.fl-back-to-site:hover {
    background: var(--fl-accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}


/* ====== RESPONSIVE DESIGN ====== */

@media (max-width: 1200px) {
    .fl-container {
        max-width: 960px;
    }
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    .fl-hero-heading {
        font-size: 3.5rem;
    }
    .fl-career-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .fl-container {
        max-width: 720px;
    }
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .fl-hero-heading {
        font-size: 3rem;
    }
    .fl-hero-content {
        flex-direction: column;
        gap: 40px;
    }
    .fl-hero-text {
        text-align: center;
        max-width: 100%;
    }
    .fl-kilab-grid,
    .fl-simulator-grid,
    .fl-career-grid,
    .fl-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .fl-algorithm-vis {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .fl-container {
        max-width: 540px;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .fl-hero {
        height: auto;
        padding: 150px 0 80px;
    }
    .fl-hero-heading {
        font-size: 2.5rem;
    }
    .fl-nav {
        position: fixed;
        top: var(--fl-header-height);
        left: 0;
        width: 100%;
        background: rgba(10, 10, 18, 0.95);
        padding: 20px;
        flex-direction: column;
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--fl-anim-medium) ease;
        visibility: hidden;
        z-index: var(--fl-z-header);
        border-bottom: 1px solid var(--fl-accent-primary);
        backdrop-filter: blur(10px);
    }
    .fl-nav.fl-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .fl-mobile-toggle {
        display: block;
    }
    .fl-section {
        padding: 70px 0;
    }
    .fl-grid-2,
    .fl-grid-3,
    .fl-grid-4 {
        grid-template-columns: 1fr;
    }
    .fl-career-features {
        grid-template-columns: 1fr;
    }
    .fl-legal-container {
        padding: 30px 20px;
    }
    .fl-cookie {
        left: 15px;
        right: 15px;
        width: auto;
    }
    .fl-milestone-content {
        left: 100px;
    }
    .fl-milestone {
        left: 40px;
        z-index: 0;
    }
    .fl-rocket {
        left: 40px;
    }
    .fl-milestone::after {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .fl-hero-heading {
        font-size: 2rem;
    }
    .fl-hero-tagline {
        font-size: 1rem;
    }
    .fl-hero-description {
        font-size: 1rem;
    }
    .fl-hero-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .fl-section {
        padding: 50px 0;
    }
    .fl-contact-form {
        padding: 25px 15px;
    }
    .fl-footer {
        padding: 50px 0 30px;
    }
    .fl-legal-title,
    .fl-legal-section h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }
}

@media (max-width: 375px) {
    .fl-milestone-content {
        left: 80px;
        width: 165px;
    }
    .fl-cookie-actions {
        flex-direction: column;
        gap: 15px;
    }
}


/* ====== UTILITIES ====== */

.fl-mt-0 {
    margin-top: 0;
}

.fl-mt-1 {
    margin-top: 0.25rem;
}

.fl-mt-2 {
    margin-top: 0.5rem;
}

.fl-mt-3 {
    margin-top: 1rem;
}

.fl-mt-4 {
    margin-top: 1.5rem;
}

.fl-mt-5 {
    margin-top: 3rem;
}

.fl-mb-0 {
    margin-bottom: 0;
}

.fl-mb-1 {
    margin-bottom: 0.25rem;
}

.fl-mb-2 {
    margin-bottom: 0.5rem;
}

.fl-mb-3 {
    margin-bottom: 1rem;
}

.fl-mb-4 {
    margin-bottom: 1.5rem;
}

.fl-mb-5 {
    margin-bottom: 3rem;
}

.fl-text-center {
    text-align: center;
}

.fl-text-left {
    text-align: left;
}

.fl-text-right {
    text-align: right;
}

.fl-d-none {
    display: none;
}

.fl-d-block {
    display: block;
}

.fl-d-flex {
    display: flex;
}

.fl-d-grid {
    display: grid;
}

.fl-justify-center {
    justify-content: center;
}

.fl-align-center {
    align-items: center;
}

.fl-w-100 {
    width: 100%;
}

.fl-h-100 {
    height: 100%;
}

.fl-rounded {
    border-radius: 5px;
}

.fl-circle {
    border-radius: 50%;
}

.fl-overflow-hidden {
    overflow: hidden;
}

.fl-position-relative {
    position: relative;
}

.fl-position-absolute {
    position: absolute;
}

.fl-text-primary {
    color: var(--fl-text-primary);
}

.fl-text-secondary {
    color: var(--fl-text-secondary);
}

.fl-text-accent {
    color: var(--fl-accent-primary);
}

.fl-text-accent-secondary {
    color: var(--fl-accent-secondary);
}

.fl-bg-primary {
    background: var(--fl-bg-primary);
}

.fl-bg-secondary {
    background: var(--fl-bg-secondary);
}

.fl-bg-accent {
    background: var(--fl-accent-primary);
}

.fl-shadow-sm {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fl-shadow-md {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.fl-shadow-lg {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.fl-border {
    border: 1px solid rgba(0, 254, 252, 0.3);
}


/* ====== ANIMATIONS CLASSES ====== */

.fl-animate-neon {
    animation: fl-neon-pulse 2s infinite;
}

.fl-animate-float {
    animation: fl-float 6s ease-in-out infinite;
}

.fl-animate-glitch {
    animation: fl-glitch 0.8s ease-in-out infinite alternate;
}

.fl-animate-typing {
    overflow: hidden;
    white-space: nowrap;
    animation: fl-code-typing 5s steps(60, end);
}

.fl-animate-rotate {
    animation: fl-rotate-3d 20s infinite linear;
}

.fl-parallax {
    transition: transform 0.3s cubic-bezier(0.25, 0.75, 0.5, 1.25);
}