/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --accent: #00CEFF;
    --accent2: #A29BFE;
    --accent-orange: #FF6B35;
    --accent-green: #00FF88;
    --dark: #0A0A1A;
    --dark2: #12122A;
    --dark3: #1A1A3E;
    --text: #E0E0F0;
    --text-muted: #8888AA;
    --gradient1: linear-gradient(135deg, #6C5CE7, #00CEFF);
    --gradient2: linear-gradient(135deg, #A29BFE, #6C5CE7);
    --gradient3: linear-gradient(135deg, #00CEFF, #6C5CE7, #A29BFE);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

/* === CURSOR GLOW === */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108,92,231,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* === PARTICLES === */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 60px;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.nav-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.nav-logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-logo-text span {
    background: var(--gradient1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient1);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 28px;
    background: var(--gradient1);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

/* === BURGER MENU === */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    padding: 120px 60px 80px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
}

.hero-orb {
    display: none;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-orange);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero h1 .gradient-text {
    background: var(--gradient3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 45px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--gradient1);
    border: none;
    border-radius: 60px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--gradient1);
    border: none;
    border-radius: 60px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--accent-orange);
    font-size: 20px;
    font-weight: bold;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.5);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.9), rgba(0, 206, 255, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    padding: 16px 40px;
    background: rgba(26, 26, 62, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(108, 92, 231, 0.4);
    border-radius: 60px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(20px);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: flex-start;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 200px;
}

/* === HERO VISUAL === */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: rgba(26, 26, 62, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: 50px;
    width: 200px;
    animation-delay: 0s;
}

.card-2 {
    top: 180px;
    right: 200px;
    width: 180px;
    animation-delay: -2s;
}

.card-3 {
    bottom: 150px;
    right: 80px;
    display: flex;
    gap: 10px;
    padding: 15px;
    animation-delay: -4s;
}

.card-4 {
    top: 80px;
    right: 280px;
    width: 220px;
    padding: 15px;
    animation-delay: -1s;
    background: rgba(10, 10, 26, 0.9);
}

.card-5 {
    bottom: 50px;
    right: 250px;
    width: 150px;
    padding: 12px;
    animation-delay: -3s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 24px;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.card-stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
}

.card-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

.tech-badge {
    padding: 6px 12px;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

/* Code snippet styles */
.code-snippet {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.6;
}

.code-line {
    color: #E0E0F0;
}

.code-indent {
    padding-left: 20px;
}

.code-keyword {
    color: #FF6B35;
    font-weight: bold;
}

.code-function {
    color: #00CEFF;
}

.code-comment {
    color: #8888AA;
    font-style: italic;
}

/* Status indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-green);
}

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
}

.hero-app-image {
    width: 300px;
    height: auto;
    filter: blur(2px);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === FLOATING SHAPES === */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid rgba(108, 92, 231, 0.15);
    border-radius: 12px;
    animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 60px; height: 60px;
    top: 20%; left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.shape-2 {
    width: 40px; height: 40px;
    top: 60%; right: 15%;
    animation-delay: -3s;
    border-radius: 50%;
    border-color: rgba(0, 206, 255, 0.15);
}

.shape-3 {
    width: 80px; height: 80px;
    bottom: 20%; left: 20%;
    animation-delay: -7s;
    transform: rotate(20deg);
}

.shape-4 {
    width: 50px; height: 50px;
    top: 30%; right: 10%;
    animation-delay: -5s;
    border-radius: 50%;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(10px) rotate(180deg); opacity: 0.3; }
    75% { transform: translateY(-15px) rotate(270deg); opacity: 0.6; }
}

/* === SECTION COMMON === */
.section {
    padding: 120px 60px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === SERVICES === */
.services {
    background: var(--dark2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(108, 92, 231, 0.1);
    border-radius: 24px;
    padding: 45px 35px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient1);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108,92,231,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-icon.android {
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.15), rgba(61, 220, 132, 0.05));
    border: 1px solid rgba(61, 220, 132, 0.2);
}

.service-icon.windows {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.15), rgba(0, 120, 212, 0.05));
    border: 1px solid rgba(0, 120, 212, 0.2);
}

.service-icon.design {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.service-icon.support {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.service-icon.web {
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.15), rgba(162, 155, 254, 0.05));
    border: 1px solid rgba(162, 155, 254, 0.2);
}

.service-icon.consulting {
    background: linear-gradient(135deg, rgba(0, 206, 255, 0.15), rgba(0, 206, 255, 0.05));
    border: 1px solid rgba(0, 206, 255, 0.2);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.service-tag {
    padding: 4px 12px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent2);
    font-weight: 500;
}

/* === PROJECTS / PORTFOLIO === */
.projects {
    background: var(--dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--dark2);
    border: 1px solid rgba(108, 92, 231, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.project-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.project-image-real {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #1a1a3e, #2d1b69, #1e3a5f);
    padding: 2px;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image-real {
    transform: scale(1.05);
}

.project-image-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image-bg {
    transform: scale(1.1);
}

.project-image-bg.bg1 {
    background: linear-gradient(135deg, #1a1a3e, #2d1b69, #1e3a5f);
}

.project-image-bg.bg2 {
    background: linear-gradient(135deg, #1a3e2e, #1b6940, #1e5f3a);
}

.project-image-bg.bg3 {
    background: linear-gradient(135deg, #3e1a1a, #69401b, #5f3a1e);
}

.project-platform {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    padding: 5px 14px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

.rustore-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rustore-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rustore-icon {
    height: 20px;
    width: auto;
}

/* === PROCESS === */
.process {
    background: var(--dark2);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent), var(--accent2));
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.process-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.4);
}

.process-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* === TECHNOLOGIES === */
.technologies {
    background: var(--dark);
    overflow: hidden;
}

.tech-marquee {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.tech-marquee:hover {
    animation-play-state: paused;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(108, 92, 231, 0.1);
    border-radius: 16px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    border-color: rgba(108, 92, 231, 0.4);
    background: rgba(108, 92, 231, 0.1);
    transform: translateY(-3px);
}

.tech-item-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.tech-item-icon svg {
    width: 24px;
    height: 24px;
    fill: #94a3b8;
    transition: fill 0.3s ease;
}

/* Цветные иконки при наведении */
.tech-item:hover .color-kotlin svg { fill: #7F52FF; }
.tech-item:hover .color-node svg { fill: #339933; }
.tech-item:hover .color-react svg { fill: #61DAFB; }
.tech-item:hover .color-postgres svg { fill: #4169E1; }
.tech-item:hover .color-docker svg { fill: #2496ED; }
.tech-item:hover .color-js svg { fill: #F7DF1E; }
.tech-item:hover .color-typescript svg { fill: #3178C6; }

.tech-item-name {
    font-weight: 600;
    font-size: 15px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === TESTIMONIALS === */
.testimonials {
    background: var(--dark2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(108, 92, 231, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 16px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* === CONTACT === */
.contact {
    background: var(--dark);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-photo-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.contact-photo {
    width: 200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.contact-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(108, 92, 231, 0.5);
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact-detail-text {
    font-weight: 600;
}

.contact-detail-label {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-form {
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 24px;
    padding: 45px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 14px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ff6b6b;
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.form-group select option {
    background: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient1);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
}

/* === FOOTER === */
.footer {
    background: var(--dark2);
    padding: 80px 60px 30px;
    border-top: 1px solid rgba(108, 92, 231, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 15px;
    font-size: 14px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(108, 92, 231, 0.1);
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient1);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

/* === CTA BANNER === */
.cta-banner {
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--dark2);
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient1);
    opacity: 0.08;
}

.cta-banner h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    position: relative;
    z-index: 1;
}

/* === MOBILE MENU === */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* === LOADING SCREEN === */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: loaderPulse 1.5s ease-in-out infinite;
    overflow: hidden;
}

.loader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px 10px rgba(108, 92, 231, 0.2); }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient1);
    border-radius: 10px;
    animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* === COUNTER ANIMATION === */
.counter {
    display: inline-block;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }

    .navbar.scrolled {
        padding: 12px 30px;
    }

    .section {
        padding: 80px 30px;
    }

    .hero {
        padding: 120px 30px 80px;
    }

    .footer {
        padding: 60px 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 30px 60px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 32px;
    }

    .services-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-timeline::before {
        left: 18px;
    }

    .process-step {
        gap: 20px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .cta-banner {
        padding: 60px 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .service-card,
    .contact-form {
        padding: 30px 25px;
    }

    .hero h1 {
        font-size: 30px;
    }
}


/* === PRIVACY POLICY PAGE === */
.policy-section {
    min-height: 100vh;
    padding-top: 120px;
    background: var(--dark);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-date {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.policy-content {
    color: var(--text);
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: white;
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.policy-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text-muted);
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content strong {
    color: white;
    font-weight: 600;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(108, 92, 231, 0.2);
    text-align: center;
}