/* ===== CYBER INDUSTRIAL THEME V2.0 (PREMIUM) ===== */
:root {
    --bg-dark: #050505;
    --bg-deep: #020202;
    --bg-panel: rgba(20, 20, 20, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    --color-neon-green: #ccff00;
    --color-neon-blue: #00f3ff;
    --color-neon-pink: #ff00ff;
    --color-white: #ffffff;
    --color-text: #f0f0f0;
    --color-text-muted: #a0a5ad;
    
    --font-main: 'Space Grotesk', sans-serif;
    --font-display: 'Syncopate', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    --border-light: rgba(255, 255, 255, 0.15);
    --border-neon: rgba(204, 255, 0, 0.5);
    
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --glow-primary: 0 0 20px rgba(204, 255, 0, 0.15);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise Overlay - Refined */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.container {
    max-width: 96%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Refinement */
h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background: var(--color-neon-green);
    display: block;
    margin-left: 1rem;
    opacity: 0.5;
}

.section-title::before {
    content: '///';
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-neon-blue);
    margin-right: 0.5rem;
    letter-spacing: 2px;
}

.section-title.center {
    text-align: center;
    display: block;
    margin: 0 auto 4rem;
}

.outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
    transition: all 0.5s ease;
}

.section-title:hover .outline-text {
    -webkit-text-stroke: 1px var(--color-neon-blue);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.accent-text {
    color: var(--color-neon-green);
    position: relative;
    display: inline-block;
}

/* Navigation - Floating Glass */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.5));
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-neon-green);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::before {
    width: 100%;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-neon-blue);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 4px;
}

.hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-neon-blue);
}

.hero-title {
    font-size: clamp(5rem, 11vw, 10rem);
    line-height: 0.8;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0;
    background: transparent;
    border: none;
}

.stat-box {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-light);
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-box:last-child {
    border-right: 1px solid var(--border-light);
}

.stat-box:hover {
    border-color: var(--color-neon-green);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.1);
    transform: translateY(-2px);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-neon-green);
    border-left: 2px solid var(--color-neon-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-val {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

/* Decoration Greebles */
.cyber-card::after {
    content: 'SYS_0' counter(card-counter);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--border-light);
}

.grid-3 {
    counter-reset: card-counter;
}

.cyber-card {
    counter-increment: card-counter;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.4;
    max-width: 520px;
    margin-bottom: 3.5rem;
    color: var(--color-text-muted);
    border-left: 2px solid var(--color-neon-green);
    padding-left: 1.5rem;
}

/* Advanced Buttons */
.cyber-button {
    background: transparent;
    color: var(--color-neon-green);
    border: 1px solid var(--color-neon-green);
    padding: 1.2rem 3rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-neon-green);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.cyber-button:hover {
    color: #000;
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.3);
}

.cyber-button:hover::before {
    transform: translateY(0);
}

.btn-glitch {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

.cyber-button:hover .btn-glitch {
    transform: translateX(5px);
}

/* Hero Visual - React 3D Component */
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Transformation Section */
.transformation {
    padding: 5rem 0;
    position: relative;
}

.comparison-deck {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    perspective: 1000px;
    flex-wrap: wrap; /* Fix for smaller screens */
}

.card-old, .card-new {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    width: 380px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s ease;
}

.card-new {
    border-color: rgba(204, 255, 0, 0.2);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.card-new:hover {
    transform: translateY(-10px) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(204, 255, 0, 0.1);
}

.card-old {
    opacity: 0.7;
    transform: scale(0.9);
}

.card-header {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header::after {
    content: '///';
    letter-spacing: 2px;
    opacity: 0.3;
}

.card-header.active {
    color: var(--color-neon-green);
    border-color: var(--color-neon-green);
}

.visual-box {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.visual-box.pixelated {
    filter: grayscale(100%) contrast(1.2);
}

.visual-box.realistic {
    box-shadow: inset 0 0 20px var(--color-neon-green);
}

.card-label {
    font-size: 1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(204, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
    z-index: 10;
    animation: scan 3s linear infinite;
    opacity: 0.5;
}

.connector {
    position: relative;
    width: 60px;
    height: 2px;
    background: var(--border-light);
}

.arrow-anim {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-dark);
    padding: 0 10px;
    color: var(--color-neon-green);
    font-family: var(--font-mono);
}

.trans-text-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    border: 1px solid var(--border-light);
    border-radius: 20px;
}

/* Advantages Grid */
.advantages {
    padding: 4rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0;
    border: 1px solid var(--border-light);
    background: var(--bg-dark);
}

.grid-3.small-gap {
    gap: 0;
    border: none;
    background: transparent;
}

.cyber-card {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 3rem 2.5rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin: -1px 0 0 -1px; /* Overlap borders */
}

.cyber-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    z-index: 10;
    border-color: var(--color-neon-green);
    box-shadow: inset 0 0 20px rgba(204, 255, 0, 0.1);
}

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

.card-icon svg {
    width: 3rem;
    height: 3rem;
    stroke: var(--color-neon-green);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.cyber-card:hover .card-icon svg {
    filter: drop-shadow(0 0 10px var(--color-neon-green));
    transform: scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

.card-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Case Studies Refined */
.case-studies {
    padding: 4rem 0;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1.5rem;
}

.decor-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--color-neon-blue), transparent);
    opacity: 0.5;
    position: relative;
}

.decor-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-neon-green);
    box-shadow: 0 0 5px var(--color-neon-green);
}

.case-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.case-row.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.case-visual {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
}

.case-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo), filter 0.7s ease;
    filter: grayscale(100%);
}

.case-row:hover .case-visual img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.case-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
}

.case-project {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    background: linear-gradient(180deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spec-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.spec-item {
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-light);
    transition: border-color 0.3s;
}

.case-row:hover .spec-item {
    border-left-color: var(--color-neon-blue);
}

.spec-item.highlight {
    border-left-color: var(--color-neon-green);
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.spec-val {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.tech-line {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-neon-blue);
    padding: 0.8rem 1.2rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 4px;
    display: inline-block;
}

/* NDA Case - Cinematic */
.case-full {
    background: #000;
    min-height: 600px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
}

.case-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 0;
}

.case-full-content {
    position: relative;
    z-index: 1;
    width: 50%;
    padding: 4rem;
}

.nda-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    border: 1px solid var(--color-neon-pink);
    color: var(--color-neon-pink);
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    background: rgba(255, 0, 255, 0.1);
    backdrop-filter: blur(5px);
}

.cyber-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #fff;
    padding: 2rem 0 2rem 2rem;
    border-left: 2px solid var(--color-neon-pink);
    margin: 3rem 0;
    line-height: 1.4;
    opacity: 0.9;
}

.case-meta {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.focus-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
}

.mini-card strong {
    color: var(--color-neon-green);
}

/* Process Timeline */
.process {
    padding: 4rem 0;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-light);
    z-index: 0;
}

.timeline-item {
    background: var(--bg-dark);
    padding: 2rem;
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-color: var(--color-neon-green);
    transform: translateY(-10px);
}

.timeline-num {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-display);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-neon-green);
}

.timeline-content p {
    color: var(--color-text-muted);
}

/* Tech Stack */
.tech-stack {
    background: var(--bg-panel);
    padding: 4rem 0;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.tech-stack .section-title {
    text-align: center;
    display: block;
    margin: 0 auto 3rem;
}

.tech-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 1px solid var(--border-light);
}

.tech-group {
    background: var(--bg-dark);
    padding: 3rem;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
    margin: -1px 0 0 -1px;
}

.tech-group:hover {
    background: #0a0a0a;
    border-color: var(--color-neon-blue);
    z-index: 2;
}

.tech-head {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.tech-items {
    list-style: none;
}

.tech-items li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-items li::before {
    content: '>';
    color: var(--color-neon-blue);
}

.tech-group:hover .tech-items li {
    color: #fff;
}

/* Clients Section */
.clients {
    padding: 4rem 0;
}

.logo-ticker {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 4rem;
    opacity: 0.3;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    margin: 3rem 0;
}

.ticker-item {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

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

.industry-grid {
    margin-top: 2rem;
}

.industry-box {
    border: 1px solid var(--border-light);
    padding: 2rem;
    text-align: left; /* Changed from center for tech feel */
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.01);
    margin: -1px 0 0 -1px;
    position: relative;
}

.industry-box::before {
    content: '+';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    opacity: 0.5;
}

.industry-box:hover {
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
    border-color: var(--color-neon-blue);
}

.industry-box h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.industry-box h4::before {
    content: '> ';
    color: var(--color-neon-green);
}

.industry-box p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Collaboration Section */
.collaboration {
    padding: 4rem 0;
    overflow: hidden;
}

.collab-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    isolation: isolate;
}

.collab-list {
    list-style: none;
    margin: 2rem 0;
}

.collab-list li {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.collab-left p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.collab-right {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    min-height: 400px;
}

.collab-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.filter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.7;
}

.filter-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer - Minimalist */
.footer {
    border-top: 1px solid var(--border-light);
    background: #020202;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.footer-brand:hover .logo-img {
    filter: grayscale(0%) opacity(1);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.footer-contacts {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.contact-item a,
.contact-item span {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--color-neon-green);
}

.footer-copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

/* Animations & Utilities */
@keyframes scan {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats { 
        justify-content: flex-start; 
    }
    
    .hero-label { 
        display: inline-flex;
    }
    
    .hero-description { 
        max-width: 100%;
    }
    
    .case-row { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .case-row.reverse { 
        grid-template-columns: 1fr; 
    }
    
    .case-full-content { 
        width: 100%; 
        padding: 2rem; 
        background: rgba(0,0,0,0.8); 
    }
    
    .timeline::before { 
        display: none; 
    }
    
    .collab-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar { 
        width: 100%; 
        top: 0; 
        border-radius: 0; 
        border: none; 
        border-bottom: 1px solid var(--border-light); 
        padding: 1rem; 
    }
    
    .nav-links { 
        display: none; 
    }
    
    .hero-title { 
        font-size: 3rem; 
    }
    
    .comparison-deck { 
        flex-direction: column; 
    }
    
    .card-old, .card-new { 
        width: 100%; 
        max-width: 400px;
        margin: 0 auto;
    }
    
    .grid-3 { 
        grid-template-columns: 1fr; 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .footer-contacts {
        flex-direction: column;
        gap: 2rem;
    }
    
    .logo-ticker {
        font-size: 2rem;
    }
}

/* ===== REACT 3D HERO COMPONENT ===== */
.hero-3d-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perspective-wrapper {
    perspective: 1500px;
    perspective-origin: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d-card {
    position: relative;
    width: 90%;
    max-width: 550px;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.cyber-display {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(204, 255, 0, 0.3);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(204, 255, 0, 0.2),
        inset 0 0 30px rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
}

.display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(204, 255, 0, 0.2);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-neon-green);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--color-neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-neon-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.display-title {
    flex: 1;
    text-align: center;
    letter-spacing: 0.1em;
}

.timestamp {
    color: var(--color-neon-blue);
}

.display-content {
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    overflow: hidden;
}

.hero-3d-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) contrast(1.2);
    opacity: 0.9;
    mix-blend-mode: luminosity;
}

.cyber-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(204, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.3;
}

.scan-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(204, 255, 0, 0.8), 
        transparent
    );
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.8);
    animation: scan-vertical 4s linear infinite;
}

@keyframes scan-vertical {
    0% { top: 0; }
    100% { top: 100%; }
}

/* HUD Corners */
.hud-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-neon-blue);
}

.hud-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.hud-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.hud-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.hud-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* Data Streams */
.data-stream {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-neon-green);
    animation: fadeInOut 3s infinite;
}

.stream-1 {
    top: 20%;
    right: 20px;
    animation-delay: 0s;
}

.stream-2 {
    top: 50%;
    right: 20px;
    animation-delay: 1s;
}

.stream-3 {
    top: 80%;
    right: 20px;
    animation-delay: 2s;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.data-line {
    width: 40px;
    height: 1px;
    background: var(--color-neon-green);
}

.data-point {
    padding: 0.3rem 0.6rem;
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid var(--color-neon-green);
    white-space: nowrap;
}

/* Footer Stats */
.display-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(204, 255, 0, 0.2);
}

.stats-bar {
    display: flex;
    gap: 2rem;
}

.stat-item {
    flex: 1;
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--color-text-muted);
    margin-bottom: 0.3rem;
    letter-spacing: 0.1em;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-neon-green), var(--color-neon-blue));
    box-shadow: 0 0 10px var(--color-neon-green);
    animation: pulse-progress 2s infinite;
}

@keyframes pulse-progress {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s infinite ease-in-out;
}

.element-1 {
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.element-2 {
    bottom: -40px;
    left: -40px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.tech-hexagon {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--color-neon-blue);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation: rotate-slow 20s linear infinite;
}

.tech-circuit {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(204, 255, 0, 0.3);
    position: relative;
}

.tech-circuit::before,
.tech-circuit::after {
    content: '';
    position: absolute;
    background: var(--color-neon-green);
}

.tech-circuit::before {
    width: 20px;
    height: 1px;
    top: 10px;
    left: 10px;
}

.tech-circuit::after {
    width: 1px;
    height: 20px;
    top: 10px;
    left: 10px;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Particles */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-neon-green);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--color-neon-green);
    animation: particle-float 5s infinite;
}

@keyframes particle-float {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Responsive adjustments for 3D component */
@media (max-width: 768px) {
    .hero-3d-container {
        height: 400px;
    }
    
    .hero-3d-card {
        height: 350px;
        width: 95%;
    }
    
    .data-stream {
        display: none;
    }
    
    .floating-element {
        display: none;
    }
}/* ===== Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР СњР С’Р Р‡ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР С’Р Р‡ Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ ===== */
/* Р вЂќР С•Р В±Р В°Р Р†РЎРЉРЎвЂљР Вµ РЎРЊРЎвЂљР С•РЎвЂљ Р С”Р С•Р Т‘ Р вЂ™ Р С™Р С›Р СњР вЂўР В¦ РЎвЂћР В°Р в„–Р В»Р В° deploy/styles/main.css */

/* ====== Р СљР С›Р вЂР ВР вЂєР В¬Р СњР С›Р вЂў Р СљР вЂўР СњР В® (Р вЂР Р€Р В Р вЂњР вЂўР В ) ====== */

/* Р С™Р Р…Р С•Р С—Р С”Р В° Р В±РЎС“РЎР‚Р С–Р ВµРЎР‚-Р СР ВµР Р…РЎР‹ (РЎРѓР С”РЎР‚РЎвЂ№РЎвЂљР В° Р Р…Р В° Р Т‘Р ВµРЎРѓР С”РЎвЂљР С•Р С—Р Вµ) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-neon-green);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Р СљР С•Р В±Р С‘Р В»РЎРЉР Р…Р С•Р Вµ Р СР ВµР Р…РЎР‹ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
    border-top: 1px solid var(--border-neon);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--color-text);
    text-decoration: none;
    padding: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-links .nav-link:hover {
    border-left-color: var(--color-neon-green);
    color: var(--color-neon-green);
    padding-left: 1.5rem;
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.5);
}


/* ====== Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР СњР С’Р Р‡ Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ Р вЂќР вЂєР Р‡ Р СџР вЂєР С’Р СњР РЃР вЂўР СћР С›Р вЂ™ ====== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .comparison-deck {
        gap: 2rem;
    }
    
    .cyber-card {
        padding: 2rem;
    }
    
    .tech-wrapper {
        gap: 2rem;
    }
}


/* ====== Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ Р вЂќР вЂєР Р‡ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР В«Р Тђ (Р РЃР ВР В Р С›Р С™Р ВР вЂў Р В­Р С™Р В Р С’Р СњР В«) ====== */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* Р СџР С•Р С”Р В°Р В·Р В°РЎвЂљРЎРЉ Р С”Р Р…Р С•Р С—Р С”РЎС“ Р В±РЎС“РЎР‚Р С–Р ВµРЎР‚-Р СР ВµР Р…РЎР‹ */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Р СџР С•Р С”Р В°Р В·Р В°РЎвЂљРЎРЉ Р СР С•Р В±Р С‘Р В»РЎРЉР Р…Р С•Р Вµ Р СР ВµР Р…РЎР‹ */
    .mobile-nav {
        display: block;
    }
    
    /* Р РЋР С”РЎР‚РЎвЂ№РЎвЂљРЎРЉ Р Т‘Р ВµРЎРѓР С”РЎвЂљР С•Р С—Р Р…РЎС“РЎР‹ Р Р…Р В°Р Р†Р С‘Р С–Р В°РЎвЂ Р С‘РЎР‹ */
    .nav-links {
        display: none !important;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero РЎРѓР ВµР С”РЎвЂ Р С‘РЎРЏ */
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-box {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 1rem;
    }
    
    .stat-val {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cyber-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Р РЋР ВµР С”РЎвЂ Р С‘Р С‘ */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .transformation,
    .advantages,
    .case-studies,
    .process,
    .tech-stack,
    .clients,
    .collaboration {
        padding: 4rem 0;
    }
    
    /* Р С™Р В°РЎР‚РЎвЂљР С•РЎвЂЎР С”Р С‘ */
    .cyber-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    /* Р С™Р ВµР в„–РЎРѓРЎвЂ№ */
    .case-project {
        font-size: 1.5rem;
    }
    
    .case-visual img {
        max-height: 300px;
    }
    
    .case-full-content {
        padding: 2rem 1.5rem;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    /* Р СћР ВµРЎвЂ¦Р Р…Р С•Р В»Р С•Р С–Р С‘Р С‘ */
    .tech-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}


/* ====== Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ Р вЂќР вЂєР Р‡ Р СљР С’Р вЂєР В«Р Тђ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР В«Р Тђ (480px) ====== */

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .mobile-menu-btn span {
        width: 20px;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-label {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-box {
        flex: 0 0 100%;
        padding: 0.75rem;
    }
    
    .stat-val {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin: 1rem 0 1.5rem;
    }
    
    .cyber-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Р РЋР ВµР С”РЎвЂ Р С‘Р С‘ */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .transformation,
    .advantages,
    .case-studies,
    .process,
    .tech-stack,
    .clients,
    .collaboration {
        padding: 3rem 0;
    }
    
    /* Р РЋРЎР‚Р В°Р Р†Р Р…Р ВµР Р…Р С‘Р Вµ */
    .card-old, .card-new {
        max-width: 100%;
    }
    
    .card-header {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .visual-box {
        height: 200px;
    }
    
    .card-label {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .connector {
        height: 40px;
        font-size: 1.5rem;
    }
    
    /* Р С™Р В°РЎР‚РЎвЂљР С•РЎвЂЎР С”Р С‘ Р С—РЎР‚Р ВµР С‘Р СРЎС“РЎвЂ°Р ВµРЎРѓРЎвЂљР Р† */
    .cyber-card {
        padding: 1.25rem;
    }
    
    .card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin: 1rem 0 0.75rem;
    }
    
    .card-desc {
        font-size: 0.875rem;
    }
    
    /* Р С™Р ВµР в„–РЎРѓРЎвЂ№ */
    .case-project {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .case-visual {
        height: 250px;
    }
    
    .case-tag {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .spec-grid {
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1rem;
    }
    
    .spec-label {
        font-size: 0.75rem;
    }
    
    .spec-val {
        font-size: 0.875rem;
    }
    
    .tech-line {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .case-full-content {
        padding: 1.5rem 1rem;
    }
    
    .cyber-quote {
        font-size: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .mini-card {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 1.5rem;
        gap: 1rem;
    }
    
    .timeline-num {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.875rem;
    }
    
    /* Р СћР ВµРЎвЂ¦Р Р…Р С•Р В»Р С•Р С–Р С‘Р С‘ */
    .tech-head {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .tech-items {
        gap: 0.75rem;
    }
    
    .tech-items li {
        font-size: 0.875rem;
    }
    
    /* Р С™Р В»Р С‘Р ВµР Р…РЎвЂљРЎвЂ№ */
    .logo-ticker {
        font-size: 1.5rem;
        padding: 1rem 0;
    }
    
    .industry-box {
        padding: 1.25rem;
    }
    
    .industry-box h4 {
        font-size: 1.1rem;
    }
    
    .industry-box p {
        font-size: 0.875rem;
    }
    
    /* Collaboration */
    .collab-list {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .collab-right {
        display: none;
    }
    
    /* Footer */
    .logo.large {
        font-size: 1.75rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    .footer-msg {
        font-size: 0.875rem;
        padding: 1rem;
    }
    
    .footer-copy {
        font-size: 0.75rem;
        padding: 1rem 0;
    }
}


/* ====== Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ Р вЂќР вЂєР Р‡ Р С›Р В§Р вЂўР СњР В¬ Р СљР С’Р вЂєР В«Р Тђ Р В­Р С™Р В Р С’Р СњР С›Р вЂ™ (360px) ====== */

@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cyber-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .stat-box {
        padding: 0.625rem;
    }
    
    .case-visual {
        height: 200px;
    }
    
    .visual-box {
        height: 180px;
    }
    
    .timeline-num {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .logo-ticker {
        font-size: 1.25rem;
    }
}


/* ====== Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР ВР Р‡ Р вЂќР вЂєР Р‡ TOUCH Р Р€Р РЋР СћР В Р С›Р в„ўР РЋР СћР вЂ™ ====== */

@media (hover: none) and (pointer: coarse) {
    /* Р Р€Р Р†Р ВµР В»Р С‘РЎвЂЎР С‘РЎвЂљРЎРЉ РЎР‚Р В°Р В·Р СР ВµРЎР‚ Р С”Р В»Р С‘Р С”Р В°Р В±Р ВµР В»РЎРЉР Р…РЎвЂ№РЎвЂ¦ РЎРЊР В»Р ВµР СР ВµР Р…РЎвЂљР С•Р Р† Р Т‘Р В»РЎРЏ Р С—Р В°Р В»РЎРЉРЎвЂ Р ВµР Р† */
    .nav-link,
    .cyber-button,
    .mobile-nav-links .nav-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Р Р€Р В±РЎР‚Р В°РЎвЂљРЎРЉ hover РЎРЊРЎвЂћРЎвЂћР ВµР С”РЎвЂљРЎвЂ№, Р Т‘Р С•Р В±Р В°Р Р†Р С‘РЎвЂљРЎРЉ active */
    .cyber-button:active {
        transform: scale(0.98);
        box-shadow: 0 0 30px rgba(204, 255, 0, 0.8);
    }
    
    .cyber-card:active {
        transform: translateY(-2px);
    }
    
    /* Р С›Р С—РЎвЂљР С‘Р СР С‘Р В·Р В°РЎвЂ Р С‘РЎРЏ Р С—РЎР‚Р С•Р С‘Р В·Р Р†Р С•Р Т‘Р С‘РЎвЂљР ВµР В»РЎРЉР Р…Р С•РЎРѓРЎвЂљР С‘ Р Т‘Р В»РЎРЏ Р В°Р Р…Р С‘Р СР В°РЎвЂ Р С‘Р в„– */
    * {
        -webkit-tap-highlight-color: transparent;
    }
}


/* ====== Р вЂєР С’Р СњР вЂќР РЃР С’Р В¤Р СћР СњР С’Р Р‡ Р С›Р В Р ВР вЂўР СњР СћР С’Р В¦Р ВР Р‡ Р СњР С’ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР В«Р Тђ ====== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-box {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
    
    .mobile-nav {
        height: calc(100vh - 60px);
    }
}


/* ====== ACCESSIBILITY Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР ВР Р‡ ====== */

/* Р Р€Р Р†Р ВµР В»Р С‘РЎвЂЎР ВµР Р…Р С‘Р Вµ Р С”Р С•Р Р…РЎвЂљРЎР‚Р В°РЎРѓРЎвЂљР В° Р Т‘Р В»РЎРЏ Р СР С•Р В±Р С‘Р В»РЎРЉР Р…РЎвЂ№РЎвЂ¦ */
@media (max-width: 768px) {
    .hero-description,
    .card-desc,
    .spec-val,
    .timeline-content p {
        color: #ffffff;
        opacity: 0.95;
    }
}

/* Focus states Р Т‘Р В»РЎРЏ Р С”Р В»Р В°Р Р†Р С‘Р В°РЎвЂљРЎС“РЎР‚Р Р…Р С•Р в„– Р Р…Р В°Р Р†Р С‘Р С–Р В°РЎвЂ Р С‘Р С‘ */
.mobile-menu-btn:focus,
.nav-link:focus,
.cyber-button:focus {
    outline: 2px solid var(--color-neon-green);
    outline-offset: 2px;
}


/* ===== Р С™Р С›Р СњР вЂўР В¦ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР В«Р Тђ Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР ВР в„ў ===== */



/* ===== Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР СњР С’Р Р‡ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР С’Р Р‡ Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ ===== */
/* Р вЂќР С•Р В±Р В°Р Р†РЎРЉРЎвЂљР Вµ РЎРЊРЎвЂљР С•РЎвЂљ Р С”Р С•Р Т‘ Р вЂ™ Р С™Р С›Р СњР вЂўР В¦ РЎвЂћР В°Р в„–Р В»Р В° deploy/styles/main.css */

/* ====== Р СљР С›Р вЂР ВР вЂєР В¬Р СњР С›Р вЂў Р СљР вЂўР СњР В® (Р вЂР Р€Р В Р вЂњР вЂўР В ) ====== */

/* Р С™Р Р…Р С•Р С—Р С”Р В° Р В±РЎС“РЎР‚Р С–Р ВµРЎР‚-Р СР ВµР Р…РЎР‹ (РЎРѓР С”РЎР‚РЎвЂ№РЎвЂљР В° Р Р…Р В° Р Т‘Р ВµРЎРѓР С”РЎвЂљР С•Р С—Р Вµ) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-neon-green);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Р СљР С•Р В±Р С‘Р В»РЎРЉР Р…Р С•Р Вµ Р СР ВµР Р…РЎР‹ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
    border-top: 1px solid var(--border-neon);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--color-text);
    text-decoration: none;
    padding: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-links .nav-link:hover {
    border-left-color: var(--color-neon-green);
    color: var(--color-neon-green);
    padding-left: 1.5rem;
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.5);
}


/* ====== Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР СњР С’Р Р‡ Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ Р вЂќР вЂєР Р‡ Р СџР вЂєР С’Р СњР РЃР вЂўР СћР С›Р вЂ™ ====== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .comparison-deck {
        gap: 2rem;
    }
    
    .cyber-card {
        padding: 2rem;
    }
    
    .tech-wrapper {
        gap: 2rem;
    }
}


/* ====== Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ Р вЂќР вЂєР Р‡ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР В«Р Тђ (Р РЃР ВР В Р С›Р С™Р ВР вЂў Р В­Р С™Р В Р С’Р СњР В«) ====== */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* Р СџР С•Р С”Р В°Р В·Р В°РЎвЂљРЎРЉ Р С”Р Р…Р С•Р С—Р С”РЎС“ Р В±РЎС“РЎР‚Р С–Р ВµРЎР‚-Р СР ВµР Р…РЎР‹ */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Р СџР С•Р С”Р В°Р В·Р В°РЎвЂљРЎРЉ Р СР С•Р В±Р С‘Р В»РЎРЉР Р…Р С•Р Вµ Р СР ВµР Р…РЎР‹ */
    .mobile-nav {
        display: block;
    }
    
    /* Р РЋР С”РЎР‚РЎвЂ№РЎвЂљРЎРЉ Р Т‘Р ВµРЎРѓР С”РЎвЂљР С•Р С—Р Р…РЎС“РЎР‹ Р Р…Р В°Р Р†Р С‘Р С–Р В°РЎвЂ Р С‘РЎР‹ */
    .nav-links {
        display: none !important;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero РЎРѓР ВµР С”РЎвЂ Р С‘РЎРЏ */
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-box {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 1rem;
    }
    
    .stat-val {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cyber-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Р РЋР ВµР С”РЎвЂ Р С‘Р С‘ */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .transformation,
    .advantages,
    .case-studies,
    .process,
    .tech-stack,
    .clients,
    .collaboration {
        padding: 4rem 0;
    }
    
    /* Р С™Р В°РЎР‚РЎвЂљР С•РЎвЂЎР С”Р С‘ */
    .cyber-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    /* Р С™Р ВµР в„–РЎРѓРЎвЂ№ */
    .case-project {
        font-size: 1.5rem;
    }
    
    .case-visual img {
        max-height: 300px;
    }
    
    .case-full-content {
        padding: 2rem 1.5rem;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    /* Р СћР ВµРЎвЂ¦Р Р…Р С•Р В»Р С•Р С–Р С‘Р С‘ */
    .tech-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}


/* ====== Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ Р вЂќР вЂєР Р‡ Р СљР С’Р вЂєР В«Р Тђ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР В«Р Тђ (480px) ====== */

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .mobile-menu-btn span {
        width: 20px;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-label {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-box {
        flex: 0 0 100%;
        padding: 0.75rem;
    }
    
    .stat-val {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin: 1rem 0 1.5rem;
    }
    
    .cyber-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Р РЋР ВµР С”РЎвЂ Р С‘Р С‘ */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .transformation,
    .advantages,
    .case-studies,
    .process,
    .tech-stack,
    .clients,
    .collaboration {
        padding: 3rem 0;
    }
    
    /* Р РЋРЎР‚Р В°Р Р†Р Р…Р ВµР Р…Р С‘Р Вµ */
    .card-old, .card-new {
        max-width: 100%;
    }
    
    .card-header {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .visual-box {
        height: 200px;
    }
    
    .card-label {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .connector {
        height: 40px;
        font-size: 1.5rem;
    }
    
    /* Р С™Р В°РЎР‚РЎвЂљР С•РЎвЂЎР С”Р С‘ Р С—РЎР‚Р ВµР С‘Р СРЎС“РЎвЂ°Р ВµРЎРѓРЎвЂљР Р† */
    .cyber-card {
        padding: 1.25rem;
    }
    
    .card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin: 1rem 0 0.75rem;
    }
    
    .card-desc {
        font-size: 0.875rem;
    }
    
    /* Р С™Р ВµР в„–РЎРѓРЎвЂ№ */
    .case-project {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .case-visual {
        height: 250px;
    }
    
    .case-tag {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .spec-grid {
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1rem;
    }
    
    .spec-label {
        font-size: 0.75rem;
    }
    
    .spec-val {
        font-size: 0.875rem;
    }
    
    .tech-line {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .case-full-content {
        padding: 1.5rem 1rem;
    }
    
    .cyber-quote {
        font-size: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .mini-card {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 1.5rem;
        gap: 1rem;
    }
    
    .timeline-num {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.875rem;
    }
    
    /* Р СћР ВµРЎвЂ¦Р Р…Р С•Р В»Р С•Р С–Р С‘Р С‘ */
    .tech-head {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .tech-items {
        gap: 0.75rem;
    }
    
    .tech-items li {
        font-size: 0.875rem;
    }
    
    /* Р С™Р В»Р С‘Р ВµР Р…РЎвЂљРЎвЂ№ */
    .logo-ticker {
        font-size: 1.5rem;
        padding: 1rem 0;
    }
    
    .industry-box {
        padding: 1.25rem;
    }
    
    .industry-box h4 {
        font-size: 1.1rem;
    }
    
    .industry-box p {
        font-size: 0.875rem;
    }
    
    /* Collaboration */
    .collab-list {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .collab-right {
        display: none;
    }
    
    /* Footer */
    .logo.large {
        font-size: 1.75rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    .footer-msg {
        font-size: 0.875rem;
        padding: 1rem;
    }
    
    .footer-copy {
        font-size: 0.75rem;
        padding: 1rem 0;
    }
}


/* ====== Р С’Р вЂќР С’Р СџР СћР С’Р В¦Р ВР Р‡ Р вЂќР вЂєР Р‡ Р С›Р В§Р вЂўР СњР В¬ Р СљР С’Р вЂєР В«Р Тђ Р В­Р С™Р В Р С’Р СњР С›Р вЂ™ (360px) ====== */

@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cyber-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .stat-box {
        padding: 0.625rem;
    }
    
    .case-visual {
        height: 200px;
    }
    
    .visual-box {
        height: 180px;
    }
    
    .timeline-num {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .logo-ticker {
        font-size: 1.25rem;
    }
}


/* ====== Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР ВР Р‡ Р вЂќР вЂєР Р‡ TOUCH Р Р€Р РЋР СћР В Р С›Р в„ўР РЋР СћР вЂ™ ====== */

@media (hover: none) and (pointer: coarse) {
    /* Р Р€Р Р†Р ВµР В»Р С‘РЎвЂЎР С‘РЎвЂљРЎРЉ РЎР‚Р В°Р В·Р СР ВµРЎР‚ Р С”Р В»Р С‘Р С”Р В°Р В±Р ВµР В»РЎРЉР Р…РЎвЂ№РЎвЂ¦ РЎРЊР В»Р ВµР СР ВµР Р…РЎвЂљР С•Р Р† Р Т‘Р В»РЎРЏ Р С—Р В°Р В»РЎРЉРЎвЂ Р ВµР Р† */
    .nav-link,
    .cyber-button,
    .mobile-nav-links .nav-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Р Р€Р В±РЎР‚Р В°РЎвЂљРЎРЉ hover РЎРЊРЎвЂћРЎвЂћР ВµР С”РЎвЂљРЎвЂ№, Р Т‘Р С•Р В±Р В°Р Р†Р С‘РЎвЂљРЎРЉ active */
    .cyber-button:active {
        transform: scale(0.98);
        box-shadow: 0 0 30px rgba(204, 255, 0, 0.8);
    }
    
    .cyber-card:active {
        transform: translateY(-2px);
    }
    
    /* Р С›Р С—РЎвЂљР С‘Р СР С‘Р В·Р В°РЎвЂ Р С‘РЎРЏ Р С—РЎР‚Р С•Р С‘Р В·Р Р†Р С•Р Т‘Р С‘РЎвЂљР ВµР В»РЎРЉР Р…Р С•РЎРѓРЎвЂљР С‘ Р Т‘Р В»РЎРЏ Р В°Р Р…Р С‘Р СР В°РЎвЂ Р С‘Р в„– */
    * {
        -webkit-tap-highlight-color: transparent;
    }
}


/* ====== Р вЂєР С’Р СњР вЂќР РЃР С’Р В¤Р СћР СњР С’Р Р‡ Р С›Р В Р ВР вЂўР СњР СћР С’Р В¦Р ВР Р‡ Р СњР С’ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР В«Р Тђ ====== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-box {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
    
    .mobile-nav {
        height: calc(100vh - 60px);
    }
}


/* ====== ACCESSIBILITY Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР ВР Р‡ ====== */

/* Р Р€Р Р†Р ВµР В»Р С‘РЎвЂЎР ВµР Р…Р С‘Р Вµ Р С”Р С•Р Р…РЎвЂљРЎР‚Р В°РЎРѓРЎвЂљР В° Р Т‘Р В»РЎРЏ Р СР С•Р В±Р С‘Р В»РЎРЉР Р…РЎвЂ№РЎвЂ¦ */
@media (max-width: 768px) {
    .hero-description,
    .card-desc,
    .spec-val,
    .timeline-content p {
        color: #ffffff;
        opacity: 0.95;
    }
}

/* Focus states Р Т‘Р В»РЎРЏ Р С”Р В»Р В°Р Р†Р С‘Р В°РЎвЂљРЎС“РЎР‚Р Р…Р С•Р в„– Р Р…Р В°Р Р†Р С‘Р С–Р В°РЎвЂ Р С‘Р С‘ */
.mobile-menu-btn:focus,
.nav-link:focus,
.cyber-button:focus {
    outline: 2px solid var(--color-neon-green);
    outline-offset: 2px;
}


/* ===== Р С™Р С›Р СњР вЂўР В¦ Р СљР С›Р вЂР ВР вЂєР В¬Р СњР В«Р Тђ Р Р€Р вЂєР Р€Р В§Р РЃР вЂўР СњР ВР в„ў ===== */




/* ===== РЈР›РЈР§РЁР•РќРќРђРЇ РњРћР‘РР›Р¬РќРђРЇ РђР”РђРџРўРђР¦РРЇ ===== */
/* Р”РѕР±Р°РІСЊС‚Рµ СЌС‚РѕС‚ РєРѕРґ Р’ РљРћРќР•Р¦ С„Р°Р№Р»Р° deploy/styles/main.css */

/* ====== РњРћР‘РР›Р¬РќРћР• РњР•РќР® (Р‘РЈР Р“Р•Р ) ====== */

/* РљРЅРѕРїРєР° Р±СѓСЂРіРµСЂ-РјРµРЅСЋ (СЃРєСЂС‹С‚Р° РЅР° РґРµСЃРєС‚РѕРїРµ) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-neon-green);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* РњРѕР±РёР»СЊРЅРѕРµ РјРµРЅСЋ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
    border-top: 1px solid var(--border-neon);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--color-text);
    text-decoration: none;
    padding: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-links .nav-link:hover {
    border-left-color: var(--color-neon-green);
    color: var(--color-neon-green);
    padding-left: 1.5rem;
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.5);
}


/* ====== РЈР›РЈР§РЁР•РќРќРђРЇ РђР”РђРџРўРђР¦РРЇ Р”Р›РЇ РџР›РђРќРЁР•РўРћР’ ====== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .comparison-deck {
        gap: 2rem;
    }
    
    .cyber-card {
        padding: 2rem;
    }
    
    .tech-wrapper {
        gap: 2rem;
    }
}


/* ====== РђР”РђРџРўРђР¦РРЇ Р”Р›РЇ РњРћР‘РР›Р¬РќР«РҐ (РЁРР РћРљРР• Р­РљР РђРќР«) ====== */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* РџРѕРєР°Р·Р°С‚СЊ РєРЅРѕРїРєСѓ Р±СѓСЂРіРµСЂ-РјРµРЅСЋ */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* РџРѕРєР°Р·Р°С‚СЊ РјРѕР±РёР»СЊРЅРѕРµ РјРµРЅСЋ */
    .mobile-nav {
        display: block;
    }
    
    /* РЎРєСЂС‹С‚СЊ РґРµСЃРєС‚РѕРїРЅСѓСЋ РЅР°РІРёРіР°С†РёСЋ */
    .nav-links {
        display: none !important;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero СЃРµРєС†РёСЏ */
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-box {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 1rem;
    }
    
    .stat-val {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cyber-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* РЎРµРєС†РёРё */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .transformation,
    .advantages,
    .case-studies,
    .process,
    .tech-stack,
    .clients,
    .collaboration {
        padding: 4rem 0;
    }
    
    /* РљР°СЂС‚РѕС‡РєРё */
    .cyber-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    /* РљРµР№СЃС‹ */
    .case-project {
        font-size: 1.5rem;
    }
    
    .case-visual img {
        max-height: 300px;
    }
    
    .case-full-content {
        padding: 2rem 1.5rem;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    /* РўРµС…РЅРѕР»РѕРіРёРё */
    .tech-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}


/* ====== РђР”РђРџРўРђР¦РРЇ Р”Р›РЇ РњРђР›Р«РҐ РњРћР‘РР›Р¬РќР«РҐ (480px) ====== */

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .mobile-menu-btn span {
        width: 20px;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-label {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-box {
        flex: 0 0 100%;
        padding: 0.75rem;
    }
    
    .stat-val {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin: 1rem 0 1.5rem;
    }
    
    .cyber-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* РЎРµРєС†РёРё */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .transformation,
    .advantages,
    .case-studies,
    .process,
    .tech-stack,
    .clients,
    .collaboration {
        padding: 3rem 0;
    }
    
    /* РЎСЂР°РІРЅРµРЅРёРµ */
    .card-old, .card-new {
        max-width: 100%;
    }
    
    .card-header {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .visual-box {
        height: 200px;
    }
    
    .card-label {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .connector {
        height: 40px;
        font-size: 1.5rem;
    }
    
    /* РљР°СЂС‚РѕС‡РєРё РїСЂРµРёРјСѓС‰РµСЃС‚РІ */
    .cyber-card {
        padding: 1.25rem;
    }
    
    .card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin: 1rem 0 0.75rem;
    }
    
    .card-desc {
        font-size: 0.875rem;
    }
    
    /* РљРµР№СЃС‹ */
    .case-project {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .case-visual {
        height: 250px;
    }
    
    .case-tag {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .spec-grid {
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1rem;
    }
    
    .spec-label {
        font-size: 0.75rem;
    }
    
    .spec-val {
        font-size: 0.875rem;
    }
    
    .tech-line {
        font-size: 0.75rem;
        padding: 0.75rem;
    }
    
    .case-full-content {
        padding: 1.5rem 1rem;
    }
    
    .cyber-quote {
        font-size: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .mini-card {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    /* Timeline */
    .timeline-item {
        padding-left: 1.5rem;
        gap: 1rem;
    }
    
    .timeline-num {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.875rem;
    }
    
    /* РўРµС…РЅРѕР»РѕРіРёРё */
    .tech-head {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .tech-items {
        gap: 0.75rem;
    }
    
    .tech-items li {
        font-size: 0.875rem;
    }
    
    /* РљР»РёРµРЅС‚С‹ */
    .logo-ticker {
        font-size: 1.5rem;
        padding: 1rem 0;
    }
    
    .industry-box {
        padding: 1.25rem;
    }
    
    .industry-box h4 {
        font-size: 1.1rem;
    }
    
    .industry-box p {
        font-size: 0.875rem;
    }
    
    /* Collaboration */
    .collab-list {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .collab-right {
        display: none;
    }
    
    /* Footer */
    .logo.large {
        font-size: 1.75rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .label {
        font-size: 0.75rem;
    }
    
    .footer-msg {
        font-size: 0.875rem;
        padding: 1rem;
    }
    
    .footer-copy {
        font-size: 0.75rem;
        padding: 1rem 0;
    }
}


/* ====== РђР”РђРџРўРђР¦РРЇ Р”Р›РЇ РћР§Р•РќР¬ РњРђР›Р«РҐ Р­РљР РђРќРћР’ (360px) ====== */

@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cyber-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .stat-box {
        padding: 0.625rem;
    }
    
    .case-visual {
        height: 200px;
    }
    
    .visual-box {
        height: 180px;
    }
    
    .timeline-num {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .logo-ticker {
        font-size: 1.25rem;
    }
}


/* ====== РЈР›РЈР§РЁР•РќРРЇ Р”Р›РЇ TOUCH РЈРЎРўР РћР™РЎРўР’ ====== */

@media (hover: none) and (pointer: coarse) {
    /* РЈРІРµР»РёС‡РёС‚СЊ СЂР°Р·РјРµСЂ РєР»РёРєР°Р±РµР»СЊРЅС‹С… СЌР»РµРјРµРЅС‚РѕРІ РґР»СЏ РїР°Р»СЊС†РµРІ */
    .nav-link,
    .cyber-button,
    .mobile-nav-links .nav-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* РЈР±СЂР°С‚СЊ hover СЌС„С„РµРєС‚С‹, РґРѕР±Р°РІРёС‚СЊ active */
    .cyber-button:active {
        transform: scale(0.98);
        box-shadow: 0 0 30px rgba(204, 255, 0, 0.8);
    }
    
    .cyber-card:active {
        transform: translateY(-2px);
    }
    
    /* РћРїС‚РёРјРёР·Р°С†РёСЏ РїСЂРѕРёР·РІРѕРґРёС‚РµР»СЊРЅРѕСЃС‚Рё РґР»СЏ Р°РЅРёРјР°С†РёР№ */
    * {
        -webkit-tap-highlight-color: transparent;
    }
}


/* ====== Р›РђРќР”РЁРђР¤РўРќРђРЇ РћР РР•РќРўРђР¦РРЇ РќРђ РњРћР‘РР›Р¬РќР«РҐ ====== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-box {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
    
    .mobile-nav {
        height: calc(100vh - 60px);
    }
}


/* ====== ACCESSIBILITY РЈР›РЈР§РЁР•РќРРЇ ====== */

/* РЈРІРµР»РёС‡РµРЅРёРµ РєРѕРЅС‚СЂР°СЃС‚Р° РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… */
@media (max-width: 768px) {
    .hero-description,
    .card-desc,
    .spec-val,
    .timeline-content p {
        color: #ffffff;
        opacity: 0.95;
    }
}

/* Focus states РґР»СЏ РєР»Р°РІРёР°С‚СѓСЂРЅРѕР№ РЅР°РІРёРіР°С†РёРё */
.mobile-menu-btn:focus,
.nav-link:focus,
.cyber-button:focus {
    outline: 2px solid var(--color-neon-green);
    outline-offset: 2px;
}


/* ===== РљРћРќР•Р¦ РњРћР‘РР›Р¬РќР«РҐ РЈР›РЈР§РЁР•РќРР™ ===== */

