/* ========================================
   SOL-IT | DESIGN SYSTEM FUTURISTE
   ======================================== */

:root {
    --primary-violet: #9d50bb;
    --light-violet: #e100ff;
    --tech-blue: #00d2ff;
    --secure-red: #ff003c;
    --ai-green: #00e68a;
    --bg-deep: #050816;
    --bg-card: #0a0f2c;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-hover: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #6a6a80;
    --gradient-main: linear-gradient(135deg, var(--tech-blue), var(--light-violet));
    --gradient-red: linear-gradient(135deg, #ff003c, #880000);
    --gradient-ai: linear-gradient(135deg, #00e68a, #00b4d8);
    --shadow-glow-blue: 0 0 40px rgba(0, 210, 255, 0.15);
    --shadow-glow-violet: 0 0 40px rgba(225, 0, 255, 0.15);
    --shadow-glow-red: 0 0 40px rgba(255, 0, 60, 0.15);
    --shadow-glow-ai: 0 0 40px rgba(0, 230, 138, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

*:active,
*:focus,
*:focus-visible {
    cursor: none !important;
    outline: none;
}

a, button, label, .filter-btn, .card, .project-card, .case-card,
.nav-cta, .faq-question, .hamburger, .lang-switch a {
    user-select: none;
    -webkit-user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    animation: pageFadeIn 0.15s ease forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

body.page-exit {
    opacity: 0 !important;
    transition: opacity 0.1s ease !important;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button,
input,
textarea,
select {
    cursor: none;
    font-family: inherit;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--tech-blue), var(--light-violet));
    border-radius: 4px;
}

/* --- CURSOR --- */
#cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--tech-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: exclusion;
    transition: transform 0.15s ease;
}

/* --- CANVAS --- */
#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

/* --- HEADER --- */
header {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(5, 8, 22, 0.7);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 50px;
    background: rgba(5, 8, 22, 0.9);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /* CHANGE LOGO SIZE HERE - Change height value */
    height: 100px;  /* Increase this number for bigger logo */
    width: auto;
    /* Logo now has transparent background - no background color needed */
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.5));
    transition: var(--transition);
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.8));
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

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

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--tech-blue);
}

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

.nav-cta {
    padding: 10px 25px;
    border: 1px solid var(--tech-blue);
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tech-blue);
    transition: var(--transition);
    background: transparent;
}

.nav-cta:hover {
    background: var(--tech-blue);
    color: var(--bg-deep);
    box-shadow: var(--shadow-glow-blue);
}

/* --- LANG SWITCH --- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    padding-left: 14px;
    border-left: 1px solid var(--border-glass);
}

.lang-switch a,
.lang-switch span.lang-active {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 8px;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-switch a {
    color: var(--text-muted);
    cursor: none;
}

.lang-switch a:hover {
    color: var(--tech-blue);
    background: rgba(0, 210, 255, 0.08);
}

.lang-switch span.lang-active {
    color: var(--tech-blue);
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    cursor: none;
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

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

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

/* --- MOBILE NAV --- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 8, 22, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 90px;
    padding-bottom: 40px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
}

.mobile-nav a {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--tech-blue);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 5% 80px;
    perspective: 1000px;
    text-align: center;
}

.glitch-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2.5rem, 6vw, 7rem);
    line-height: 1.1;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

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

.hero p.subtitle {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--tech-blue);
    margin-top: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 2s forwards 0.5s;
}

.hero .desc {
    max-width: 700px;
    color: var(--text-secondary);
    margin-top: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 2s forwards 1s;
}

/* --- BUTTONS --- */
.btn-glow {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid var(--tech-blue);
    background: transparent;
    color: white;
    text-transform: uppercase;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    margin-top: 40px;
    border-radius: 4px;
}

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

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

.btn-glow:hover {
    background: var(--tech-blue);
    box-shadow: 0 0 40px var(--tech-blue);
    color: var(--bg-deep);
}

.btn-glow.violet {
    border-color: var(--light-violet);
}

.btn-glow.violet:hover {
    background: var(--light-violet);
    box-shadow: 0 0 40px var(--light-violet);
}

.btn-glow.red {
    border-color: var(--secure-red);
}

.btn-glow.red:hover {
    background: var(--secure-red);
    box-shadow: 0 0 40px var(--secure-red);
}

.btn-glow.ai {
    border-color: var(--ai-green);
}

.btn-glow.ai:hover {
    background: var(--ai-green);
    box-shadow: 0 0 40px var(--ai-green);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    border: 1px solid var(--border-glass);
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Syncopate', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    min-width: 280px;
    min-height: 56px;
}

.btn-outline:hover {
    border-color: var(--tech-blue);
    color: var(--text-primary);
    background: rgba(0, 210, 255, 0.05);
}

/* --- SECTION COMMONS --- */
.section {
    padding: 120px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tech-blue);
    margin-bottom: 20px;
    background: rgba(0, 210, 255, 0.05);
}

.section-header h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- GRID --- */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.grid > * {
    flex: 0 1 calc(33.333% - 27px);
    min-width: 280px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* --- CARDS --- */
.card {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--border-glass), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    border-color: var(--light-violet);
    box-shadow: var(--shadow-glow-violet);
    transform: scale(1.03) translateZ(10px);
    background: var(--glass-hover);
}

.card.clickable {
    cursor: none;
}

.card.clickable:hover {
    cursor: none;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-icon.red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-icon.ai {
    background: var(--gradient-ai);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card.ai-card:hover {
    border-color: var(--ai-green);
    box-shadow: var(--shadow-glow-ai);
}

.card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.card .tech-tags {
    margin-top: 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--tech-blue);
}

.card .tech-tags.violet {
    color: var(--light-violet);
}

.card .tech-tags.red {
    color: var(--secure-red);
}

.card .tech-tags.ai {
    color: var(--ai-green);
}

.card.secure:hover {
    border-color: var(--secure-red);
    box-shadow: var(--shadow-glow-red);
}

.card .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--tech-blue);
    transition: gap 0.3s, color 0.3s;
}

.card:hover .arrow-link {
    gap: 15px;
    color: var(--text-primary);
}

/* --- STATS --- */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 100px 5%;
    background: linear-gradient(to bottom, transparent, rgba(157, 80, 187, 0.08), transparent);
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-family: 'Syncopate', sans-serif;
    color: var(--tech-blue);
    text-shadow: 0 0 20px var(--tech-blue);
}

.stat-item p {
    color: var(--text-secondary);
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* --- TECH GRID (detail pages) --- */
.tech-card {
    background: var(--glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s;
}

.tech-card:hover::after {
    opacity: 1;
}

.tech-card:hover {
    border-color: var(--tech-blue);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-5px);
}

.tech-card .tech-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(0, 210, 255, 0.08);
    font-size: 1.8rem;
}

.tech-card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.tech-card .use-cases {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-card .use-cases span {
    padding: 5px 12px;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: var(--transition);
}

.tech-card:hover .use-cases span {
    border-color: rgba(0, 210, 255, 0.3);
    color: var(--tech-blue);
}

/* --- PAGE HERO (sub pages) --- */
.page-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 5% 80px;
    position: relative;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero .breadcrumb a {
    color: var(--tech-blue);
    transition: color 0.3s;
}

.page-hero .breadcrumb a:hover {
    color: var(--text-primary);
}

.page-hero h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 25px;
}

.page-hero p {
    color: var(--text-secondary);
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.page-hero .icon-big {
    font-size: 4rem;
    margin-bottom: 25px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero .icon-big.red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero .icon-big.ai {
    background: var(--gradient-ai);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- PROCESS CIRCLE --- */
.process-circle {
    position: relative;
    width: 550px;
    height: 550px;
    margin: 40px auto;
}

.process-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    background: transparent;
}

.process-ring::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 210, 255, 0.15);
    animation: spin 30s linear infinite;
}

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

.process-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    z-index: 2;
}

.process-center span {
    display: block;
}

.process-step {
    position: absolute;
    width: 180px;
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    transform: scale(1.05);
}

.step-number {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    color: var(--tech-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.7rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

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

.step-top {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-right {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.step-bottom {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-left {
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

.step-top:hover { transform: translateX(-50%) scale(1.05); }
.step-right:hover { transform: translateY(-50%) scale(1.05); }
.step-bottom:hover { transform: translateX(-50%) scale(1.05); }
.step-left:hover { transform: translateY(-50%) scale(1.05); }

/* --- PORTFOLIO --- */
.project-card {
    background: var(--glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    border-color: var(--light-violet);
    box-shadow: var(--shadow-glow-violet);
    transform: translateY(-8px);
}

.project-thumb {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-card), rgba(0, 210, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--tech-blue);
    position: relative;
    overflow: hidden;
}

.project-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, var(--bg-deep));
}

.project-card .project-info {
    padding: 30px;
}

.project-card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-tags span {
    padding: 4px 12px;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--tech-blue);
    letter-spacing: 1px;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.project-links a:hover {
    color: var(--tech-blue);
}

/* --- FORM STYLES --- */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--tech-blue);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
}

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

.form-group select option {
    background: var(--bg-deep);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* --- FOOTER --- */
footer {
    padding: 80px 5% 40px;
    border-top: 1px solid var(--border-glass);
    background: rgba(5, 8, 22, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--tech-blue);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--tech-blue);
}

/* --- ABOUT PAGE --- */
.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    text-align: center;
    padding: 50px 30px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    background: var(--glass);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--tech-blue);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

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

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

.team-card {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    background: var(--glass);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--light-violet);
    box-shadow: var(--shadow-glow-violet);
    transform: translateY(-5px);
}

.team-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--tech-blue), var(--light-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 2rem;
    color: var(--bg-deep);
}

.team-card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--tech-blue);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

/* --- TIMELINE --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-glass);
}

.timeline-item {
    position: relative;
    width: 45%;
    padding: 30px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    background: var(--glass);
    margin-bottom: 40px;
    transition: var(--transition);
}

.timeline-item:hover {
    border-color: var(--tech-blue);
    transform: translateY(-3px);
}

.timeline-item:nth-child(odd) {
    margin-left: 5%;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tech-blue);
    box-shadow: 0 0 15px var(--tech-blue);
}

.timeline-item:nth-child(odd)::before {
    right: -30px;
}

.timeline-item:nth-child(even)::before {
    left: -30px;
}

.timeline-item h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.85rem;
    color: var(--tech-blue);
    margin-bottom: 8px;
}

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

/* --- CONTACT LAYOUT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    background: var(--glass);
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--tech-blue);
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--tech-blue);
    margin-top: 3px;
}

.contact-info-card h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- DIVIDERS --- */
.glow-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--tech-blue), var(--light-violet), transparent);
    opacity: 0.3;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    header {
        padding: 12px 20px;
    }

    .logo img {
        height: 60px;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .section {
        padding: 80px 5%;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }

    .timeline-item::before {
        left: -35px !important;
        right: auto !important;
    }

    .process-circle {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-ring {
        display: none;
    }

    .process-center {
        position: static;
        transform: none;
        margin-bottom: 10px;
    }

    .process-step {
        position: static;
        transform: none !important;
        width: 100%;
        max-width: 300px;
        padding: 25px;
        border: 1px solid var(--border-glass);
        border-radius: var(--radius);
        background: var(--glass);
    }

    .about-values .value-card {
        flex: 0 1 100%;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .grid > * {
        flex: 0 1 calc(50% - 20px);
    }

    .about-values .value-card {
        flex: 0 1 calc(50% - 15px);
    }
}

/* --- PORTFOLIO FILTER BUTTONS --- */
.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--border-glass);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition);
    cursor: none;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--tech-blue);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--tech-blue);
    border-color: var(--tech-blue);
    color: var(--bg-deep);
}

/* --- FAQ ACCORDION --- */
.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 210, 255, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--glass);
}

.faq-question span {
    font-weight: 500;
    font-size: 1rem;
}

.faq-question i {
    color: var(--tech-blue);
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s;
    padding: 0 25px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* --- FOOTER LOGO SIZE --- */
.footer-brand .logo img {
    height: 60px;
    width: auto;
}

/* --- PROJECT MODAL --- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 30, 0.78);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
#modal-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.modal-content {
    background: linear-gradient(135deg, #0a0f2c, #0d1540);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 20px;
    max-width: 820px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 48px 48px 40px;
    position: relative;
    z-index: 1;
    animation: modalIn 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(0,210,255,0.3) transparent;
}
.modal-content::-webkit-scrollbar { width: 5px; }
.modal-content::-webkit-scrollbar-thumb { background: rgba(0,210,255,0.3); border-radius: 4px; }
@keyframes modalIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff; width: 38px; height: 38px;
    border-radius: 50%; cursor: none;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,60,60,0.25); }
.modal-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.modal-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.modal-header h2 { font-family: 'Syncopate', sans-serif; font-size: 1.3rem; color: #fff; margin: 0 0 6px; line-height: 1.3; }
.modal-client { font-size: 0.82rem; color: var(--tech-blue); margin: 0; font-weight: 500; letter-spacing: 0.03em; }
.modal-status { display: inline-block; margin-top: 8px; padding: 3px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.modal-status.deployed { background: rgba(0,210,80,0.15); color: #00d250; border: 1px solid rgba(0,210,80,0.3); }
.modal-status.dev      { background: rgba(0,210,255,0.12); color: #00d2ff; border: 1px solid rgba(0,210,255,0.25); }
.modal-status.sold     { background: rgba(225,170,0,0.15); color: #e1aa00; border: 1px solid rgba(225,170,0,0.3); }
.modal-desc { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 0.95rem; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.modal-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 640px) { .modal-sections { grid-template-columns: 1fr; } }
.modal-section h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin: 0 0 14px; }
.modal-features-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.modal-features-list li { font-size: 0.88rem; color: rgba(255,255,255,0.72); padding-left: 18px; position: relative; line-height: 1.5; }
.modal-features-list li::before { content: '→'; position: absolute; left: 0; color: var(--tech-blue); font-size: 0.8rem; }
.modal-stack-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-stack-tags span { padding: 5px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 500; background: rgba(0,210,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(0,210,255,0.2); }

/* --- CLIENT CASES GRID --- */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.case-card { background: var(--glass); border: 1px solid var(--border-glass); border-radius: var(--radius); padding: 26px; transition: var(--transition); position: relative; }
.case-card:hover { border-color: rgba(0,210,255,0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.case-client { font-family: 'Syncopate', sans-serif; font-size: 0.85rem; color: #fff; margin: 4px 0 0; line-height: 1.3; }
.case-domain { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; font-weight: 600; display: inline-block; }
.case-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; display: block; margin-bottom: 6px; }
.case-problem { margin-bottom: 14px; }
.case-problem .case-label { color: rgba(255,80,80,0.85); }
.case-solution .case-label { color: var(--tech-blue); }
.case-problem p, .case-solution p { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.6; margin: 0; }
.case-results { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); }
.case-result-chip { font-size: 0.75rem; color: rgba(0,210,80,0.9); background: rgba(0,210,80,0.08); border: 1px solid rgba(0,210,80,0.2); padding: 4px 10px; border-radius: 20px; }
.case-result-chip::before { content: '\2713\00a0'; }

/* --- FIX CURSOR ON TOUCH DEVICES --- */
@media (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    a, button, .filter-btn, .faq-question, .card.clickable {
        cursor: pointer !important;
    }

    #cursor {
        display: none !important;
    }
}