:root {
    /* Цветова палитра */
            --primary-blue: #2A5C82;
            --coral-accent: #FF6B6B;
            --yellow-accent: #FFD166;
            --teal-green: #61b0b0;
            --dark-charcoal: #292F36;
            --light-bg: #F7FFF7;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-600: #4b5563;
            --gray-900: #111827;
            
            /* Шрифтови семейства */
            --ff-display: 'Sofia Sans Variable', 'Sofia Sans', system-ui, sans-serif;
            --ff-text: 'Inter Variable', 'Inter', system-ui, sans-serif;
            
            /* Основни размери */
            --fs-base: 16px;
            --lh-base: 1.55;
            --fw-normal: 400;
            --fw-medium: 500;
            --fw-bold: 700;
            
            /* Spacing */
            --space-xs: 0.25rem;
            --space-sm: 0.5rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 2rem;
            
            /* Border radius */
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Оптимизирана типография с кирилска поддръжка */
        body {
            font-family: var(--ff-text);
            font-size: var(--fs-base);
            line-height: var(--lh-base);
            font-weight: var(--fw-normal);
            color: var(--gray-900);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Заглавия с Sofia Sans */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--ff-display);
            font-weight: var(--fw-bold);
            line-height: 1.2;
            margin: 0 0 1rem 0;
        }
        
        h1 { font-size: clamp(2.625rem, 5vw, 4.5rem); } /* 42px-72px */
        h2 { font-size: clamp(2rem, 4vw, 3rem); }      /* 32px-48px */
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }    /* 24px-32px */
        h4 { font-size: 1.25rem; }
        h5 { font-size: 1.125rem; }
        h6 { font-size: 1rem; }
        
        /* Параграфи */
        p {
            font-family: var(--ff-text);
            margin: 0 0 1rem 0;
        }
        
        /* Бутони */
        button, .btn, .cta-header {
            font-family: var(--ff-display);
            font-weight: var(--fw-medium);
            letter-spacing: 0.025em;
        }
        
        /* Fallback за браузъри без Variable Fonts */
        @supports not (font-variation-settings: normal) {
            :root {
                --ff-display: 'Sofia Sans', system-ui, sans-serif;
                --ff-text: 'Inter', system-ui, sans-serif;
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 10px auto;
            padding: 0 24px;
        }
        
        /* Header - Подобрен с по-добър padding и модерен дизайн */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: linear-gradient(90deg, rgba(42, 92, 130, 0.95) 0%, rgba(20, 70, 100, 0.95) 100%);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
            padding: 15px 0;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        /* Logo styling for consistent size across all pages */
        .logo img {
            max-height: 60px;
            width: auto;
            display: block;
        }
        
        /* Footer logo styling */
        .footer-logo-img {
            max-height: 90px;
            width: auto;
            display: block;
        }
        
        .footer-logo-container {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }
        
        @media (max-width: 768px) {
            .footer-logo-container {
                justify-content: center !important;
            }
            
            .footer-logo-img {
                margin: 0 auto;
            }
        }
        
        /* Strikethrough animation for negative messaging */
        .strikethrough-text {
            position: relative;
            display: inline-block;
            color: var(--yellow-accent);
            opacity: 0.9;
            font-weight: var(--fw-bold);
        }
        
        .strikethrough-text::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--coral-accent);
            transition: width 0.5s ease-in-out 1s;
            transform: translateY(-50%);
            z-index: 1;
        }
        
        .strikethrough-text.animate::before {
            width: 100%;
        }
        
        .x-mark {
            display: inline-block;
            margin-left: 8px;
            font-size: 1.2em;
            color: var(--coral-accent);
            font-weight: bold;
            opacity: 0;
            transform: scale(0);
            transition: all 0.5s ease-in-out 1.8s;
        }
        
        .x-mark.animate {
            opacity: 1;
            transform: scale(1);
        }
        
        @keyframes strikeThrough {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes xMarkAppear {
            0% { 
                opacity: 0; 
                transform: scale(0) rotate(-180deg); 
            }
            50% { 
                transform: scale(1.2) rotate(0deg); 
            }
            100% { 
                opacity: 1; 
                transform: scale(1) rotate(0deg); 
            }
        }
        
        /* Hero warning and choice animations */
        .hero-warning {
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--coral-accent);
            margin: 20px 0 10px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-in-out 5s;
        }
        
        .hero-warning.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hero-choice {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--yellow-accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin: 10px 0 30px 0;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 6.5s;
        }
        
        .hero-choice {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin: 40px 0 20px 0;
            position: relative;
            z-index: 1;
        }
        
        .choice-line {
            font-family: var(--ff-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--yellow-accent);
            text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 1;
            transform: translateY(30px);
            position: relative;
            z-index: 101;
            transition: all 0.8s ease-out;
        }
        
        .choice-line.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Fallback - show immediately if JS fails */
        .choice-line:nth-child(1) { animation-delay: 1s; }
        .choice-line:nth-child(2) { animation-delay: 2s; }  
        .choice-line:nth-child(3) { animation-delay: 3s; }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px); 
            }
            to { 
                opacity: 1;
                transform: translateY(0); 
            }
        }
        
        .hero-choice.loaded .choice-line:nth-child(1) {
            animation: slideUp 0.8s ease-out 1s both;
        }
        
        .hero-choice.loaded .choice-line:nth-child(2) {
            animation: slideUp 0.8s ease-out 2s both;
        }
        
        .hero-choice.loaded .choice-line:nth-child(3) {
            animation: slideUp 0.8s ease-out 3s both;
        }
        
        .hero-choice.animate .choice-line.animate {
            animation: pulse 2s ease-in-out infinite 1s;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #F7FFF7;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: white;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--yellow-accent);
            transition: all 0.2s ease;
            transform: translateX(-50%);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-header {
            background: var(--teal-green);
            color: white;
            border: 2px solid white;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 15px rgba(97, 176, 176, 0.3);
        }
        
        .cta-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(97, 176, 176, 0.4);
            background: #4a9999;
        }
        
        /* Hero Section - Добавени визуални елементи */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        /* Removed electric sparks - keeping grid only */
        
        /* Добавени декоративни елементи */
/* Статичен grid остава същия */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

/* Контейнер за всички светещи точки */
.hero-content {
    padding-top: 70px;
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Electric trail animation removed */
        
        .hero-decoration {
            position: absolute;
            top: 60%;
            left: 70%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 30px;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 32px;
            backdrop-filter: blur(10px);
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
        }
        
        .hero-highlight {
            background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--coral-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .ai-icon {
            display: inline-block;
            color: white;
            font-size: 1.2em;
            margin-left: 0.4em;
            opacity: 1;
            transform: scale(1) rotate(0deg);
            text-shadow: 
                0 0 10px rgba(255, 255, 255, 0.8),
                0 0 20px rgba(255, 255, 255, 0.6),
                0 0 30px rgba(255, 255, 255, 0.4);
        }
        
        /* Lazy-loaded star animation for SEO performance */
        .ai-icon.animate-star {
            animation: starAnimation s ease-in-out infinite;
        }
        
        @keyframes starAnimation {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                text-shadow: 
                    0 0 10px rgba(255, 255, 255, 0.8),
                    0 0 20px rgba(255, 255, 255, 0.6),
                    0 0 30px rgba(255, 255, 255, 0.4);
            }
            25% {
                transform: scale(1.1) rotate(90deg);
                text-shadow: 
                    0 0 15px rgba(255, 215, 0, 0.9),
                    0 0 25px rgba(255, 215, 0, 0.7),
                    0 0 35px rgba(255, 215, 0, 0.5);
            }
            50% {
                transform: scale(0.9) rotate(180deg);
                text-shadow: 
                    0 0 20px rgba(255, 107, 107, 0.9),
                    0 0 30px rgba(255, 107, 107, 0.7),
                    0 0 40px rgba(255, 107, 107, 0.5);
            }
            75% {
                transform: scale(1.05) rotate(270deg);
                text-shadow: 
                    0 0 12px rgba(97, 176, 176, 0.9),
                    0 0 22px rgba(97, 176, 176, 0.7),
                    0 0 32px rgba(97, 176, 176, 0.5);
            }
        }
        
        @keyframes dollarAnimation {
            0% {
                opacity: 0;
                transform: scale(0) rotate(-180deg);
            }
            20% {
                opacity: 1;
                transform: scale(1.2) rotate(0deg);
            }
            30% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
            70% {
                opacity: 1;
                transform: scale(1) rotate(720deg);
            }
            90% {
                opacity: 1;
                transform: scale(1.2) rotate(900deg);
            }
            100% {
                opacity: 0;
                transform: scale(0) rotate(1080deg);
            }
        }
        
        .hero-subtitle {
            font-size: 20px;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 48px;
            font-weight: 400;
        }
        
      .hero-buttons {
    display: flex;
    justify-content: center; /* This centers the buttons */
    gap: 20px;
    flex-wrap: wrap;
}
        
        .btn-primary {
            background: linear-gradient(135deg, var(--coral-accent) 0%, #e55555 100%);
            color: white;
            padding: 18px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 18px 36px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .btn-video {
            background: linear-gradient(135deg, var(--yellow-accent) 0%, #ff9d00 100%);
            color: var(--primary-blue);
            padding: 18px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(255, 223, 14, 0.242);
        }
        
        .btn-video:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 223, 107, 0.4);
        }

        /* Section Styles */
        section {
            padding: 130px 0;
        }
        
        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
            color: var(--gray-900);
            letter-spacing: -0.02em;
        }
        
        .section-subtitle {
            font-size: 20px;
            text-align: center;
            color: var(--gray-600);
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Services Section - Подобрен контраст */
        .services {
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-bg) 100%);
            position: relative;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(42, 92, 130, 0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
            opacity: 0.3;
        }
        
        .services .container {
            position: relative;
            z-index: 2;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }
        
        .service-card {
            background: var(--white);
            padding: 48px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 3px solid #FF6B6B;
            position: relative;
            overflow: hidden;
            animation: electricGlow 3s ease-in-out infinite;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        @keyframes electricBorder {
            0% { 
                background-position: 0% 50%;
                background-size: 200% 100%;
            }
            50% { 
                background-position: 100% 50%; 
                background-size: 200% 100%;
            }
            100% { 
                background-position: 0% 50%;
                background-size: 200% 100%;
            }
        }
        
        @keyframes electricGlow {
            0% { 
                border-color: #FF6B6B;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }
            25% {
                border-color: #FFD166;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }
            50% {
                border-color: #61b0b0;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }
            75% {
                border-color: #2A5C82;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }
            100% { 
                border-color: #FF6B6B;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }
        }
        
        @keyframes electricPulse {
            0%, 100% { opacity: 0; }
            25% { opacity: 0.2; }
            50% { opacity: 0.5; }
            75% { opacity: 0.3; }
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-card:hover::before {
            opacity: 1;
            filter: blur(12px);
        }
        
        .service-card:hover::after {
            animation-duration: 1s;
        }
        
        /* Individual card electric delays for realistic effect */
        .service-card:nth-child(1) { animation-delay: 0s; }
        .service-card:nth-child(2) { animation-delay: 0.5s; }
        .service-card:nth-child(3) { animation-delay: 1s; }
        .service-card:nth-child(4) { animation-delay: 1.5s; }
        .service-card:nth-child(5) { animation-delay: 2s; }
        .service-card:nth-child(6) { animation-delay: 2.5s; }
        
        .service-card:nth-child(1)::before { animation-delay: 0.2s; }
        .service-card:nth-child(2)::before { animation-delay: 0.7s; }
        .service-card:nth-child(3)::before { animation-delay: 1.2s; }
        .service-card:nth-child(4)::before { animation-delay: 1.7s; }
        .service-card:nth-child(5)::before { animation-delay: 2.2s; }
        .service-card:nth-child(6)::before { animation-delay: 2.7s; }
        
        .service-card:nth-child(1)::after { animation-delay: 0.4s; }
        .service-card:nth-child(2)::after { animation-delay: 0.9s; }
        .service-card:nth-child(3)::after { animation-delay: 1.4s; }
        .service-card:nth-child(4)::after { animation-delay: 1.9s; }
        .service-card:nth-child(5)::after { animation-delay: 2.4s; }
        .service-card:nth-child(6)::after { animation-delay: 2.9s; }
        
        .service-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            box-shadow: 0 4px 15px rgba(42, 92, 130, 0.2);
        }
        
        .service-icon svg {
            width: 36px;
            height: 36px;
            fill: white;
        }
        
        .service-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 18px;
        }
        
        .service-card p {
            color: var(--gray-600);
            line-height: 1.7;
            font-size: 16px;
        }
        
        /* About Section - Clean Professional Design */
        .about {
            background: linear-gradient(135deg, #fafbfc 0%, var(--white) 50%, #f8fafc 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(255, 107, 107, 0.1) 20%, rgba(42, 92, 130, 0.1) 50%, rgba(255, 209, 102, 0.1) 80%, transparent 100%);
            transform: translateX(-50%);
        }
        
        .about::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 10%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 0;
            min-height: 600px;
        }
        
        .about-header h2 {
            font-family: var(--ff-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            color: var(--dark-charcoal);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .about-header .subtitle {
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 50px;
        }
        
        .services-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 28px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .service-item:hover {
            border-color: var(--coral-accent);
            box-shadow: 0 8px 32px rgba(255, 107, 107, 0.12);
            transform: translateY(-4px);
        }
        
        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .service-icon svg {
            width: 28px;
            height: 28px;
        }
        
        .service-icon.web {
            background: rgba(42, 92, 130, 0.1);
        }
        .service-icon.web svg { color: var(--primary-blue); }
        
        .service-icon.ads {
            background: rgba(255, 107, 107, 0.1);
        }
        .service-icon.ads svg { color: var(--coral-accent); }
        
        .service-icon.brand {
            background: rgba(255, 209, 102, 0.1);
        }
        .service-icon.brand svg { color: var(--yellow-accent); }
        
        .service-icon.video {
            background: rgba(156, 39, 176, 0.1);
        }
        .service-icon.video svg { color: #9c27b0; }
        
        .service-icon.research {
            background: rgba(97, 176, 176, 0.1);
        }
        .service-icon.research svg { color: var(--teal-green); }
        
        .service-content h3 {
            font-family: var(--ff-display);
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-charcoal);
            margin-bottom: 8px;
        }
        
        .service-content p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
            margin: 0;
        }
        
        .about-visual {
            position: sticky;
            top: 120px;
        }
        
        .visual-content {
            background: linear-gradient(135deg, var(--primary-blue), var(--teal-green));
            border-radius: 20px;
            padding: 50px 40px;
            color: white;
            text-align: center;
        }
        
        .visual-title {
            font-family: var(--ff-display);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .visual-subtitle {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-family: var(--ff-display);
            font-size: 36px;
            font-weight: 800;
            display: block;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.8;
            margin: 0;
        }
        
        .about-main {
            padding-right: 60px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        
        /* Duplicate service-card rules removed - using electric version above */
        
        /* Enhanced Service Card Styles with Corner Icons and Hover Effects */
        .service-card {
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }
        
        .corner-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.7;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .corner-icon svg {
            width: 18px;
            height: 18px;
        }
        
        /* Different hover gradients for each service */
        .service-card[data-service="research"]:hover::before {
            background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
            opacity: 1;
            height: 8px;
        }
        
        .service-card[data-service="video"]:hover::before {
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            opacity: 1;
            height: 8px;
        }
        
        .service-card[data-service="ai"]:hover::before {
            background: linear-gradient(135deg, #10B981 0%, #047857 100%);
            opacity: 1;
            height: 8px;
        }
        
        .service-card[data-service="meta"]:hover::before {
            background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
            opacity: 1;
            height: 8px;
        }
        
        .service-card[data-service="web"]:hover::before {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
            opacity: 1;
            height: 8px;
        }
        
        .service-card[data-service="brand"]:hover::before {
            background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
            opacity: 1;
            height: 8px;
        }
        
        /* Corner icon colors for each service */
        .service-card[data-service="research"] .corner-icon svg {
            color: #3B82F6;
        }
        
        .service-card[data-service="video"] .corner-icon svg {
            color: #F59E0B;
        }
        
        .service-card[data-service="ai"] .corner-icon svg {
            color: #10B981;
        }
        
        .service-card[data-service="meta"] .corner-icon svg {
            color: #EF4444;
        }
        
        .service-card[data-service="web"] .corner-icon svg {
            color: #8B5CF6;
        }
        
        .service-card[data-service="brand"] .corner-icon svg {
            color: #EC4899;
        }
        
        /* Enhanced hover effect for corner icons */
        .service-card:hover .corner-icon {
            opacity: 1;
            transform: scale(1.1);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* Consistent card sizing */
        @media (min-width: 768px) {
            .service-card {
                min-height: 320px;
            }
        }
        
        @media (max-width: 767px) {
            .service-card {
                min-height: 280px;
            }
        }
        
        .service-number {
            font-family: var(--ff-display);
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-400);
            margin-bottom: 20px;
            letter-spacing: 0.1em;
        }
        
        .service-title {
            font-family: var(--ff-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--dark-charcoal);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .service-description {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.6;
            margin: 0;
        }
        
        .about-sidebar {
            padding-left: 60px;
            position: relative;
        }
        
        .sidebar-content {
            position: sticky;
            top: 140px;
        }
        
        .results-panel {
            background: linear-gradient(135deg, var(--dark-charcoal) 0%, #1a1f24 100%);
            border-radius: 32px;
            padding: 48px 40px;
            color: white;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .results-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.15) 0%, rgba(42, 92, 130, 0.05) 50%, transparent 70%);
            pointer-events: none;
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .results-panel > * {
            position: relative;
            z-index: 1;
        }
        
        .panel-title {
            font-family: var(--ff-display);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: white;
        }
        
        .panel-subtitle {
            font-size: 16px;
            opacity: 0.8;
            margin-bottom: 40px;
            line-height: 1.5;
        }
        
        .metrics-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .metric-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .metric-item::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: var(--coral-accent);
            transition: width 0.4s ease;
        }
        
        .metric-item:hover::before {
            width: 100%;
        }
        
        .metric-item:last-child {
            border-bottom: none;
        }
        
        .metric-item:hover {
            padding-left: 8px;
            background: rgba(255, 255, 255, 0.02);
        }
        
        .metric-label {
            font-size: 14px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .metric-item:hover .metric-label {
            opacity: 1;
        }
        
        .metric-value {
            font-family: var(--ff-display);
            font-size: 20px;
            font-weight: 700;
            color: var(--coral-accent);
            transition: all 0.3s ease;
        }
        
        .metric-item:hover .metric-value {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
        }
        
        .stat-card {
            text-align: center;
            padding: 40px 28px;
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-bg) 100%);
            border-radius: 20px;
            border: 2px solid var(--gray-100);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 102, 0.1), transparent);
            transition: all 0.6s ease;
        }
        
        .stat-card:hover::before {
            left: 100%;
        }
        
        .stat-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(42, 92, 130, 0.15);
        }
        
        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 52px;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
            margin-bottom: 12px;
        }
        
        .stat-label {
            font-size: 16px;
            color: var(--gray-600);
            font-weight: 500;
        }
        
        /* Video Section */
        .video-section {
            background: linear-gradient(135deg, var(--gray-900) 0%, var(--dark-charcoal) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><pattern id="circuit" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20h40M20 0v40" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circuit)"/></svg>');
        }
        
        .video-section .container {
            position: relative;
            z-index: 2;
        }
        
        .video-section .section-title {
            color: white;
        }
        
        .video-section .section-subtitle {
            color: var(--gray-300);
        }
        
        .video-container {
            max-width: 800px;
            margin: 0 auto 60px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }
        
        .video-placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
        }
        
        .play-button {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        .play-button:hover {
            background: white;
            transform: scale(1.15);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }
        
        .play-button svg {
            width: 36px;
            height: 36px;
            fill: var(--primary-blue);
            margin-left: 4px;
        }
        
        /* Contact Section - Подобрен дизайн на формата */
        .contact {
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-bg) 100%);
            position: relative;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: start;
        }
        
        .contact-info {
            position: relative;
        }
        
        .contact-info h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 40px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 28px;
            position: relative;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--coral-accent) 0%, var(--yellow-accent) 100%);
            border-radius: 2px;
        }
        
        .contact-info p {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 18px;
        }
        
        .contact-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 24px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            border-left: 4px solid var(--teal-green);
        }
        
        .contact-feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--teal-green) 0%, var(--primary-blue) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
        }
        
        .contact-feature-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }
        
        .contact-feature-text strong {
            color: var(--gray-900);
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
        }
        
        .contact-feature-text {
            color: var(--gray-600);
        }
        
        .contact-form {
            background: var(--white);
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--gray-100);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--coral-accent) 0%, var(--yellow-accent) 50%, var(--teal-green) 100%);
        }
        
        .form-group {
            margin-bottom: 28px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--gray-900);
            font-size: 15px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.2s ease;
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(42, 92, 130, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            color: white;
            padding: 20px 40px;
            border: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(42, 92, 130, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(42, 92, 130, 0.4);
        }
        
        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        /* ==========================================
           AI AGENT STORY SECTION
           ========================================== */

        .ai-agent-section {
            padding: 120px 0;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .ai-agent-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 209, 102, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .ai-story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .ai-video-container {
            position: relative;
        }

        .ai-video-placeholder {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .ai-video-placeholder:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .ai-video-placeholder:hover .video-thumbnail {
            transform: scale(1.05);
        }

        .ai-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 3px solid rgba(42, 92, 130, 0.2);
        }

        .ai-play-button:hover {
            background: rgba(255, 255, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
            border-color: var(--primary-blue);
            box-shadow: 0 8px 30px rgba(42, 92, 130, 0.3);
        }

        .ai-play-button svg {
            width: 32px;
            height: 32px;
            fill: var(--primary-blue);
            margin-left: 4px;
        }

        .ai-features-grid {
            padding-left: 20px;
        }

        .features-title {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            position: relative;
        }

        .features-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--coral-accent) 0%, var(--yellow-accent) 100%);
            border-radius: 2px;
        }

        .features-tabs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin-bottom: 3rem;
        }

        .feature-tab {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px 12px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 2px solid rgba(42, 92, 130, 0.1);
            backdrop-filter: blur(10px);
            cursor: pointer;
            text-align: center;
        }

        .feature-tab:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            border: 2px solid var(--coral-accent);
        }

        .tab-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-tab:hover .tab-icon {
            background: linear-gradient(135deg, var(--coral-accent) 0%, var(--yellow-accent) 100%);
            transform: scale(1.1);
        }

        .tab-icon svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .feature-tab span {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-charcoal);
            white-space: nowrap;
        }

        /* Feature Tooltips (Desktop only) */
        .feature-tooltip {
            position: absolute;
            bottom: 120%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(41, 47, 54, 0.95);
            color: white;
            padding: 16px;
            border-radius: 12px;
            width: 280px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: rgba(41, 47, 54, 0.95);
        }

        .feature-tooltip h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--yellow-accent);
        }

        .feature-tooltip p {
            font-size: 0.85rem;
            line-height: 1.4;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }

        @media (min-width: 769px) {
            .feature-tab:hover .feature-tooltip {
                opacity: 1;
                visibility: visible;
                bottom: 110%;
            }
        }

        /* Feature Modal (Mobile) */
        .feature-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .feature-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-modal-content {
            background: white;
            border-radius: 20px;
            max-width: 400px;
            width: 90%;
            max-height: 80vh;
            overflow: hidden;
            animation: modalSlideIn 0.3s ease;
        }

        .feature-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            color: white;
        }

        .feature-modal-header h3 {
            margin: 0;
            font-size: 1.3rem;
        }

        .feature-modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .feature-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .feature-modal-body {
            padding: 24px;
        }

        .feature-modal-body p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--gray-600);
            margin: 0;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .ai-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--coral-accent) 0%, #e55555 100%);
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
            margin-top: 1rem;
        }

        .ai-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
            background: linear-gradient(135deg, #e55555 0%, var(--coral-accent) 100%);
        }

        .ai-cta svg {
            animation: aiSpark 2s ease-in-out infinite;
        }

        @keyframes aiSpark {
            0%, 100% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .ai-agent-section {
                padding: 80px 0;
            }

            .ai-story-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .ai-features-grid {
                padding-left: 0;
            }

            .features-title {
                font-size: 1.5rem;
                text-align: center;
            }

            .features-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .ai-play-button {
                width: 60px;
                height: 60px;
            }

            .ai-play-button svg {
                width: 24px;
                height: 24px;
            }

            .features-tabs {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .feature-tab {
                padding: 12px 8px;
            }

            .tab-icon {
                width: 32px;
                height: 32px;
            }

            .tab-icon svg {
                width: 16px;
                height: 16px;
            }

            .feature-tab span {
                font-size: 0.8rem;
            }

            .ai-cta {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
        }

        /* ==========================================
           FAQ SECTION
           ========================================== */
        /* Combined AI Agent + FAQ Section */
        .ai-agent-section,
        .faq-section {
            background: linear-gradient(180deg, 
                linear-gradient(135deg, var(--light-bg) 0%, rgba(42, 92, 130, 0.03) 100%) 0%,
                linear-gradient(135deg, var(--light-bg) 0%, rgba(42, 92, 130, 0.03) 100%) 50%,
                var(--gray-50) 100%
            );
        }
        
        .faq-section {
            padding: 0 0 5rem 0;
            background: transparent;
            margin-top: 3rem;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(42, 92, 130, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(42, 92, 130, 0.15);
        }

        .faq-question {
            padding: 1.5rem;
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-blue);
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--coral-accent);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 1.5rem 1.5rem;
        }

        .faq-answer p {
            color: var(--gray-600);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Footer - Модерен дизайн */
        footer {
            background: linear-gradient(135deg, var(--gray-900) 0%, var(--dark-charcoal) 100%);
            color: white;
            padding: 100px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="footerPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footerPattern)"/></svg>');
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        
        .footer-brand h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--yellow-accent);
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-brand h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--coral-accent);
            border-radius: 2px;
        }
        
        .footer-brand p {
            color: var(--gray-300);
            line-height: 1.7;
            margin-bottom: 28px;
            font-size: 16px;
        }
        
        .footer-section h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 14px;
        }
        
        .footer-section ul li a {
            color: var(--gray-300);
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 15px;
            position: relative;
        }
        
        .footer-section ul li a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: var(--yellow-accent);
            transition: width 0.2s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--yellow-accent);
        }
        
        .footer-section ul li a:hover::before {
            width: 100%;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid var(--gray-700);
            color: var(--gray-400);
            font-size: 14px;
            position: relative;
            z-index: 2;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            nav {
                padding: 16px 0;
            }
            
            .nav-links {
                display: none;
            }
            
            .ai-icon {
                font-size: 0.7em;
                margin-left: 0.2em;
            }
            
            .hero-decoration {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-video,
            .btn-secondary {
                width: 60%;
                justify-content: center;
            }
            
            .about-grid,
            .contact-content,
            .footer-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .about-main {
                padding-right: 0;
            }
            
            .about-sidebar {
                padding-left: 0;
            }
            
            .sidebar-content {
                position: static;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .visual-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 30px;
            }
            
            .about-visual {
                height: 400px;
            }
            
            section {
                padding: 80px 0;
            }
            
            .contact-form {
                padding: 40px;
            }
            
            .service-card {
                padding: 36px;
            }
            
            .agent-window {
                height: 100vh;
                width: 100%;
                max-width: none;
                border-radius: 0;
                box-shadow: none;
                border: none;
            }
            
            .chat-input-container {
                padding: 15px;
                gap: 10px;
            }
            
            .chat-input {
                font-size: 16px;
                padding: 14px 18px;
            }
            
            .send-btn {
                padding: 14px 20px;
                min-width: 80px;
            }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Loading Animation */
        .loading {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Terminal Chat Container Section */
.chat-container {
    background: #1a1a1a;
    color: #00ff00;
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    padding: 80px 0;
}

.terminal-window {
    max-width: 900px;
    margin: 0 auto;
    background: #2d3748;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a5568;
}

.terminal-header {
    background: #2d3748;
    padding: 16px 20px;
    border-bottom: 1px solid #4a5568;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-btn.close { background: #ff5f56; }
.terminal-btn.minimize { background: #ffbd2e; }
.terminal-btn.maximize { background: #27ca3f; }

.terminal-title {
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #27ca3f;
    font-size: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ca3f;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.terminal-body {
    background: #1a202c;
    padding: 30px;
    min-height: 400px;
}

.terminal-prompt {
    color: #75ffff;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    margin-bottom: 30px;
}

.prompt-suggestions {
    margin-bottom: 30px;
}

.prompt-suggestions h3 {
    color: #a0aec0;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

.service-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.service-btn {
    background: #2d3748;
    border: 1px solid #4a5568;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.service-btn:hover {
    background: #4a5568;
    border-color: #61b0b0;
    color: #61b0b0;
}

.service-btn.active {
    background: #61b0b0;
    color: black;
    border-color: #61b0b0;
    font-weight: bold;
}

.chat-output {
    margin-top: 20px;
    padding: 20px;
    background: #2d3748;
    border-radius: 8px;
    border-left: 4px solid #61b0b0;
    display: none;
}

.chat-output.show {
    display: block;
    animation: terminalFadeIn 0.5s ease;
}

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

.terminal-start-btn {
    background: #61b0b0;
    color: #1a202c;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    display: none;
    transition: all 0.2s ease;
}

.terminal-start-btn:hover {
    background: #61b0b0;
    transform: translateY(-1px);
}

.terminal-start-btn.show {
    display: inline-block;
}

.video-placeholder {
    background-image: url('https://img.youtube.com/vi/TDmbwAeBOwU/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
    opacity: 0.1; /* 10% прозрачност */
    pointer-events: none;
}

 /* AI Agent Container */
        .ai-agent-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 1000;
            font-family: 'Courier New', monospace;
            padding: 0;
            margin: 0;
            display: none;
            background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--gray-900) 100%);
        }

        .ai-agent-container.active {
            display: block;
        }

        .ai-agent-container.active .container h2,
        .ai-agent-container.active .container p {
            display: none;
        }

        .agent-window {
            width: 100%;
            height: 100%;
            background: var(--white);
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            border: none;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* Desktop responsive design */
        @media (min-width: 768px) {
            .ai-agent-container {
                padding: 0;
                display: none;
                box-sizing: border-box;
            }
            
            .ai-agent-container.active {
                display: block;
            }
            
            .agent-window {
                position: fixed;
                top: 50px;
                left: 50px;
                right: 50px;
                bottom: 50px;
                width: auto;
                height: auto;
                max-width: none;
                background: var(--white);
                border-radius: 12px;
                box-shadow: 0 25px 50px rgba(42, 92, 130, 0.2);
                border: 1px solid rgba(42, 92, 130, 0.2);
                margin: 0;
                overflow: hidden;
                display: flex;
                flex-direction: column;
            }
        }

        .agent-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            padding: 22px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 10;
            height: 46px;
        }

        .exit-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.2s ease;
        }

        .exit-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        .agent-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

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

        .agent-body {
            background: var(--white);
            padding: 8px;
            position: absolute;
            top: 90px;
            left: 0;
            right: 0;
            bottom: 0;
            overflow-y: auto;
            color: var(--dark-charcoal);
            -webkit-overflow-scrolling: touch;
        }

        
        /* Mobile scrolling fix */
        @media (max-width: 767px) {
            body.modal-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
            }
            
            .chat-interface {
                padding: 10px 5px; /* Reduce horizontal padding */
            }
            
            .chat-input-container {
                padding: 15px !important;
                position: fixed !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                background: var(--white) !important;
                border-top: 2px solid var(--gray-200) !important;
                border-radius: 0 !important;
                z-index: 1000 !important;
                box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
                display: flex !important;
                flex-direction: column !important;
                gap: 12px !important;
            }
            
            .chat-input {
                width: 100% !important;
                min-height: 50px !important;
                font-size: 16px !important;
                padding: 15px !important;
                border: 2px solid rgba(42, 92, 130, 0.2) !important;
                border-radius: 8px !important;
                resize: none !important;
                max-height: 120px !important;
                box-sizing: border-box !important;
            }
            
            .send-btn {
                width: 100% !important;
                height: 48px !important;
                padding: 0 !important;
                font-size: 16px !important;
                font-weight: bold !important;
                border-radius: 8px !important;
                background: var(--primary-blue) !important;
                color: white !important;
                border: none !important;
                cursor: pointer !important;
            }
            
            .chat-messages {
                padding: 20px 5px 180px 5px !important; /* More bottom padding for input */
                margin-bottom: 0 !important;
            }
            
            .chat-messages .message:first-child {
                margin-top: 15px !important; /* Add space from header */
            }
            
            .ai-agent-container {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                z-index: 9999 !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            
            .ai-agent-container.active {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            
            .agent-window {
                height: 100vh !important;
                width: 100vw !important;
                max-width: 100vw !important;
                display: flex !important;
                flex-direction: column !important;
                margin: 0 !important;
                padding: 0 !important;
                box-sizing: border-box !important;
                border-radius: 0 !important;
                overflow: hidden !important;
                position: relative !important;
            }
            
            .agent-body {
                flex: 1 !important;
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch !important;
                min-height: 0 !important;
                padding: 15px 5px !important; /* Reduce horizontal padding */
                box-sizing: border-box !important;
                position: static !important;
            }
            
            .service-selection {
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch !important;
                height: calc(100vh - 140px) !important;
                max-width: 100% !important;
                margin: 0 !important;
                padding: 10px 5px !important; /* Reduce horizontal padding */
                padding-bottom: 40px !important;
            }
            
            .service-grid {
                display: flex !important;
                flex-direction: column !important;
                gap: 15px !important;
                padding: 0 !important;
                width: 100% !important;
            }
            
            .service-option {
                width: 100% !important;
                min-height: 100px !important;
                margin: 0 !important;
                padding: 20px !important;
                box-sizing: border-box !important;
                flex-shrink: 0 !important;
            }

            .service-selection h3 {
                font-size: 18px !important;
                margin-bottom: 20px !important;
                padding: 0 10px !important;
                text-align: left !important;
            }
            
            .chat-interface {
                margin-bottom: 30px !important;
            }
            
            .agent-header {
                flex-shrink: 0 !important;
                position: sticky !important;
                top: 0 !important;
                z-index: 10 !important;
                background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%) !important;
            }
            
            .exit-btn {
                position: relative !important;
                z-index: 11 !important;
                background: rgba(255, 255, 255, 0.2) !important;
                color: white !important;
                border: none !important;
                width: 40px !important;
                height: 40px !important;
                border-radius: 50% !important;
                cursor: pointer !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                font-size: 20px !important;
                font-weight: bold !important;
                transition: all 0.2s ease !important;
            }
            
            .chat-messages {
                margin-bottom: 0 !important;
                padding-top: 20px !important;
                padding-bottom: 160px !important;
            }
        }
        
        /* Desktop agent body */
        @media (min-width: 768px) {
            .agent-body {
                padding: 15px;
                background: var(--light-bg);
                top: 90px;
            }
        }

        /* Service Selection */
        .service-selection {
            margin-bottom: 15px;
        }

        .service-selection h3 {
            color: var(--primary-blue);
            font-size: 19px;
            margin-bottom: 20px;
            font-family: 'Oswald', sans-serif;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
        }

        /* Desktop service grid - force horizontal layout */
        @media (min-width: 768px) {
            .service-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        .service-option {
            background: var(--white);
            border: 2px solid rgba(42, 92, 130, 0.2);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
            color: var(--dark-charcoal);
        }

        .service-option:hover {
            border-color: var(--primary-blue);
            background: rgba(42, 92, 130, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(42, 92, 130, 0.15);
        }

        .service-option.selected {
            border-color: var(--primary-blue);
            background: var(--primary-blue);
            color: var(--white);
        }

        .service-option .icon {
            font-size: 24px;
            margin-bottom: 10px;
            display: block;
        }

        .service-option .title {
            font-size: 17px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .service-option .description {
            font-size: 15px;
            opacity: 0.8;
            line-height: 1.4;
        }

        /* Chat Interface */
        .chat-interface {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 15px;
        }

        .chat-interface.active {
            display: flex;
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            margin-bottom: 15px;
            padding: 10px;
            background: transparent;
            border-radius: 8px;
            border: none;
            min-height: 0;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            position: relative;
        }

        /* Desktop chat messages */
        @media (min-width: 768px) {
            .chat-interface {
                margin-top: 15px;
            }
            
            .chat-messages {
                background: var(--white);
                border: 1px solid rgba(42, 92, 130, 0.2);
                padding: 15px;
                margin-bottom: 15px;
            }
        }

        .message {
            margin-bottom: 12px;
            padding: 12px 15px;
            border-radius: 12px;
            max-width: 100%;
            word-wrap: break-word;
            font-size: 16px;
            line-height: 1.5;
        }

        .message.agent {
            background: rgba(42, 92, 130, 0.1);
            color: var(--dark-charcoal);
            margin-left: 0;
            margin-right: auto;
            border-left: 4px solid var(--primary-blue);
            width: 100%;
        }

        /* Desktop message styling */
        @media (min-width: 768px) {
            .message {
                max-width: 85%;
                padding: 18px 24px;
            }
            
            .message.agent {
                width: auto;
                max-width: 90%;
            }
        }

        .message.user {
            background: var(--coral-accent);
            color: var(--white);
            margin-left: auto;
            margin-right: 0;
            text-align: right;
        }

        .message .sender {
            font-size: 12px;
            opacity: 0.7;
            margin-bottom: 5px;
        }

        .chat-input-container {
            display: flex;
            gap: 12px;
            align-items: flex-end;
            padding: 15px;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            border-radius: 8px;
            flex-shrink: 0;
            position: sticky;
            bottom: 0;
            z-index: 10;
        }

        .chat-input {
            flex: 1;
            background: var(--white);
            border: 2px solid rgba(42, 92, 130, 0.2);
            color: var(--dark-charcoal);
            padding: 16px 20px;
            border-radius: 25px;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            resize: none;
            min-height: 50px;
            max-height: 120px;
            overflow-y: auto;
            transition: all 0.2s ease;
        }

        .chat-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(42, 92, 130, 0.1);
        }

        .send-btn {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            color: var(--white);
            border: none;
            padding: 16px 24px;
            border-radius: 25px;
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 100px;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(42, 92, 130, 0.2);
        }

        .send-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(42, 92, 130, 0.3);
        }

        .send-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 4px 12px rgba(42, 92, 130, 0.2);
        }

        /* Loading Animation */
        .typing-indicator {
            display: none;
            align-items: center;
            gap: 8px;
            color: var(--primary-blue);
            font-size: 14px;
            margin: 10px 0;
        }

        .typing-indicator.active {
            display: flex;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
        }

        .typing-dots span {
            width: 8px;
            height: 8px;
            background: var(--primary-blue);
            border-radius: 50%;
            animation: typing 1.4s infinite ease-in-out both;
        }

        .typing-dots span:nth-child(1) { animation-delay: -0.32s; }
        .typing-dots span:nth-child(2) { animation-delay: -0.16s; }

        @keyframes typing {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }

        /* Progress Bar */
        .progress-container {
            margin: 20px 0;
            display: none;
        }

        .progress-container.active {
            display: block;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(42, 92, 130, 0.2);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-blue) 0%, var(--teal-green) 100%);
            width: 0%;
            transition: width 0.3s ease;
        }

        .progress-text {
            color: var(--primary-blue);
            font-size: 14px;
            margin-top: 8px;
            text-align: center;
        }

        /* Contact Form in Chat Messages */
        .contact-form-message input:focus,
        .contact-form-message textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 2px rgba(42, 92, 130, 0.1);
        }

        .contact-form-message button:hover {
            background: var(--yellow-accent);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
        }

        /* Modern Thank You Modal */
        .thank-you-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(41, 47, 54, 0.95);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            animation: modalFadeIn 0.5s ease-out;
        }

        .thank-you-modal.active {
            display: flex;
        }

        .thank-you-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            padding: 60px 40px;
            border-radius: 24px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(42, 92, 130, 0.3);
            transform: scale(0.8);
            animation: modalScaleIn 0.6s ease-out forwards;
            position: relative;
            overflow: hidden;
        }

        .thank-you-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--coral-accent), var(--yellow-accent), var(--teal-green));
            animation: gradientShift 3s ease-in-out infinite;
        }

        .thank-you-icon {
            font-size: 80px;
            margin-bottom: 30px;
            animation: bounceIn 0.8s ease-out 0.2s both;
        }

        .thank-you-title {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
        }

        .thank-you-message {
            font-size: 18px;
            color: var(--dark-charcoal);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .countdown-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }

        .countdown-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--coral-accent), var(--yellow-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 24px;
            position: relative;
            overflow: hidden;
        }

        .countdown-circle::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: conic-gradient(transparent 0deg, rgba(255,255,255,0.3) 360deg);
            animation: spin 1s linear infinite;
        }

        .countdown-text {
            font-size: 16px;
            color: var(--primary-blue);
            font-weight: 500;
        }

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

        @keyframes modalScaleIn {
            from { 
                transform: scale(0.8) translateY(20px);
                opacity: 0;
            }
            to { 
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

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

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

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

        /* Mobile responsive */
        @media (max-width: 767px) {
            .thank-you-content {
                padding: 40px 30px;
                margin: 20px;
            }
            
            .thank-you-icon {
                font-size: 60px;
            }
            
            .thank-you-title {
                font-size: 24px;
            }
            
            .thank-you-message {
                font-size: 16px;
            }
            
            /* FAQ responsive styles */
           /* Alternative Solution for Mobile FAQ - Paste in your media query */

.faq-section {
    padding: 0 0 4rem 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(42, 92, 130, 0.1);
    overflow: hidden;
}

/* 1. Main container for the question */
.faq-question {
    position: relative; /* Crucial for positioning the '+' icon */
    
    /* Create a large padding on the right to make space for the icon */
    padding: 1.25rem 3.5rem 1.25rem 1.25rem; /* (top, right, bottom, left) */

    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
}

/* 2. Position the '+' icon absolutely within the padded space */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.25rem; /* Position from the right edge */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Fine-tune vertical centering */
    
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--coral-accent);
    transition: transform 0.3s ease;
}

/* 3. Rotate the icon when the item is active */
.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Answer styles remain the same */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}
            
            /* Center footer content on mobile */
            .footer-content {
                text-align: center !important;
            }
            
            .footer-brand {
                text-align: center !important;
            }
            
            .footer-logo-container {
                justify-content: center !important;
            }
            
            .footer-section {
                text-align: center !important;
            }
            
            .footer-section ul {
                display: inline-block !important;
                text-align: center !important;
            }
            
            .footer-bottom {
                text-align: center !important;
            }
            
            /* Mobile service cards - same electric effects as desktop */
            .service-card {
                animation: electricGlow 3s ease-in-out infinite;
            }
            
            .service-card:nth-child(1) { animation-delay: 0s; }
            .service-card:nth-child(2) { animation-delay: 0.5s; }
            .service-card:nth-child(3) { animation-delay: 1s; }
            .service-card:nth-child(4) { animation-delay: 1.5s; }
            .service-card:nth-child(5) { animation-delay: 2s; }
            .service-card:nth-child(6) { animation-delay: 2.5s; }
            
            
            
            .service-card:nth-child(1)::before { animation-delay: 0.2s; }
            .service-card:nth-child(2)::before { animation-delay: 0.7s; }
            .service-card:nth-child(3)::before { animation-delay: 1.2s; }
            .service-card:nth-child(4)::before { animation-delay: 1.7s; }
            .service-card:nth-child(5)::before { animation-delay: 2.2s; }
            .service-card:nth-child(6)::before { animation-delay: 2.7s; }
            
            
            
            
            
            
            
            .service-card:nth-child(1)::after { animation-delay: 0.4s; }
            .service-card:nth-child(2)::after { animation-delay: 0.9s; }
            .service-card:nth-child(3)::after { animation-delay: 1.4s; }
            .service-card:nth-child(4)::after { animation-delay: 1.9s; }
            .service-card:nth-child(5)::after { animation-delay: 2.4s; }
            .service-card:nth-child(6)::after { animation-delay: 2.9s; }
            
        }


        .submit-recommendation {
            background: linear-gradient(135deg, var(--coral-accent) 0%, #e55555 100%);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
        }

        .submit-recommendation:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .service-grid {
                grid-template-columns: 1fr;
            }
            
            .agent-body {
                padding: 20px;
            }
            
            /* Mobile input container handled in main mobile section above */
            
            .chat-input {
                width: 100%;
                margin-bottom: 0;
            }
            
            .send-btn {
                width: 100%;
            }
        }
    .agent-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #ffffff;
}

.agent-title svg {
    color: #FFD166;
    filter: drop-shadow(0 0 6px currentColor);
    animation: aiPulse 3s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 6px currentColor);
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px currentColor);
    }
}

.loading-container {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(42, 92, 130, 0.05);
    border-radius: 12px;
    margin: 20px 0;
}

.loading-container.show {
    display: block;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(42, 92, 130, 0.2);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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


/* ==========================================
   ENHANCED CHAT ANIMATIONS
   ========================================== */

/* Base animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    70% {
        transform: scale(0.95) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.fadeInUp {
    animation: fadeInUp 0.6s ease-out both;
}

.bounceIn {
    animation: bounceIn 0.8s ease-out both;
}

.slideInRight {
    animation: slideInRight 0.5s ease-out both;
}

.slideInLeft {
    animation: slideInLeft 0.5s ease-out both;
}

.zoomIn {
    animation: zoomIn 0.6s ease-out both;
}

/* Enhanced typing indicator */
.typing-indicator.enhanced {
    background: rgba(42, 92, 130, 0.1);
    border-radius: 20px;
    padding: 15px 20px;
    border-left: 4px solid var(--primary-blue);
}

.typing-indicator.enhanced .typing-dots span {
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #2A5C82, #61b0b0);
    box-shadow: 0 2px 8px rgba(42, 92, 130, 0.3);
    animation: enhancedTyping 1.6s infinite ease-in-out both;
}

@keyframes enhancedTyping {
    0%, 80%, 100% { 
        transform: scale(0.8); 
        opacity: 0.5;
    }
    40% { 
        transform: scale(1.2); 
        opacity: 1;
    }
}

/* Confetti animation */
@keyframes confettiFall {
    to {
        transform: translateY(300px) rotate(720deg);
        opacity: 0;
    }
}

/* Rocket trail animation */
@keyframes rocketTrail {
    0% {
        width: 0px;
        opacity: 1;
    }
    50% {
        width: 50px;
        opacity: 0.8;
    }
    100% {
        width: 100px;
        opacity: 0;
        transform: translateX(20px);
    }
}

/* Message hover effects */
.message {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.message:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 92, 130, 0.15);
}

.message.agent:hover {
    background: rgba(42, 92, 130, 0.12);
}

/* Special message effects */
.message-content {
    position: relative;
    z-index: 2;
}

/* Gradient text effect za важни съобщения */
.message.agent[style*="gradient"] .message-content strong {
    background: linear-gradient(135deg, #FFD166, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}


/* Scroll animation za chat container */
.chat-messages {
    scroll-behavior: smooth;
}

/* Focus effect за chat input */
.chat-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(42, 92, 130, 0.1), 0 4px 15px rgba(42, 92, 130, 0.2);
    transform: translateY(-1px);
}

/* Send button enhancement */
.send-btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Mobile responsive animations */
@media (max-width: 768px) {
    .bounceIn, .zoomIn {
        animation-duration: 0.6s;
    }
    
    .slideInRight, .slideInLeft {
        animation-duration: 0.4s;
    }
    
    .message:hover {
        transform: none;
    }
}

/* Accessibility - Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fadeInUp, .bounceIn, .slideInRight, .slideInLeft, .zoomIn {
        animation: none;
    }
    
    .message {
        transition: none;
    }
    
    .typing-indicator.enhanced .typing-dots span {
        animation: none;
    }
}

/* ============================================
   Mobile Navigation Component
   ============================================ */

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger Animation */
.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary-blue);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-menu {
    transform: translateX(0);
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: transparent;
}

.mobile-nav-logo {
    height: 32px;
    width: auto;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--teal-green);
    cursor: pointer;
    padding: 30px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: var(--light-bg);
    color: var(--primary-blue);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    padding: var(--space-md) 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    color: var(--white);
    text-decoration: none;
    font-weight: var(--fw-medium);
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-links a:hover {
    background: var(--light-bg);
    color: var(--primary-blue);
    border-left-color: var(--coral-accent);
}

.mobile-nav-links a:active {
    background: var(--gray-100);
}

/* Mobile Navigation CTA */
.mobile-nav-cta-item {
    margin-top: var(--space-md);
    padding: 0 var(--space-lg);
}

.mobile-nav-cta-item .mobile-cta-btn {
    background: var(--teal-green) !important;
    border: 2px solid white !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(97, 176, 176, 0.3) !important;
}

.mobile-nav-cta-item .mobile-cta-btn:hover {
    background: #4a9999 !important;
    box-shadow: 0 6px 20px rgba(97, 176, 176, 0.4) !important;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    header nav .nav-links {
        display: none;
    }
    
    header .cta-header {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-nav-menu {
        width: 100%;
    }
    
    .mobile-nav-links a {
        font-size: 1.2rem;
        padding: var(--space-lg) var(--space-lg);
    }
    
    .mobile-cta-btn {
        font-size: 1.2rem;
        padding: var(--space-lg);
    }
}

/* Focus styles for accessibility */
.mobile-nav-toggle:focus,
.mobile-nav-close:focus,
.mobile-nav-links a:focus,
.mobile-cta-btn:focus {
    outline: 2px solid var(--coral-accent);
    outline-offset: 2px;
}