@font-face {
    font-family: "JetBrains Mono";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/jetbrains-mono-v24-latin_latin-ext-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Oxanium";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/oxanium-v21-latin_latin-ext-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Orbitron";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/orbitron-v35-latin-regular.woff2") format("woff2");
}

:root {
    --border-color: #272731;
    --border-glow: rgba(0, 255, 242, 0.3);
    --card-bg: #13131a;
    --card-bg-alt: #1a1a24;
    --danger: #ff3b3b;
    --dark-bg: #0a0a0f;
    --darker-bg: #05050a;
    --glow-cyan: 0 0 20px rgba(0, 255, 242, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 255, 0.5);
    --glow-purple: 0 0 20px rgba(150, 41, 175, 0.5);
    --neon-blue: #0099ff;
    --neon-cyan: #00fff2;
    --neon-green: #00ff41;
    --neon-orange: #ff6b00;
    --neon-pink: #ff00ff;
    --neon-purple: #cc31ef;
    --success: #00ff41;
    --text-muted: #555;
    --text-primary: #e0e0e0;
    --text-secondary: #a3a3a3;
    --warning: #ffaa00;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a1f 50%, #0a0a0f 100%);
    color: var(--text-primary);
    font-family: "JetBrains Mono", monospace;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    width: 100%;
    z-index: 1;
}

.container-narrow {
    margin: 0 auto;
    max-width: 800px;
    padding: 0 1rem;
}

body::before {
    animation: orbFloat2 25s ease-in-out infinite;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    bottom: -150px;
    content: "";
    filter: blur(120px);
    height: 500px;
    opacity: 0.15;
    pointer-events: none;
    position: fixed;
    right: -150px;
    width: 500px;
    z-index: 0;
}

body::after {
    animation: orbFloat 20s ease-in-out infinite;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    content: "";
    filter: blur(120px);
    height: 600px;
    left: -200px;
    opacity: 0.2;
    pointer-events: none;
    position: fixed;
    top: -200px;
    width: 600px;
    z-index: 0;
}

.text-gradient {
    animation: gradientShift 4s ease infinite;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 200%;
    color: transparent;
}

.section-title {
    -webkit-background-clip: text;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-text-fill-color: transparent;
    font-family: "Oxanium", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.section-title-lined {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 5rem;
    padding-bottom: 1.5rem;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.section-title-lined::after {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    bottom: 0;
    box-shadow: var(--glow-cyan);
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100px;
}

.section-title-lined-w {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 5rem;
    padding-bottom: 1.5rem;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.section-title-lined-w::after {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    bottom: 0;
    box-shadow: var(--glow-pink);
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100px;
}

.btn {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    color: var(--dark-bg);
    cursor: pointer;
    display: inline-block;
    font-family: "Oxanium", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    overflow: hidden;
    padding: 0.8rem 1.8rem;
    position: relative;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease;
}

.btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.5s ease;
    width: 100%;
}

.btn:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 242, 0.5);
    transform: translateY(-3px);
}

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

.hidden {
    display: none !important;
}

::selection {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.glitch {
    position: relative;
}

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

.glitch::before {
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
    clip: rect(24px, 550px, 90px, 0);
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
}

.glitch::after {
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
    clip: rect(85px, 550px, 140px, 0);
    left: -2px;
    text-shadow: -2px 0 var(--neon-cyan);
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, 30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 50px) scale(0.9);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, -40px) scale(1.15);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

@keyframes fadeInControls {
    to {
        opacity: 1;
    }
}

@keyframes marqueeAnimation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 1;
    }
}

@keyframes simpleSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes corePulse {

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

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes dotBounce {

    0%,
    60%,
    100% {
        opacity: 0.5;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes iconPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 2px var(--neon-purple));
    }

    50% {
        filter: drop-shadow(0 0 8px var(--neon-purple)) drop-shadow(0 0 15px var(--neon-purple));
    }
}

@keyframes scanLine {
    0% {
        background-position: 0 -48px;
    }

    100% {
        background-position: 0 48px;
    }
}

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

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

    20% {
        clip: rect(75px, 9999px, 53px, 0);
    }

    30% {
        clip: rect(62px, 9999px, 84px, 0);
    }

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

    50% {
        clip: rect(42px, 9999px, 71px, 0);
    }

    60% {
        clip: rect(8px, 9999px, 95px, 0);
    }

    70% {
        clip: rect(51px, 9999px, 28px, 0);
    }

    80% {
        clip: rect(66px, 9999px, 45px, 0);
    }

    90% {
        clip: rect(19px, 9999px, 82px, 0);
    }

    100% {
        clip: rect(88px, 9999px, 36px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

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

    20% {
        clip: rect(92px, 9999px, 67px, 0);
    }

    30% {
        clip: rect(5px, 9999px, 88px, 0);
    }

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

    50% {
        clip: rect(77px, 9999px, 54px, 0);
    }

    60% {
        clip: rect(23px, 9999px, 79px, 0);
    }

    70% {
        clip: rect(61px, 9999px, 33px, 0);
    }

    80% {
        clip: rect(9px, 9999px, 96px, 0);
    }

    90% {
        clip: rect(48px, 9999px, 21px, 0);
    }

    100% {
        clip: rect(84px, 9999px, 58px, 0);
    }
}

#main-header {
    border-bottom: 1px solid transparent;
    left: 0;
    position: fixed;
    top: 0;
    transform: translateZ(0);
    transition: all 0.4s ease;
    width: 100%;
    will-change: transform;
    z-index: 1000;
}

#main-header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

#main-header.scrolled .navbar {
    padding-bottom: 1rem;
    padding-top: 1rem;
}

.navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
    transition: padding 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    text-decoration: none;
}

.logo a img {
    height: 30px;
    width: auto;
    display: block;
    margin: auto;
    filter: drop-shadow(0 0 15px var(--neon-cyan));
    transition: all 0.3s ease;
}

.logo a:hover img {
    filter: drop-shadow(0 0 25px var(--neon-cyan)) drop-shadow(0 0 40px var(--neon-pink));
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.nav-links a::after {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    bottom: -8px;
    box-shadow: var(--glow-cyan);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    width: 0;
}

.nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    cursor: pointer;
    display: none;
    flex-direction: column;
    height: 25px;
    justify-content: space-around;
    width: 30px;
    z-index: 1100;
}

.hamburger .bar {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    height: 3px;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-contact-buttons {
    display: none;
}

.nav-links.active {
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
    padding: 80px 2rem 2rem;
}

.nav-links.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--neon-cyan) 20%,
            var(--neon-purple) 50%,
            var(--neon-cyan) 80%,
            transparent 100%);
    opacity: 0.15;
    pointer-events: none;
}

.nav-links.active::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    border: 1px solid rgba(0, 255, 242, 0.08);
    pointer-events: none;
}

.nav-links.active li {
    margin: 0;
    width: 100%;
    max-width: 280px;
    opacity: 0;
    animation: menuItemFadeIn 0.4s ease forwards;
}

.nav-links.active li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links.active li:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-links.active li:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-links.active li:nth-child(4) {
    animation-delay: 0.25s;
}

.nav-links.active li:nth-child(5) {
    animation-delay: 0.3s;
}

.nav-links.active li:nth-child(6) {
    animation-delay: 0.35s;
}

.nav-links.active li:nth-child(7) {
    animation-delay: 0.5s;
}

@keyframes menuItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.nav-links.active a {
    display: block;
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 1rem 1.5rem;
    margin: 0.4rem 0;
    border: 1px solid rgba(0, 255, 242, 0.3);
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-links.active a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 242, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-links.active a:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow:
        0 0 15px rgba(0, 255, 242, 0.3),
        inset 0 0 20px rgba(0, 255, 242, 0.05);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links.active a:hover::before {
    left: 100%;
}

.nav-links.active a::after {
    display: none;
}

.nav-links.active a.active {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 242, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 242, 0.2);
}

.nav-links.active .mobile-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 280px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 242, 0.15);
}

.mobile-contact-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem !important;
    margin: 0 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    text-transform: none !important;
    border: 1px solid rgba(182, 47, 213, 0.4) !important;
    background: rgba(182, 47, 213, 0.05) !important;
    color: var(--text-secondary) !important;
    transition: all 0.3s ease;
}

.mobile-contact-btn i {
    font-size: 1rem;
    color: var(--neon-purple);
    transition: all 0.3s ease;
}

.mobile-contact-btn span {
    font-family: "JetBrains Mono", monospace;
}

.mobile-contact-btn:hover {
    border-color: var(--neon-purple) !important;
    background: rgba(182, 47, 213, 0.15) !important;
    color: var(--neon-purple) !important;
    box-shadow:
        0 0 20px rgba(182, 47, 213, 0.3),
        inset 0 0 15px rgba(182, 47, 213, 0.1) !important;
}

.mobile-contact-btn:hover i {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.hamburger.active .bar {
    background: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#hero {
    align-items: center;
    background: transparent;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding: 140px 0 100px 0;
    position: relative;
}

#hero::before {
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 242, 0.03) 2px,
            rgba(0, 255, 242, 0.03) 4px);
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.hero-layout {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    width: 100%;
    z-index: 3;
}

.hero-content,
.hero-image,
.hero-links {
    min-width: 0;
}

.hero-content {
    flex-basis: 40%;
}

.hero-content h1 {
    animation: gradientShift 4s ease infinite;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    background-size: 200% 200%;
    font-family: "Oxanium", sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 60px rgba(0, 255, 242, 0.3);
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 450px;
}

.hero-image {
    flex-basis: 30%;
    position: relative;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 255, 242, 0.3));
    height: auto;
    max-width: 100%;
}

.hero-links {
    align-items: flex-start;
    display: flex;
    flex-basis: 25%;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-links a {
    background: rgba(19, 19, 26, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    overflow: hidden;
    padding: 0.75rem 1.5rem;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-links a::before {
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    content: "";
    height: 2px;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.5s ease;
    width: 100%;
}

.hero-links a:hover {
    background: rgba(0, 255, 242, 0.05);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    color: var(--neon-cyan);
    transform: translateX(10px);
}

.hero-links a:hover::before {
    left: 100%;
}

.marquee {
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.marquee::before,
.marquee::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 150px;
    z-index: 2;
}

.marquee::before {
    background: linear-gradient(90deg, var(--darker-bg), transparent);
    left: 0;
}

.marquee::after {
    background: linear-gradient(270deg, var(--darker-bg), transparent);
    right: 0;
}

.marquee__inner {
    animation: marqueeAnimation 35s linear infinite;
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.marquee__inner span {
    color: var(--text-muted);
    flex-shrink: 0;
    font-family: "Oxanium", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 0 2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.marquee__inner span:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.about-section {
    background: transparent;
    padding-top: 8rem;
}

.about-grid {
    align-items: start;
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
}

.about-content h3 {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.stat-box {
    background: rgba(19, 19, 26, 0.5);
    border: 1px solid rgba(212, 0, 255, 0.29);
    opacity: 0.8;
    padding: 2.5rem 2rem;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(19, 19, 26, 0.7);
    border-color: rgba(0, 255, 242, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
    transform: translateY(-5px);
}

.stat-box::before,
.stat-box::after {
    border-color: var(--neon-cyan);
    content: "";
    height: 10px;
    opacity: 0;
    position: absolute;
    transition: opacity 0.3s ease;
    width: 10px;
}

.stat-box:hover::before,
.stat-box:hover::after {
    opacity: 1;
}

.stat-num {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    font-family: "Oxanium", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-text-fill-color: transparent;
}

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

.services-section {
    padding-bottom: 0;
    padding-top: 8rem;
    position: relative;
}

.cards-container {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.service-card::before {
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    content: "";
    height: 2px;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.8s ease;
    width: 100%;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--neon-cyan);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        var(--glow-cyan);
    transform: translateY(-10px);
}

.service-card-1 {
    border-top: 3px solid var(--neon-pink);
}

.service-card-1:hover {
    border-color: var(--neon-pink);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        var(--glow-pink);
}

.service-card-2 {
    border-top: 3px solid var(--neon-cyan);
}

.service-card-2:hover {
    border-color: var(--neon-cyan);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        var(--glow-cyan);
}

.service-card-3 {
    border-top: 3px solid var(--neon-purple);
}

.service-card-3:hover {
    border-color: var(--neon-purple);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        var(--glow-purple);
}

.card-visible-content {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    min-height: 330px;
    display: flex;
    flex-direction: column;
}

.card-visible-content img {
    display: block;
    filter: brightness(0.9) saturate(0.8);
    height: auto;
    margin: 2rem auto 0 auto;
    transition: all 0.3s ease;
    width: 70%;
}

.service-card:hover .card-visible-content img {
    filter: brightness(1) saturate(1) drop-shadow(0 0 20px rgba(0, 255, 242, 0.3));
}

.service-card h3 {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card h3 span {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.service-card-1 h3 span {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

.service-card-3 h3 span {
    color: var(--neon-purple);
    text-shadow: 0 0 15px var(--neon-purple);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.hashtags {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hashtags span {
    background: rgba(0, 255, 242, 0.05);
    border: 1px solid var(--border-color);
    color: var(--neon-cyan);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
}

.service-card-1 .hashtags span {
    background: rgba(255, 0, 255, 0.05);
    border-color: rgba(255, 0, 255, 0.3);
    color: var(--neon-pink);
}

.service-card-3 .hashtags span {
    background: rgba(150, 41, 175, 0.05);
    border-color: rgba(150, 41, 175, 0.3);
    color: var(--neon-purple);
}

.card-footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    padding: 1rem 2.5rem;
}

.card-toggle-btn {
    align-items: center;
    background: none;
    border: none;
    color: var(--neon-cyan);
    cursor: pointer;
    display: flex;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 0.75rem;
    letter-spacing: 1px;
    padding: 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.service-card-1 .card-toggle-btn {
    color: var(--neon-pink);
}

.service-card-3 .card-toggle-btn {
    color: var(--neon-purple);
}

.card-toggle-btn:hover {
    text-shadow: 0 0 15px currentColor;
}

.card-toggle-btn .arrow {
    font-size: 1em;
    transition: transform 0.3s ease;
}

.card-toggle-btn:hover .arrow {
    transform: translateX(8px);
}

.service-card.is-active .card-toggle-btn .arrow {
    transform: rotate(90deg);
}

.card-hidden-content {
    display: none;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.service-card.is-active .card-hidden-content {
    animation: fadeIn 0.3s ease;
    display: block;
}

.card-hidden-content ul {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.card-hidden-content li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.card-hidden-content li::before {
    color: var(--neon-cyan);
    content: ">";
    font-family: "JetBrains Mono", monospace;
    font-weight: bold;
    left: 0;
    position: absolute;
    top: 0;
}

.service-card-1 .card-hidden-content li::before {
    color: var(--neon-pink);
}

.service-card-3 .card-hidden-content li::before {
    color: var(--neon-purple);
}

.service-card-4 {
    border-top: 3px solid #ffbf00;
}

.service-card-4:hover {
    border-color: #ffbf00;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 107, 0, 0.4);
}

.service-card-4 h3 span {
    color: #ffbf00;
    text-shadow: 0 0 15px #ffbf00;
}

.service-card-4 .hashtags span {
    background: rgba(255, 221, 0, 0.05);
    border-color: rgba(255, 200, 0, 0.3);
    color: #ffbf00;
}

.service-card-4 .card-toggle-btn {
    color: #ffbf00;
}

.service-card-4 .card-hidden-content li::before {
    color: #ffbf00;
}

.service-card-5 {
    border-top: 3px solid #00ffc3;
}

.service-card-5:hover {
    border-color: #00ffc3;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 255, 65, 0.4);
}

.service-card-5 h3 span {
    color: #00ffc3;
    text-shadow: 0 0 15px var(--neon-green);
}

.service-card-5 .hashtags span {
    background: rgba(0, 255, 65, 0.05);
    border-color: rgba(0, 255, 65, 0.3);
    color: #00ffc3;
}

.service-card-5 .card-toggle-btn {
    color: #00ffc3;
}

.service-card-5 .card-hidden-content li::before {
    color: #00ffc3;
}

.service-card-6 {
    border-top: 3px solid #18c2e9;
}

.service-card-6:hover {
    border-color: #18c2e9;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 153, 255, 0.4);
}

.service-card-6 h3 span {
    color: #18c2e9;
    text-shadow: 0 0 15px #18c2e9;
}

.service-card-6 .hashtags span {
    background: rgba(24, 162, 255, 0.05);
    border-color: rgba(49, 166, 244, 0.3);
    color: #18c2e9;
}

.service-card-6 .card-toggle-btn {
    color: #18c2e9;
}

.service-card-6 .card-hidden-content li::before {
    color: #18c2e9;
}

.process-section {
    color: var(--text-primary);
    overflow: hidden;
    padding-top: 8rem;
    position: relative;
}

.process-timeline {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

.process-step {
    flex-basis: 22%;
    position: relative;
    text-align: center;
}

.step-number {
    color: transparent;
    font-family: "Orbitron", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 25px var(--neon-cyan);
    -webkit-text-stroke: 2px var(--neon-cyan);
}

.step-content h3 {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-connector {
    background: linear-gradient(90deg, var(--border-color), var(--neon-cyan), var(--border-color));
    flex-grow: 1;
    height: 2px;
    margin: 2.5rem 1rem 0 1rem;
    opacity: 0.5;
    position: relative;
}

/* ================
   PORTFOLIO CARDS 
   ================ */

.portfolio-section {
    padding-top: 8rem;
    position: relative;
}

.portfolio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border-color);
}

.portfolio-cards .portfolio-card:first-child {
    border-right: 1px solid var(--border-color);
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ---- Hlavný obrázok ---- */
.portfolio-card-main {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.portfolio-card-main img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(150, 41, 175, 0.6) 0%, rgba(0, 255, 242, 0.25) 100%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 0;
}

/* ---- Footer riadok ---- */
.portfolio-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-top: 1px solid var(--border-color);
    background: rgba(13, 13, 20, 0.6);
    min-height: 48px;
}

.portfolio-card-url {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.portfolio-card-url:hover {
    color: var(--text-primary);
}

.portfolio-card-url-icon {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* ---- Tech badges (text) ---- */
.portfolio-card-tech {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.55rem;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: default;
}

.tech-badge img {
    margin-right: 6px;
    ;
}

/* ---- Responzivita ---- */
@media (max-width: 768px) {
    .portfolio-cards {
        grid-template-columns: 1fr;
    }

    .portfolio-cards .portfolio-card:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .portfolio-thumb img {
        height: 80px;
    }

    .tech-badge {
        font-size: 0.40rem;
    }
}

@media (max-width: 480px) {
    .portfolio-card-footer {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }

    .portfolio-card-url {
        font-size: 0.60rem;
    }

    .portfolio-thumb img {
        height: 64px;
    }

    .tech-badge {
        font-size: 0.40rem;
    }
}

.faq-section {
    overflow: hidden;
    padding-top: 8rem;
    position: relative;
}

.faq-section::before {
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    content: "";
    filter: blur(100px);
    height: 400px;
    left: -100px;
    opacity: 0.15;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
}

.faq-grid {
    align-items: start;
    display: grid;
    gap: 5rem;
    grid-template-columns: 1fr 1.5fr;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h3 {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.faq-intro h3 br+* {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-intro p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(19, 19, 26, 0.6);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.faq-item::before {
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    content: "";
    height: 2px;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.6s ease;
    width: 100%;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    background: rgba(19, 19, 26, 0.8);
    border-color: rgba(0, 255, 242, 0.3);
}

.faq-item.active {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(150, 41, 175, 0.2);
}

.faq-question {
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    text-align: left;
    width: 100%;
}

.faq-question span {
    color: var(--text-primary);
    font-family: "JetBrains Mono", monospace;
    font-size: 1rem;
    font-weight: 500;
    padding-right: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question span,
.faq-item.active .faq-question span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 242, 0.3);
}

.faq-chevron {
    color: var(--neon-cyan);
    flex-shrink: 0;
    font-size: 0.85rem;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.faq-item:hover .faq-chevron {
    text-shadow: 0 0 8px rgba(0, 255, 242, 0.6);
}

.faq-item.active .faq-chevron {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(150, 41, 175, 0.8);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    background: linear-gradient(90deg, rgba(150, 41, 175, 0.05), transparent);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 2rem;
}

.blog-section {
    margin-top: 8rem;
}

.blog-preview-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 255, 242, 0.15);
    transform: translateY(-5px);
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

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

.blog-card-image .blog-category {
    left: 1rem;
    position: absolute;
    top: 1rem;
}

.blog-category {
    border-radius: 0;
    font-family: "Oxanium", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    text-transform: uppercase;
}

.blog-category.cat-seo {
    background: rgba(0, 153, 255, 0.2);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
}

.blog-category.cat-web {
    background: rgba(182, 47, 213, 0.2);
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
}

.blog-category.cat-ai {
    background: rgba(0, 255, 242, 0.2);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--neon-cyan);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    display: -webkit-box;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-card-meta {
    align-items: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    font-size: 0.75rem;
    gap: 1rem;
    padding-top: 1rem;
}

.blog-card-meta span {
    align-items: center;
    display: flex;
    gap: 0.4rem;
}

.blog-card-meta i {
    color: var(--neon-cyan);
    font-size: 0.7rem;
}

.blog-card-link {
    color: inherit;
    text-decoration: none;
}

.blog-view-all {
    text-align: center;
}

.btn-link {
    align-items: center;
    background: transparent;
    border: none;
    color: var(--neon-cyan);
    cursor: pointer;
    display: inline-flex;
    font-family: "Oxanium", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.5rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--text-primary);
    gap: 0.75rem;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 6rem 0;
    }

    .blog-card-content {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1.05rem;
    }
}

.contact-section {
    color: var(--text-primary);
    padding-top: 8rem;
    position: relative;
}

.contact-wrapper {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1.2fr;
}

.contact-text h2 {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    font-family: "Oxanium", sans-serif;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: transparent;
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.contact-email {
    border-bottom: 2px solid transparent;
    color: var(--neon-cyan);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    border-color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
}

.form-row:has(input[name="subject"]),
.form-row:has(textarea) {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea {
    background: rgba(0, 255, 242, 0);
    border: 1px solid #3a3a3a;
    color: var(--text-primary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a2a2a2;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(0, 255, 242, 0.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 242, 0.2);
    outline: none;
}

.btn-submit {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    color: var(--dark-bg);
    cursor: pointer;
    font-family: "Oxanium", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-transform: none;
    transition: all 0.3s ease;
}

.btn-submit::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.5s ease;
    width: 100%;
}

.btn-submit:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 242, 0.5);
    transform: translateY(-3px);
}

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

.site-footer {
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    margin-top: 8rem;
    padding-top: 5rem;
    position: relative;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding-bottom: 4rem;
}

.footer-column h4 {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-column h4.logo {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    font-size: 1.5rem;
    -webkit-text-fill-color: transparent;
}

.footer-heading {
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 2rem;
    padding-right: 2rem;
    width: auto;
    max-width: 370px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-heading .footer-badge-free {
    background: rgba(0, 255, 242, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-left: 0.6rem;
    padding: 0.1rem 0.5rem;
    vertical-align: middle;
}

.footer-tools {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-tool-card {
    border: 1px solid rgba(124, 124, 124, 0.5);
    display: block;
    padding: 0.9rem 1.1rem;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.footer-tool-card strong {
    color: var(--text-primary);
    display: block;
    font-family: "Oxanium", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.footer-tool-card span {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.footer-tool-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 242, 0.15);
}

.footer-tool-card:hover strong {
    color: var(--neon-cyan);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    align-items: center;
    display: flex;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-list i {
    color: var(--neon-cyan);
    font-size: 1em;
    width: 30px;
}

.contact-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.whatsapp-icon {
    color: var(--neon-green) !important;
    font-size: 1.4rem;
    margin-left: 0.75rem;
    transition: all 0.3s ease !important;
}

.whatsapp-icon:hover {
    text-shadow: 0 0 15px var(--neon-green) !important;
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-business-info {
    margin-top: 2rem;
    max-width: 370px;
}

.business-info-toggle {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    cursor: pointer;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.business-info-toggle:hover {
    color: var(--neon-cyan);
    border-bottom-color: var(--neon-cyan);
}

.business-info-toggle .toggle-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.business-info-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin-top: 16px;
}

.footer-business-info.is-active .business-info-content {
    grid-template-rows: 1fr;
}

.footer-business-info.is-active .toggle-arrow {
    transform: rotate(180deg);
    color: var(--neon-purple);
}

.business-info-inner {
    min-height: 0;
}

.business-info-inner p {
    font-size: 0.75rem !important;
    color: var(--text-secondary) !important;
    margin-top: 0.5rem !important;
    line-height: 1.5 !important;
    padding-right: 0 !important;
    width: 100% !important;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.05);
    border-radius: 0;
    margin-left: 10px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.whatsapp-icon i {
    color: var(--neon-green) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    font-size: 1.1rem !important;
    text-shadow: 0 0 10px var(--neon-green);
}

.whatsapp-icon:hover {
    background: rgba(0, 255, 65, 0.15);
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

#canvas-container {
    cursor: grab;
    filter: drop-shadow(0 0 40px rgba(150, 41, 175, 0.25));
    height: 450px;
    opacity: 0;
    position: relative;
    transition: height 0.3s ease;
    width: 100%;
}

#canvas-container:active {
    cursor: grabbing;
}

.model-controls {
    animation: fadeInControls 1s ease forwards 1.5s;
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
}

.control-btn {
    align-items: center;
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: var(--neon-purple);
    cursor: pointer;
    display: flex;
    font-size: 1.1rem;
    height: 48px;
    justify-content: center;
    opacity: 0.7;
    position: relative;
    transition: all 0.3s ease;
    width: 48px;
}

.control-btn::before {
    animation: scanLine 2s linear infinite;
    background: linear-gradient(180deg, transparent 0%, rgba(150, 41, 175, 0.03) 50%, transparent 100%);
    background-size: 100% 4px;
    content: "";
    inset: 0;
    opacity: 0.5;
    position: absolute;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.control-btn::after {
    background: transparent;
    border: 1px solid var(--neon-purple);
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    content: "";
    inset: -2px;
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease;
    z-index: -2;
}

.control-btn:hover {
    box-shadow:
        0 0 15px rgba(150, 41, 175, 0.4),
        inset 0 0 15px rgba(150, 41, 175, 0.1);
    color: #fff;
    text-shadow:
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple);
}

.control-btn:hover::before {
    opacity: 0.15;
}

.control-btn:hover::after {
    inset: -4px;
    opacity: 0.5;
}

.control-btn:active {
    box-shadow:
        0 0 25px rgba(150, 41, 175, 0.6),
        inset 0 0 20px rgba(150, 41, 175, 0.2);
    transform: scale(0.95);
}

.control-btn:hover i {
    animation: iconPulse 1.5s ease-in-out infinite;
}

.model-loader {
    align-items: center;
    background: transparent;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.5s ease;
    width: 100%;
    z-index: 10;
}

.model-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cyber-spinner {
    height: 120px;
    position: relative;
    width: 120px;
}

.spinner-ring {
    animation: spinRing 3s linear infinite;
    border: 2px solid transparent;
    border-right-color: var(--neon-purple);
    border-top-color: var(--neon-cyan);
    height: 100%;
    position: absolute;
    width: 100%;
}

.spinner-ring:nth-child(1) {
    animation-duration: 2s;
    border-width: 2px;
}

.spinner-ring:nth-child(2) {
    animation-direction: reverse;
    animation-duration: 2.5s;
    border-right-color: var(--neon-cyan);
    border-top-color: var(--neon-purple);
    border-width: 2px;
    height: 80%;
    left: 10%;
    top: 10%;
    width: 80%;
}

.spinner-ring:nth-child(3) {
    animation-duration: 3s;
    border-top-color: var(--neon-pink);
    border-width: 2px;
    height: 60%;
    left: 20%;
    top: 20%;
    width: 60%;
}

.spinner-core {
    animation: corePulse 1.5s ease-in-out infinite;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    box-shadow:
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-purple);
    height: 30px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
}

.simple-spinner {
    animation: simpleSpin 1s linear infinite;
    border: 4px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(229, 46, 208, 0.5);
    height: 60px;
    width: 60px;
}

.loader-text {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loading-label {
    animation: pulse 1.5s infinite alternate;
    color: var(--text-primary);
    font-family: "Oxanium", sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loading-dots {
    display: flex;
    gap: 8px;
}

.dot {
    animation: dotBounce 1.4s ease-in-out infinite;
    background: var(--neon-cyan);
    height: 8px;
    width: 8px;
}

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

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

.loader-progress {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 250px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 3px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.progress-fill {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    box-shadow: 0 0 10px var(--neon-cyan);
    height: 100%;
    position: relative;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-fill::after {
    animation: shimmer 1s ease-in-out infinite;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}

.progress-percent {
    color: var(--neon-cyan);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(0, 255, 242, 0.5);
}

.pyramid-canvas {
    display: block;
    height: 100%;
    width: 100%;
}

.cyber-modules {
    background: radial-gradient(circle at top, #0c0f1f, #05060b 70%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 80vh;
    width: 100vw;
}

.cyber-panel {
    background: #05060b;
    box-shadow:
        inset 0 0 120px rgba(0, 0, 0, 0.9),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
}

.cyber-panel::before {
    content: "";
    inset: 0;
    mix-blend-mode: screen;
    opacity: 0.35;
    pointer-events: none;
    position: absolute;
}

.cyber-panel.cyan::before {
    background: radial-gradient(circle at 50% 30%, rgba(0, 255, 240, 0.45), transparent 60%),
        linear-gradient(180deg, rgba(0, 255, 240, 0.15), transparent);
}

.cyber-panel.purple::before {
    background: radial-gradient(circle at 50% 30%, rgba(160, 80, 255, 0.45), transparent 60%),
        linear-gradient(180deg, rgba(160, 80, 255, 0.15), transparent);
}

.cyber-panel.blue::before {
    background: radial-gradient(circle at 50% 30%, rgba(120, 180, 255, 0.45), transparent 60%),
        linear-gradient(180deg, rgba(120, 180, 255, 0.15), transparent);
}

.cyber-panel:hover::before {
    filter: saturate(120%);
    opacity: 0.55;
}

.panel-inner {
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.04),
        0 0 40px rgba(255, 255, 255, 0.02);
    inset: 15% 10% 30%;
    position: absolute;
}

.panel-controls {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    bottom: 0;
    box-shadow: inset 0 15px 30px rgba(0, 0, 0, 0.8);
    height: 22%;
    left: 0;
    position: absolute;
    right: 0;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 0.9rem;
    font-family: "JetBrains Mono", monospace;
    display: none;
    border-left: 3px solid transparent;
}

.form-status.success {
    display: block;
    color: var(--neon-cyan);
    background: rgba(0, 255, 65, 0.05);
    border-left-color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.form-status.error {
    display: block;
    color: var(--danger);
    background: rgba(255, 59, 59, 0.05);
    border-left-color: var(--danger);
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(1);
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title-lined {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        margin-bottom: 1rem;
        max-width: 300px;
        order: 1;
        overflow: visible;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-links {
        align-items: center;
        margin-top: 2rem;
        order: 3;
    }

    .about-grid {
        gap: 50px;
        grid-template-columns: 1fr;
    }

    .about-content h3 {
        font-size: 1.8rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .card-visible-content {
        text-align: center;
    }

    .process-step {
        max-width: 400px;
    }

    .process-timeline {
        align-items: center;
        flex-direction: column;
        gap: 3rem;
    }

    .step-connector {
        display: none;
    }

    .section-title-lined {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .btn-submit {
        align-self: center;
    }

    .contact-text {
        text-align: center;
    }

    .contact-wrapper {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .contact-list {
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding: 0;
        text-align: left;
    }

    .contact-list li {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 1.2rem;
        width: 100%;
    }

    .contact-list i {
        width: 25px;
        margin-right: 15px;
        text-align: center;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .footer-column {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-column p,
    .footer-links,
    .contact-list {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        width: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-business-info {
        margin-left: auto;
        margin-right: auto;
    }

    #canvas-container {
        height: 420px;
        margin-left: -5%;
        margin-top: 1rem;
        width: 110%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .about-section {
        padding-top: 6rem;
        padding-bottom: 0;
    }

    .about-content h3 {
        font-size: 1.6rem;
    }

    .stat-box {
        padding: 2rem 1.5rem;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .process-timeline {
        gap: 0;
        align-items: stretch;
    }

    .process-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
        max-width: 100%;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(0, 255, 242, 0.1);
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .step-number {
        font-size: 1.8rem;
        min-width: 45px;
        margin-bottom: 0;
        line-height: 1;
        -webkit-text-stroke: 1px var(--neon-cyan);
    }

    .step-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .step-content h3,
    .step-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        letter-spacing: 1px;
    }

    .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-secondary);
    }

    .step-connector {
        display: none !important;
    }

    #faq .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    #faq .faq-intro {
        position: static;
        text-align: center;
    }

    #faq .faq-accordion {
        gap: 0.5rem;
    }

    #faq .faq-item {
        border-radius: 0;
    }

    #faq .faq-question {
        align-items: center;
        min-height: 64px;
        padding: 0.75rem 1.25rem;
    }

    #faq .faq-question span {
        display: -webkit-box;
        font-size: 0.9rem;
        line-height: 1.4;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    #faq .faq-chevron {
        font-size: 0.75rem;
        margin-left: 0.75rem;
    }

    #faq .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.7;
        margin: 0;
        padding: 1.7rem;
    }

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

    .next-article {
        justify-content: flex-start;
        text-align: left;
    }

    #canvas-container {
        height: 380px;
        margin-left: -10%;
        width: 120%;
    }

    .cyber-spinner {
        height: 100px;
        width: 100px;
    }

    .loading-label {
        font-size: 0.9rem;
    }

    .loader-progress {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .btn {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .section-title-lined {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 2.5rem;
    }

    .logo,
    .logo a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
        width: auto !important;
    }

    .logo a img {
        height: 25px !important;
        width: auto !important;
        max-width: 150px !important;
        min-width: 0 !important;
        margin: auto !important;
        filter: drop-shadow(0 0 10px var(--neon-cyan)) !important;
    }

    #hero {
        padding: 0 0 100px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-top: 1.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-image {
        margin-bottom: 0;
        overflow: visible;
        width: 100%;
    }

    .hero-image img {
        max-width: 80%;
    }

    .hero-links {
        display: none;
    }

    .about-content {
        text-align: center;
    }

    .stat-box {
        padding: 1.8rem 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .hashtags span {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .services-section {
        padding-top: 6rem;
    }

    .process-section {
        padding-top: 6rem;
    }

    #faq .faq-accordion {
        gap: 0.4rem;
    }

    #faq .faq-chevron {
        font-size: 0.7rem;
    }

    #faq .faq-question {
        min-height: 60px;
        padding: 0.65rem 1rem;
    }

    #faq .faq-question span {
        font-size: 0.85rem;
    }

    .contact-section {
        margin-bottom: 6rem;
        padding-top: 6rem;
    }

    .contact-text h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-column p {
        margin-top: 2rem;
    }

    #canvas-container {
        height: 400px;
        margin-left: -10%;
        margin-top: 60px;
        width: 120%;
    }

    .control-btn {
        font-size: 1rem;
        height: 44px;
        width: 44px;
    }

    .model-controls {
        gap: 0.8rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .process-step {
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .step-number {
        font-size: 1.5rem;
        min-width: 35px;
    }
}

@media (max-width: 400px) {
    #canvas-container {
        height: 280px;
        margin-left: -20%;
        width: 140%;
    }
}

/* ================
   LANGUAGE SWITCHER
   ================ */

.lang-switcher {
    position: relative;
    z-index: 1100;
    margin-left: auto;
    margin-right: 2rem;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.lang-current img {
    display: block;
    border-radius: 2px;
    object-fit: cover;
}

.lang-current:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.lang-current.is-open {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.lang-current.is-open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    border: 1px solid var(--border-color);
    min-width: 160px;
    display: none;
    flex-direction: column;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.is-open {
    display: flex;
    animation: fadeIn 0.2s ease;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 1rem;
    color: var(--text-secondary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option img {
    display: block;
    border-radius: 2px;
    object-fit: cover;
}

.lang-option:hover {
    background: rgba(0, 255, 242, 0.05);
    color: var(--neon-cyan);
}

/* Mobile: switcher between logo and hamburger */
@media (max-width: 992px) {
    .lang-switcher {
        order: 1;
        margin-left: auto;
        margin-right: 1rem;
    }

    .hamburger {
        order: 2;
    }

    .logo {
        order: 0;
    }

    .lang-code {
        display: none;
    }

    .lang-current {
        padding: 0.35rem 0.5rem;
    }

    .lang-dropdown {
        right: -1rem;
    }
}

   .chatbot-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #0a0a0f;
    border: 1px solid rgba(255, 0, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.chatbot-btn:hover {
    border-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.chatbot-btn svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255, 0, 255, 0.7);
    fill: none;
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.chatbot-btn:hover svg {
    stroke: rgba(255, 0, 255, 0.9);
}

.chatbot-window {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    height: 540px;
    background: #0a0a0f;
    border: 1px solid rgba(255, 0, 255, 0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
}

.chatbot-window.active {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.chatbot-header {
    background: transparent;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chatbot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 8px;
    height: 8px;
    background: #00fff2;
    border: none;
    display: block;
    flex-shrink: 0;
}

.chatbot-title h3 {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chatbot-status {
    display: none;
}

.chatbot-close {
    background: transparent;
    border: 1px solid rgba(255, 0, 255, 0.3);
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #ff00ff;
    font-size: 16px;
    flex-shrink: 0;
}

.chatbot-close:hover {
    border-color: #ff00ff;
    color: #ff00ff;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #0a0a0f;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 255, 0.3);
}

.message {
    display: flex;
    gap: 0;
    align-items: flex-start;
    animation: messageIn 0.2s ease-out;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    display: none;
}

.message-content {
    max-width: 85%;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.6;
    color: #e0e0e0;
    background: transparent;
}

.message.bot .message-content {
    border-left: 2px solid #ff00ff;
    padding-left: 12px;
}

.message.user .message-content {
    border-right: 2px solid #00fff2;
    padding-right: 12px;
    text-align: right;
}

.message-time {
    font-size: 10px;
    color: #555;
    margin-top: 4px;
    display: block;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 16px 14px 16px;
}

.quick-reply-chip {
    background: transparent;
    border: 1px solid rgba(255, 0, 255, 0.4);
    padding: 8px 12px;
    color: #e0e0e0;
    font-size: 11px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.quick-reply-chip:hover {
    border-color: #ff00ff;
    background: rgba(255, 0, 255, 0.05);
}

.quick-reply-chip i {
    font-size: 11px;
}

.quick-reply-chip i.fa-euro-sign {
    color: #00fff2;
}

.quick-reply-chip i.fa-search {
    color: #cc31ef;
}

.quick-reply-chip i.fa-phone {
    color: #0099ff;
}

.quick-reply-chip i.fa-clock {
    color: #ff00ff;
}

.chatbot-input-area {
    padding: 16px;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    background: transparent;
    flex-shrink: 0;
}

.chatbot-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.chatbot-input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 0, 255, 0.3);
    padding: 10px 12px;
    color: #e0e0e0;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    line-height: 1.4;
    resize: none;
    transition: all 0.2s ease;
    max-height: 80px;
}

.chatbot-input:focus {
    outline: none;
    border-color: #ff00ff;
}

.chatbot-input::placeholder {
    color: #555;
}

.chatbot-send {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 0, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chatbot-send:hover:not(:disabled) {
    border-color: #ff00ff;
    background: rgba(255, 0, 255, 0.05);
}

.chatbot-send:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.chatbot-send svg {
    width: 14px;
    height: 14px;
    fill: #ff00ff;
    stroke: none;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px 0;
    background: transparent;
    border: none;
    width: fit-content;
    border-left: 2px solid #ff00ff;
    padding-left: 12px;
}

.typing-dot {
    width: 5px;
    height: 5px;
    background: #ff00ff;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ff0000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0f;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.chatbot-preview {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 300px;
    background: rgba(13, 13, 18, 0.98);
    border: 1px solid rgba(255, 0, 255, 0.4);
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    z-index: 9997;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    animation: previewSlideIn 0.4s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes previewSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.preview-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.preview-avatar i {
    font-size: 18px;
    color: #ff00ff;
}

.preview-content {
    flex: 1;
}

.preview-title {
    font-size: 12px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.preview-message {
    font-size: 12px;
    line-height: 1.4;
    color: #a0a0a0;
}

.preview-close {
    background: transparent;
    border: none;
    color: rgba(255, 0, 255, 0.5);
    font-size: 18px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.preview-close:hover {
    color: #ff00ff;
}

@media (max-width: 768px) {
    .chatbot-preview {
        width: calc(100vw - 100px);
        right: 16px;
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .chatbot-window {
        width: calc(100vw - 32px);
        height: 500px;
        max-height: calc(100vh - 100px);
        right: 16px;
        bottom: 16px;
    }

    .chatbot-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .chatbot-header {
        padding: 14px 16px;
    }

    .chatbot-messages {
        padding: 14px;
        gap: 10px;
    }

    .message-content {
        font-size: 12px;
        padding: 9px 12px;
    }

    .quick-replies {
        gap: 6px;
        padding: 0 14px 12px 14px;
    }

    .quick-reply-chip {
        font-size: 10px;
        padding: 7px 10px;
    }

    .chatbot-input-area {
        padding: 14px;
    }

    .chatbot-input {
        font-size: 12px;
        padding: 9px 11px;
    }
}

@media (max-width: 480px) {
    .chatbot-window {
        height: 480px;
    }
}