:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #2dd4bf;
    --secondary-dark: #14b8a6;
    --accent: #f97316;
    --accent-dark: #ea580c;
    
    --bg-dark: #0a0418;
    --bg-darker: #050210;
    --bg-card: rgba(18, 8, 30, 0.8);
    --bg-gradient: linear-gradient(135deg, #0a0418 0%, #1a0b2e 50%, #0a0418 100%);
    
    --text-primary: #ffffff;
    --text-secondary: #e2e8ff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #94a3b8;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(139, 92, 246, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: -1;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
}

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

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.preloader-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.preloader-progress::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: progress 2s ease forwards;
    transform: translateX(-100%);
}

@keyframes progress {
    to { transform: translateX(0); }
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: var(--shadow-glow);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 4, 24, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover, 
.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background: var(--primary);
    border-color: transparent;
}

.w-100 {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 4, 24, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 80px 20px 30px;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.05);
}

.chat-button i {
    font-size: 1.6rem;
    color: white;
}

.chat-notification {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 0;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    height: 480px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.chat-window.open {
    transform: scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.chat-header-info h4 {
    font-size: 0.9rem;
}

.chat-header-info p {
    font-size: 0.65rem;
}

.chat-lang {
    display: flex;
    gap: 5px;
}

.chat-lang-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.65rem;
    cursor: pointer;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    display: flex;
}

.chat-message.bot {
    justify-content: flex-start;
}

.message-content {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--glass-border);
    color: white;
}

.chat-faq {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--glass-border);
}

.faq-chip {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-chip:hover {
    background: var(--primary);
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -150px;
    left: -150px;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    bottom: -150px;
    right: -100px;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    animation: cardFloat 6s ease infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.code-window {
    background: #1a1128;
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    background: #221a30;
    padding: 10px;
    display: flex;
    gap: 6px;
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-body {
    padding: 15px;
}

.code-body pre {
    margin: 0;
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    color: #e2e8ff;
    font-family: 'Courier New', monospace;
}

.code-blue { color: #61afef; }
.code-green { color: #98c379; }
.code-orange { color: #d19a66; }


.code-body {
    animation: codeGlow 3s ease-in-out infinite;
}

@keyframes codeGlow {
    0%, 100% { text-shadow: 0 0 2px rgba(139, 92, 246, 0.3); }
    50% { text-shadow: 0 0 8px rgba(139, 92, 246, 0.6); }
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 10px 0;
}

.section-description {
    font-size: 1rem;
    color: var(--text-muted);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    margin-bottom: 15px;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-list li::before {
    content: '→';
    color: var(--primary);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 15px 0;
}

.service-link {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 25px;
}

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

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

.stat-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
}

.stat-circle svg {
    width: 100%;
    height: 100%;
}

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
}

.about-tech {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.tech-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.tech-item i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tech-item span {
    font-size: 0.7rem;
    display: block;
}

.testimonials {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(45, 212, 191, 0.05));
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author h4 {
    font-size: 1rem;
}

.testimonial-author p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.testimonials-dot.active {
    background: var(--primary);
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-item a,
.contact-item p {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-word;
    margin-bottom: 0;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.9rem;
}

.form-group textarea ~ label {
    top: 15px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    background: var(--bg-card);
    color: var(--primary);
}

.form-response {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    display: none;
    font-size: 0.85rem;
}

.form-response.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.form-response.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 15px;
}

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

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

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

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

.footer-subscribe p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .language-switcher {
        order: 1;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .about-stats {
        gap: 15px;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .chat-window {
        width: 300px;
        height: 450px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .contact-card,
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .chat-window {
        width: 280px;
        height: 420px;
        right: -20px;
    }
    
    .chat-faq {
        gap: 6px;
    }
    
    .faq-chip {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

@media (max-width: 360px) {
    .language-switcher {
        display: none;
    }
}



#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}


.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9000;
}

.chat-button {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 25px rgba(139,92,246,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    font-size: 1.4rem;
    color: white;
}
.chat-button:hover { transform: scale(1.1); box-shadow: 0 6px 35px rgba(139,92,246,0.7); }

.chat-notification {
    position: absolute;
    top: 6px; right: 6px;
    width: 12px; height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.4);opacity:0.7;} }

.chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 370px;
    background: rgba(10, 4, 24, 0.97);
    border: 1px solid rgba(139,92,246,0.3);
    border-radius: 20px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(139,92,246,0.15);
    backdrop-filter: blur(20px);
    max-height: 560px;
}
.chat-window.open { display: flex; animation: chatSlideUp 0.3s ease; }
@keyframes chatSlideUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

.chat-header {
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(45,212,191,0.1));
    border-bottom: 1px solid rgba(139,92,246,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; flex: 1; }
.chat-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.chat-header-info h4 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.chat-header-info p { font-size: 0.72rem; color: #22c55e; margin: 0; }
.chat-close {
    background: none; border: none; color: var(--text-muted);
    font-size: 1.1rem; cursor: pointer; padding: 4px; border-radius: 6px;
    transition: color 0.2s;
}
.chat-close:hover { color: white; }
.chat-lang { display: flex; gap: 4px; }
.chat-lang-btn {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted); padding: 3px 7px; border-radius: 6px;
    cursor: pointer; font-size: 0.65rem; font-weight: 600; transition: all 0.2s;
}
.chat-lang-btn.active, .chat-lang-btn:hover {
    background: linear-gradient(135deg,var(--primary),var(--secondary)); color:white;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
    max-height: 320px;
    scrollbar-width: thin;
    scrollbar-color: rgba(139,92,246,0.3) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 2px; }

.chat-message { display: flex; flex-direction: column; max-width: 88%; }
.chat-message.bot { align-self: flex-start; }
.chat-message.user { align-self: flex-end; }
.message-content {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.chat-message.bot .message-content {
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.2);
    border-bottom-left-radius: 4px;
    color: var(--text-secondary);
}
.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-bottom-right-radius: 4px;
}
.message-time { font-size: 0.65rem; color: var(--text-muted); margin-top: 4px; }
.chat-message.user .message-time { text-align: right; }

.chat-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 10px 14px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}
.typing-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: typingAnim 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingAnim { 0%,100%{transform:translateY(0);opacity:0.4;} 50%{transform:translateY(-5px);opacity:1;} }

.chat-input-area {
    padding: 12px 14px;
    border-top: 1px solid rgba(139,92,246,0.15);
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.chat-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 12px;
    padding: 10px 14px;
    color: white;
    font-family: inherit;
    font-size: 0.85rem;
    resize: none;
    max-height: 100px;
    transition: border-color 0.2s;
    outline: none;
    line-height: 1.4;
}
.chat-input:focus { border-color: var(--primary); }
.chat-input::placeholder { color: var(--text-muted); }
.chat-send {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none; border-radius: 10px;
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
.chat-send:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(139,92,246,0.4); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.chat-suggestions {
    padding: 8px 14px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.suggestion-chip {
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.25);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.suggestion-chip:hover { background: rgba(139,92,246,0.25); border-color: var(--primary); color: white; }


.crm-section { padding: 100px 0; }
.crm-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
}
.crm-table { width: 100%; border-collapse: collapse; }
.crm-table th {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--glass-border);
}
.crm-table td {
    padding: 14px 18px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(139,92,246,0.05);
    vertical-align: middle;
}
.crm-table tr:last-child td { border-bottom: none; }
.crm-table tr:hover td { background: rgba(139,92,246,0.04); }
.status-badge {
    padding: 3px 10px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 600;
}
.status-new { background: rgba(139,92,246,0.2); color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); }
.status-progress { background: rgba(249,115,22,0.2); color: #fb923c; border: 1px solid rgba(249,115,22,0.3); }
.status-done { background: rgba(34,197,94,0.2); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }


.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.hero-shape-2 { width: 350px; height: 350px; background: var(--secondary); bottom: -50px; left: -50px; animation-delay: 3s; }
.hero-shape-3 { width: 250px; height: 250px; background: var(--accent); top: 50%; left: 50%; animation-delay: 5s; }
@keyframes floatShape { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-30px) rotate(10deg);} }


.process-section { padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.process-step:hover { transform: translateY(-6px); border-color: var(--primary); }
.process-step::after {
    content: '';
    position: absolute;
    top: 50%; right: -24px;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}
.process-step:last-child::after { display: none; }
.step-number {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
    margin: 0 auto 16px;
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.83rem; color: var(--text-muted); }


.tech-marquee-section { padding: 50px 0; overflow: hidden; }
.tech-marquee { display: flex; gap: 40px; animation: marquee 20s linear infinite; width: max-content; }
.tech-marquee-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    padding: 12px 24px; border-radius: 40px;
    font-weight: 600; font-size: 0.9rem; white-space: nowrap;
    color: var(--text-muted);
}
.tech-marquee-item i { color: var(--primary); }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }


.floating-cards-section { padding: 80px 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.floating-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.floating-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.floating-card:hover::before { transform: scaleX(1); }
.floating-card:hover { transform: translateY(-8px); border-color: rgba(139,92,246,0.3); box-shadow: 0 20px 50px rgba(139,92,246,0.15); }
.card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card-text { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }


.cta-section {
    padding: 80px 0;
}
.cta-banner {
    background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(45,212,191,0.1) 100%);
    border: 1px solid rgba(139,92,246,0.3);
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(139,92,246,0.08) 0%, transparent 60%);
    animation: rotateSlow 15s linear infinite;
}
@keyframes rotateSlow { from{transform:rotate(0);} to{transform:rotate(360deg);} }
.cta-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.cta-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step::after { display: none; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .chat-window { width: calc(100vw - 40px); right: -5px; bottom: 72px; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .cards-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 1.6rem; }
    .cta-banner { padding: 40px 24px; }
}
@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
}


.admin-panel {
    min-height: 100vh;
    background: var(--bg-darker);
    display: flex;
}
.admin-sidebar {
    width: 240px;
    background: rgba(10,4,24,0.98);
    border-right: 1px solid var(--glass-border);
    padding: 24px 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.admin-sidebar-logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 16px;
}
.admin-nav-item {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}
.admin-nav-item:hover, .admin-nav-item.active {
    background: rgba(139,92,246,0.12);
    color: white;
    border-right: 2px solid var(--primary);
}
.admin-nav-item i { width: 18px; text-align: center; }
.admin-content { flex: 1; padding: 30px; overflow-y: auto; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.admin-title { font-size: 1.5rem; font-weight: 700; }
.admin-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
}
.admin-stat-val { font-size: 2rem; font-weight: 800; color: var(--primary); }
.admin-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }



.chat-faq-chips {
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.faq-chip {
    background: rgba(139,92,246,0.08);
    border: 1px solid rgba(139,92,246,0.22);
    color: var(--text-secondary);
    padding: 9px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
}
.faq-chip:hover {
    background: rgba(139,92,246,0.2);
    border-color: var(--primary);
    color: white;
    transform: translateX(3px);
}
.faq-chip-icon {
    margin-right: 8px;
    opacity: 0.7;
}
.chat-back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 8px 14px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: color 0.2s;
}
.chat-back-btn:hover { color: white; }
.chat-contact-links {
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    transition: all 0.2s;
}
.chat-contact-link:hover { background: rgba(139,92,246,0.2); transform: translateX(3px); }
.chat-contact-link i { color: var(--secondary); width: 16px; }


.custom-select-wrap { position: relative; }
.custom-select { position: relative; }
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}
.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
    border-color: var(--primary);
    background: rgba(139,92,246,0.07);
}
.custom-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #0e0620;
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: 14px;
    overflow: hidden;
    z-index: 100;
    display: none;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.custom-select.open .custom-select-options { display: block; animation: dropDown 0.2s ease; }
@keyframes dropDown { from{opacity:0;transform:translateY(-8px);} to{opacity:1;transform:translateY(0);} }
.select-option {
    padding: 12px 16px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(139,92,246,0.07);
}
.select-option:last-child { border-bottom: none; }
.select-option i { color: var(--primary); width: 14px; font-size: 0.8rem; }
.select-option:hover { background: rgba(139,92,246,0.12); color: white; }
.select-option.selected { background: rgba(139,92,246,0.15); color: white; }


.card-svg-icon {
    width: 44px;
    height: 44px;
    display: block;
    margin-bottom: 18px;
}
.card-icon { margin-bottom: 0; }


.cta-buttons .btn { min-width: 180px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }


.process-icon-svg { width: 28px; height: 28px; margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }


.custom-select-wrap .form-group-label {
    position: absolute;
    top: -9px; left: 12px;
    font-size: 0.72rem;
    color: var(--primary);
    background: var(--bg-dark);
    padding: 0 4px;
    pointer-events: none;
}




.floating-card .card-icon {
    width: 54px; height: 54px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}
.floating-card:hover .card-icon {
    background: rgba(139,92,246,0.2);
    border-color: rgba(139,92,246,0.4);
    transform: rotate(-5deg) scale(1.05);
}


.service-card {
    position: relative;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.4s ease;
    pointer-events: none;
}
.service-card:hover::after {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}


.testimonial-card {
    border-left: 3px solid var(--primary);
}


.cta-banner {
    overflow: hidden;
}


.step-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 6px 20px rgba(139,92,246,0.35);
}


.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    color: rgba(255, 255, 255, 0.4);;
}


.contact-item a { color: #9bb1ec; text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.contact-item a:hover { opacity: 0.8; }


.footer-links a { transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }


.hero-badge {
    box-shadow: 0 0 20px rgba(139,92,246,0.15);
}


.scroll-top { bottom: 30px; }


.tech-item {
    transition: transform 0.2s, color 0.2s;
}
.tech-item:hover { transform: translateY(-3px); color: white; }
.tech-item:hover i { color: var(--secondary); }


.circle-progress { stroke: url(#grad1); }
.circle-bg { stroke: rgba(139,92,246,0.1); }





.floating-card .card-icon {
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    margin-left: 0 !important;
}
.card-svg-icon {
    width: 26px !important;
    height: 26px !important;
    display: block !important;
    margin: 0 !important;
    flex-shrink: 0;
}


.stat-circle svg {
    display: block;
    overflow: visible;
}
.circle-bg { stroke: rgba(139,92,246,0.12); }
.circle-progress {
    stroke: url(#grad1);
    transform: rotate(-90deg);
    transform-origin: 60px 60px;
    transition: stroke-dashoffset 1.5s ease;
}

.stat-circle svg polygon,
.stat-circle svg path[fill]:not([fill="none"]) { display: none; }


.scroll-top {
    bottom: 110px !important;
    right: 24px !important;
}


.chat-widget {
    bottom: 28px !important;
    right: 24px !important;
}


.cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}
.cta-buttons .btn-outline {
    border: 2px solid rgba(255,255,255,0.25);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}
.cta-buttons .btn-outline:hover {
    border-color: var(--primary);
    background: rgba(139,92,246,0.1);
}
.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
}

.stat-circle svg {
    position: absolute;
    inset: 0;
    width: 120px;
    height: 120px;
    display: block;
}

.stat-circle .stat-value {
    position: absolute;
    top: 60px;
    left: 60px;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
    z-index: 2;
}
.logo-code-text {
    display: inline-block;
    min-width: 64px;
    font-family: 'Inter', 'Courier New', monospace;
    font-weight: 900;
    font-size: inherit;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-shadow:
        0 0 8px rgba(45, 212, 191, 0.55),
        0 0 18px rgba(139, 92, 246, 0.35);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.logo-code-text.is-scrambling {
    color: #2dd4bf;
    text-shadow:
        0 0 10px rgba(45, 212, 191, 0.8),
        0 0 24px rgba(139, 92, 246, 0.55);
}
.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
}

.form-response {
    animation: formResponseIn .35s ease both;
}

@keyframes formResponseIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#submitBtn:disabled {
    opacity: .8;
    cursor: not-allowed;
}
