* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #22d3ee;
    --dark: #0f172a;
    --darker: #020617;
    --text: #e2e8f0;
    --text-muted: #94a3b8;

    --neural-color: #8b5cf6;
    --mobile-color: #06b6d4;
    --bots-color: #10b981;
    --crm-color: #f59e0b;
    --infra-color: #ef4444;
    --web-color: #ec4899;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, opacity 0.1s;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
            radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%),
            linear-gradient(135deg, var(--darker) 0%, #0a1628 50%, var(--darker) 100%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.content {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    max-width: 100vw;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(2, 6, 23, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo img {
    height: 32px;
    width: auto;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.8)); }
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    width: 100%;
}

.phone-link {
    color: var(--text) !important;
    font-weight: 600;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-content > p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: left;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.stat:nth-child(1) { animation-delay: 0.7s; }
.stat:nth-child(2) { animation-delay: 0.9s; }
.stat:nth-child(3) { animation-delay: 1.1s; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    min-width: 4.5ch;
    text-align: center;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.3s forwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.trust-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 400px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.trust-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(0); }
    50% { transform: translateY(-15px) rotateY(2deg); }
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeInLeft 0.5s ease forwards;
}

.trust-list li:nth-child(1) { animation-delay: 1.5s; }
.trust-list li:nth-child(2) { animation-delay: 1.7s; }
.trust-list li:nth-child(3) { animation-delay: 1.9s; }
.trust-list li:nth-child(4) { animation-delay: 2.1s; }
.trust-list li:nth-child(5) { animation-delay: 2.3s; }

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.trust-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card.neural:hover { border-color: var(--neural-color); box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2); }
.service-card.mobile:hover { border-color: var(--mobile-color); box-shadow: 0 30px 60px rgba(6, 182, 212, 0.2); }
.service-card.bots:hover { border-color: var(--bots-color); box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2); }
.service-card.crm:hover { border-color: var(--crm-color); box-shadow: 0 30px 60px rgba(245, 158, 11, 0.2); }
.service-card.infra:hover { border-color: var(--infra-color); box-shadow: 0 30px 60px rgba(239, 68, 68, 0.2); }
.service-card.web:hover { border-color: var(--web-color); box-shadow: 0 30px 60px rgba(236, 72, 153, 0.2); }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.neural .service-icon { background: linear-gradient(135deg, var(--neural-color), #a78bfa); }
.mobile .service-icon { background: linear-gradient(135deg, var(--mobile-color), #67e8f9); }
.bots .service-icon { background: linear-gradient(135deg, var(--bots-color), #34d399); }
.crm .service-icon { background: linear-gradient(135deg, var(--crm-color), #fbbf24); }
.infra .service-icon { background: linear-gradient(135deg, var(--infra-color), #f87171); }
.web .service-icon { background: linear-gradient(135deg, var(--web-color), #f472b6); }

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-price {
    display: inline-block;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    background: rgba(34, 211, 238, 0.2);
    transform: scale(1.05);
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    gap: 1rem;
}

.service-card-footer .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
    line-height: 1.4;
}

.service-card-footer .service-price {
    line-height: 1.4;
}

.service-page {
    position: relative;
    scroll-margin-top: 80px;
}

.service-page::before {
    content: '';
    display: block;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03) 50%, transparent);
}

.service-page-header {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    z-index: 0;
    animation: headerPulse 5s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.1); }
}

#neural .service-page-header::before { background: radial-gradient(ellipse at center, var(--neural-color) 0%, transparent 70%); }
#mobile .service-page-header::before { background: radial-gradient(ellipse at center, var(--mobile-color) 0%, transparent 70%); }
#bots .service-page-header::before { background: radial-gradient(ellipse at center, var(--bots-color) 0%, transparent 70%); }
#crm .service-page-header::before { background: radial-gradient(ellipse at center, var(--crm-color) 0%, transparent 70%); }
#infra .service-page-header::before { background: radial-gradient(ellipse at center, var(--infra-color) 0%, transparent 70%); }
#web .service-page-header::before { background: radial-gradient(ellipse at center, var(--web-color) 0%, transparent 70%); }

.service-page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.service-page-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
    animation: numberFloat 4s ease-in-out infinite;
}

@keyframes numberFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#neural .service-page-number { color: var(--neural-color); }
#mobile .service-page-number { color: var(--mobile-color); }
#bots .service-page-number { color: var(--bots-color); }
#crm .service-page-number { color: var(--crm-color); }
#infra .service-page-number { color: var(--infra-color); }
#web .service-page-number { color: var(--web-color); }

.service-page-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-3deg); }
    75% { transform: translateY(-5px) rotate(3deg); }
}

#neural .service-page-icon { background: linear-gradient(135deg, var(--neural-color), #a78bfa); box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3); }
#mobile .service-page-icon { background: linear-gradient(135deg, var(--mobile-color), #67e8f9); box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3); }
#bots .service-page-icon { background: linear-gradient(135deg, var(--bots-color), #34d399); box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3); }
#crm .service-page-icon { background: linear-gradient(135deg, var(--crm-color), #fbbf24); box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3); }
#infra .service-page-icon { background: linear-gradient(135deg, var(--infra-color), #f87171); box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3); }
#web .service-page-icon { background: linear-gradient(135deg, var(--web-color), #f472b6); box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3); }

.service-page-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

#neural .service-page-header h2 { color: var(--neural-color); text-shadow: 0 0 30px rgba(139, 92, 246, 0.5); }
#mobile .service-page-header h2 { color: var(--mobile-color); text-shadow: 0 0 30px rgba(6, 182, 212, 0.5); }
#bots .service-page-header h2 { color: var(--bots-color); text-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
#crm .service-page-header h2 { color: var(--crm-color); text-shadow: 0 0 30px rgba(245, 158, 11, 0.5); }
#infra .service-page-header h2 { color: var(--infra-color); text-shadow: 0 0 30px rgba(239, 68, 68, 0.5); }
#web .service-page-header h2 { color: var(--web-color); text-shadow: 0 0 30px rgba(236, 72, 153, 0.5); }

.service-page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.service-page-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
}

.service-main h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
    position: relative;
}

#neural .service-main h3 { border-color: var(--neural-color); color: var(--neural-color); }
#mobile .service-main h3 { border-color: var(--mobile-color); color: var(--mobile-color); }
#bots .service-main h3 { border-color: var(--bots-color); color: var(--bots-color); }
#crm .service-main h3 { border-color: var(--crm-color); color: var(--crm-color); }
#infra .service-main h3 { border-color: var(--infra-color); color: var(--infra-color); }
#web .service-main h3 { border-color: var(--web-color); color: var(--web-color); }

.service-main p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-block {
    margin-bottom: 3rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    background: rgba(15, 23, 42, 0.8);
}

#neural .feature-list li { border-color: var(--neural-color); }
#mobile .feature-list li { border-color: var(--mobile-color); }
#bots .feature-list li { border-color: var(--bots-color); }
#crm .feature-list li { border-color: var(--crm-color); }
#infra .feature-list li { border-color: var(--infra-color); }
#web .feature-list li { border-color: var(--web-color); }

.feature-list li::before {
    content: "✓";
    font-weight: bold;
    flex-shrink: 0;
}

#neural .feature-list li::before { color: var(--neural-color); }
#mobile .feature-list li::before { color: var(--mobile-color); }
#bots .feature-list li::before { color: var(--bots-color); }
#crm .feature-list li::before { color: var(--crm-color); }
#infra .feature-list li::before { color: var(--infra-color); }
#web .feature-list li::before { color: var(--web-color); }

.use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.use-case {
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.use-case:hover {
    transform: scale(1.1);
}

#neural .use-case { background: rgba(139, 92, 246, 0.15); color: var(--neural-color); border: 1px solid rgba(139, 92, 246, 0.3); }
#neural .use-case:hover { background: rgba(139, 92, 246, 0.3); box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
#mobile .use-case { background: rgba(6, 182, 212, 0.15); color: var(--mobile-color); border: 1px solid rgba(6, 182, 212, 0.3); }
#mobile .use-case:hover { background: rgba(6, 182, 212, 0.3); box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
#bots .use-case { background: rgba(16, 185, 129, 0.15); color: var(--bots-color); border: 1px solid rgba(16, 185, 129, 0.3); }
#bots .use-case:hover { background: rgba(16, 185, 129, 0.3); box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
#crm .use-case { background: rgba(245, 158, 11, 0.15); color: var(--crm-color); border: 1px solid rgba(245, 158, 11, 0.3); }
#crm .use-case:hover { background: rgba(245, 158, 11, 0.3); box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
#infra .use-case { background: rgba(239, 68, 68, 0.15); color: var(--infra-color); border: 1px solid rgba(239, 68, 68, 0.3); }
#infra .use-case:hover { background: rgba(239, 68, 68, 0.3); box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
#web .use-case { background: rgba(236, 72, 153, 0.15); color: var(--web-color); border: 1px solid rgba(236, 72, 153, 0.3); }
#web .use-case:hover { background: rgba(236, 72, 153, 0.3); box-shadow: 0 0 20px rgba(236, 72, 153, 0.3); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.process-step {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    color: white;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.2) rotate(360deg);
}

#neural .step-number { background: var(--neural-color); }
#mobile .step-number { background: var(--mobile-color); }
#bots .step-number { background: var(--bots-color); }
#crm .step-number { background: var(--crm-color); }
#infra .step-number { background: var(--infra-color); }
#web .step-number { background: var(--web-color); }

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* Results Block */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.result-item {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: scale(1.05);
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

#neural .result-value { color: var(--neural-color); }
#mobile .result-value { color: var(--mobile-color); }
#bots .result-value { color: var(--bots-color); }
#crm .result-value { color: var(--crm-color); }
#infra .result-value { color: var(--infra-color); }
#web .result-value { color: var(--web-color); }

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-width: 2px;
}

#neural .pricing-card.featured { border-color: var(--neural-color); box-shadow: 0 0 40px rgba(139, 92, 246, 0.2); }
#mobile .pricing-card.featured { border-color: var(--mobile-color); box-shadow: 0 0 40px rgba(6, 182, 212, 0.2); }
#bots .pricing-card.featured { border-color: var(--bots-color); box-shadow: 0 0 40px rgba(16, 185, 129, 0.2); }
#crm .pricing-card.featured { border-color: var(--crm-color); box-shadow: 0 0 40px rgba(245, 158, 11, 0.2); }
#infra .pricing-card.featured { border-color: var(--infra-color); box-shadow: 0 0 40px rgba(239, 68, 68, 0.2); }
#web .pricing-card.featured { border-color: var(--web-color); box-shadow: 0 0 40px rgba(236, 72, 153, 0.2); }

.pricing-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.pricing-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

#neural .pricing-value { color: var(--neural-color); }
#mobile .pricing-value { color: var(--mobile-color); }
#bots .pricing-value { color: var(--bots-color); }
#crm .pricing-value { color: var(--crm-color); }
#infra .pricing-value { color: var(--infra-color); }
#web .pricing-value { color: var(--web-color); }

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

#neural .pricing-card.featured .btn-primary { background: linear-gradient(135deg, var(--neural-color), #a78bfa); }
#mobile .pricing-card.featured .btn-primary { background: linear-gradient(135deg, var(--mobile-color), #67e8f9); }
#bots .pricing-card.featured .btn-primary { background: linear-gradient(135deg, var(--bots-color), #34d399); }
#crm .pricing-card.featured .btn-primary { background: linear-gradient(135deg, var(--crm-color), #fbbf24); }
#infra .pricing-card.featured .btn-primary { background: linear-gradient(135deg, var(--infra-color), #f87171); }
#web .pricing-card.featured .btn-primary { background: linear-gradient(135deg, var(--web-color), #f472b6); }

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.advantage-item:hover .advantage-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.advantage-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(34, 211, 238, 0.1));
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% { left: 100%; }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.1);
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-item span {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
}

.contact-form {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}

footer {
    background: rgba(2, 6, 23, 0.95);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

footer p {
    color: var(--text-muted);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1000;
    transition: width 0.1s;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

@media (max-width: 968px) {
    .hero-container,
    .contact-grid,
    .service-page-grid {
        grid-template-columns: 1fr;
    }

    .hero-container {
        text-align: center;
    }

    .stats-row {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .service-sidebar {
        position: static;
    }

    .nav-links {
        display: none;
    }

    .cursor, .cursor-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-page-number {
        font-size: 5rem;
    }

    .service-page-header h2 {
        font-size: 1.75rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating span {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-company {
    color: var(--accent) !important;
    font-weight: 500;
}

.testimonial-service {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Clients logos */
.clients-section {
    padding: 3rem 2rem;
    background: rgba(15, 23, 42, 0.3);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.clients-header {
    text-align: center;
    margin-bottom: 2rem;
}

.clients-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.client-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: default;
}

.client-logo:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .clients-logos {
        gap: 1.5rem;
    }

    .client-logo {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ==================== PROMO CARD ==================== */
.promo-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
}

.promo-card .promo-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promo-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-card .btn {
    width: 100%;
}

/* ==================== PORTFOLIO PREVIEW ==================== */
.portfolio-preview-section {
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05), transparent);
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.portfolio-preview-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.portfolio-preview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portfolio-preview-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.portfolio-preview-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.portfolio-preview-cta {
    text-align: center;
}

.portfolio-preview-cta .btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.portfolio-count {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-preview-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        padding: 1.5rem;
    }
}

/* ===========================================
   CAPTCHA STYLES
   =========================================== */

.captcha-group {
    margin-top: 1rem;
}

.captcha-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

#captchaQuestion {
    font-weight: 600;
    color: var(--accent);
}

.captcha-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.captcha-btn {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.captcha-btn:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.captcha-btn.selected {
    border-color: var(--accent);
    background: rgba(34, 211, 238, 0.2);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.captcha-btn.correct {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.captcha-btn.wrong {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Form message */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Submit button states */
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .captcha-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   MOBILE FIX - OVERFLOW & COUNTERS
   =========================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .content {
        overflow-x: hidden;
        width: 100%;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat {
        min-width: 80px;
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 2rem;
        min-width: 4ch;
        display: inline-block;
    }

    /* Hero section */
    .hero-content {
        max-width: 100%;
        overflow: hidden;
    }

    /* Section containers */
    .section-container,
    .section {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Service grid fix */
    .service-grid {
        overflow: visible;
    }
}