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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            cursor: none;
        }

        /* Кастомный курсор */
        .custom-cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #667eea;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transition: all 0.1s ease;
            mix-blend-mode: difference;
        }

        .cursor-dot {
            width: 4px;
            height: 4px;
            background: #667eea;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transition: all 0.05s ease;
        }

        /* Прогресс-бар скролла */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            z-index: 10000;
            transition: width 0.1s ease;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
        }

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 15px 40px;
            border-radius: 50px;
            z-index: 999;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
            cursor: pointer;
            font-weight: 600;
        }

        .sticky-cta::before {
            content: '🚀 ';
            display: inline-block;
            animation: rocketFly 2s ease-in-out infinite;
        }

        @keyframes rocketFly {
            0%, 100% {
                transform: translateY(0) rotate(-45deg);
            }
            50% {
                transform: translateY(-8px) rotate(-35deg);
            }
        }

        .sticky-cta.visible {
            bottom: 30px;
        }

        .sticky-cta:hover {
            transform: translateX(-50%) translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
        }

        /* Кнопка наверх */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 130px;
            width: 50px;
            height: 50px;
            background: rgba(102, 126, 234, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
        }

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

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .scroll-to-top svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2;
        }

        /* Online counter */
        .online-counter {
            position: fixed;
            top: 90px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 50px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 999;
            animation: slideInRight 0.5s ease 2s both;
        }

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

        .online-dot {
            width: 8px;
            height: 8px;
            background: #00ff00;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .online-counter span {
            font-size: 13px;
            color: #fff;
        }

        /* Exit intent popup */
        .exit-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            backdrop-filter: blur(10px);
        }

        .exit-popup.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .exit-popup-content {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border: 2px solid #667eea;
            border-radius: 30px;
            padding: 50px;
            max-width: 600px;
            text-align: center;
            position: relative;
            animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .exit-popup h2 {
            font-size: 36px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .exit-popup h2::after {
            content: ' 🎁';
            display: inline-block;
            animation: giftBounce 2s ease-in-out infinite;
            background: none;
            -webkit-text-fill-color: initial;
        }

        @keyframes giftBounce {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(-10deg);
            }
            50% {
                transform: translateY(-15px) rotate(10deg);
            }
            75% {
                transform: translateY(-5px) rotate(-5deg);
            }
        }

        .exit-popup p {
            font-size: 18px;
            color: #b8b8b8;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .exit-popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 24px;
            color: #fff;
        }

        .exit-popup-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Timer */
        .promo-timer {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
        }

        .timer-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #667eea;
            font-weight: 600;
        }

        .timer-title::before {
            content: '🔥 ';
            display: inline-block;
            animation: fireFlicker 1.5s ease-in-out infinite;
        }

        @keyframes fireFlicker {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                filter: brightness(1);
            }
            25% {
                transform: scale(1.1) rotate(-5deg);
                filter: brightness(1.3);
            }
            50% {
                transform: scale(1.15) rotate(5deg);
                filter: brightness(1.5);
            }
            75% {
                transform: scale(1.05) rotate(-3deg);
                filter: brightness(1.2);
            }
        }

        .timer-display {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .timer-unit {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 15px 20px;
            min-width: 80px;
        }

        .timer-value {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timer-label {
            font-size: 12px;
            color: #888;
            margin-top: 5px;
        }

        /* Success animation */
        .success-animation {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10002;
            display: none;
        }

        .success-animation.active {
            display: block;
            animation: successPop 0.5s ease;
        }

        @keyframes successPop {
            0% { transform: translate(-50%, -50%) scale(0); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
            100% { transform: translate(-50%, -50%) scale(1); }
        }

        .success-checkmark {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 50px rgba(102, 126, 234, 0.8);
        }

        .success-checkmark svg {
            width: 60px;
            height: 60px;
            stroke: white;
            stroke-width: 3;
            fill: none;
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: drawCheck 0.5s ease 0.2s forwards;
        }

        @keyframes drawCheck {
            to { stroke-dashoffset: 0; }
        }

        /* Confetti */
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background: #667eea;
            position: absolute;
            animation: confetti-fall 3s ease-out forwards;
            z-index: 10003;
        }

        @keyframes confetti-fall {
            to {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(102, 126, 234, 0.6);
            border-radius: 50%;
            animation: particle-float 15s infinite;
        }

        @keyframes particle-float {
            0%, 100% {
                transform: translate(0, 0);
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            50% {
                transform: translate(var(--tx), var(--ty));
            }
        }

        /* Notification popup */
        .notification {
            position: fixed;
            bottom: 150px;
            left: 20px;
            background: rgba(0, 0, 0, 0.9);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 15px;
            padding: 15px 20px;
            display: none;
            align-items: center;
            gap: 15px;
            z-index: 999;
            max-width: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .notification.active {
            display: flex;
            animation: slideInLeft 0.5s ease;
        }

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

        .notification-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
            font-size: 14px;
        }

        .notification-text {
            flex: 1;
        }

        .notification-text strong {
            color: #667eea;
        }

        .notification-text span {
            font-size: 13px;
            color: #888;
            display: block;
            margin-top: 3px;
        }

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

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

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

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

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

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

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-image {
            height: 60px;
            width: auto;
            animation: logoGlow 3s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0%, 100% {
                filter: brightness(1) drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
            }
            50% {
                filter: brightness(1.2) drop-shadow(0 0 15px rgba(102, 126, 234, 0.8));
            }
        }

        .header-cta {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .phone {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
        }

        .header-button {
            padding: 12px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .header-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
            padding: 120px 5% 50px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
            animation: gradientShift 20s ease infinite;
            overflow: hidden;
        }

        .neural-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
        }

        .neural-node {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #667eea;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
            animation: nodePulse 3s ease-in-out infinite;
        }

        .neural-node:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
        .neural-node:nth-child(2) { top: 35%; left: 25%; animation-delay: 0.5s; }
        .neural-node:nth-child(3) { top: 50%; left: 20%; animation-delay: 1s; }
        .neural-node:nth-child(4) { top: 65%; left: 30%; animation-delay: 1.5s; }
        .neural-node:nth-child(5) { top: 80%; left: 18%; animation-delay: 2s; }
        .neural-node:nth-child(6) { top: 25%; left: 45%; animation-delay: 0.3s; }
        .neural-node:nth-child(7) { top: 40%; left: 50%; animation-delay: 0.8s; }
        .neural-node:nth-child(8) { top: 55%; left: 48%; animation-delay: 1.3s; }
        .neural-node:nth-child(9) { top: 70%; left: 52%; animation-delay: 1.8s; }
        .neural-node:nth-child(10) { top: 30%; left: 75%; animation-delay: 0.6s; }
        .neural-node:nth-child(11) { top: 45%; left: 80%; animation-delay: 1.1s; }
        .neural-node:nth-child(12) { top: 60%; left: 78%; animation-delay: 1.6s; }
        .neural-node:nth-child(13) { top: 75%; left: 82%; animation-delay: 2.1s; }

        @keyframes nodePulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.6;
                box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
            }
            50% {
                transform: scale(1.5);
                opacity: 1;
                box-shadow: 0 0 30px rgba(102, 126, 234, 0.9);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 50px;
            color: #667eea;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            animation: scaleIn 0.5s ease;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            animation: pulse 2s ease-in-out infinite;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .typing-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .typing-text::after {
            content: '|';
            animation: blink 0.7s infinite;
        }

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

        .hero-stats {
            display: flex;
            gap: 40px;
            margin: 30px 0;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .stat-item {
            text-align: left;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #888;
            font-size: 14px;
            margin-top: 5px;
        }

        .hero-form {
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease 0.4s both;
            transition: all 0.3s ease;
        }

        .hero-form:hover {
            border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
        }

        .form-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .form-subtitle {
            color: #888;
            font-size: 14px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-group select option {
            background: #1a1a1a;
            color: #fff;
            padding: 10px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .submit-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .submit-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .submit-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
        }

        .form-privacy {
            font-size: 12px;
            color: #666;
            margin-top: 15px;
            text-align: center;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 40px 5%;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .trust-item {
            text-align: center;
            animation: fadeInUp 0.6s ease both;
        }

        .trust-item:nth-child(1) { animation-delay: 0.1s; }
        .trust-item:nth-child(2) { animation-delay: 0.2s; }
        .trust-item:nth-child(3) { animation-delay: 0.3s; }
        .trust-item:nth-child(4) { animation-delay: 0.4s; }

        .trust-icon {
            margin-bottom: 10px;
            color: #667eea;
            transition: all 0.3s ease;
        }

        .trust-item:hover .trust-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .trust-icon svg {
            filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
        }

        .trust-text {
            color: #888;
            font-size: 14px;
        }

        .section {
            padding: 60px 5%;
            position: relative;
        }

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

        .section-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-subtitle {
            color: #888;
            font-size: 18px;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: rgba(102, 126, 234, 0.3);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
        }

        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .service-icon {
            color: #667eea;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-price {
            font-size: 18px;
            font-weight: 700;
            color: #667eea;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .service-card p {
            color: #b8b8b8;
            line-height: 1.6;
            font-size: 15px;
            margin-bottom: 20px;
        }

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

        .service-features li {
            color: #888;
            font-size: 14px;
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .service-button {
            display: block;
            width: 100%;
            padding: 12px;
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.3);
            border-radius: 10px;
            color: #667eea;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .service-button:hover {
            background: rgba(102, 126, 234, 0.2);
            border-color: #667eea;
            transform: translateY(-2px);
        }

        .calculator-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 30px;
            padding: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .calculator-title {
            font-size: 36px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 40px;
        }

        .calculator-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .calc-option {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .calc-option:hover {
            border-color: rgba(102, 126, 234, 0.5);
            transform: translateY(-5px);
        }

        .calc-option.active {
            border-color: #667eea;
            background: rgba(102, 126, 234, 0.1);
            animation: pulse 0.5s ease;
        }

        .calc-option-title {
            font-weight: 600;
            margin-bottom: 8px;
        }

        .calc-option-price {
            color: #667eea;
            font-size: 18px;
            font-weight: 700;
        }

        .calculator-result {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
        }

        .result-price {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .result-description {
            color: #888;
            margin-bottom: 25px;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .case-card {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .case-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .case-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .case-screenshot {
            width: 90%;
            height: 80%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .case-content {
            padding: 30px;
        }

        .case-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .case-tag {
            background: rgba(102, 126, 234, 0.1);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: #667eea;
            font-weight: 600;
        }

        .case-content h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .case-content p {
            color: #888;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .case-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .case-stat-value {
            font-size: 24px;
            font-weight: 800;
            color: #667eea;
        }

        .case-stat-label {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
        }

        .testimonials-section {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 30px;
            padding: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
        }

        .testimonial-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .testimonial-position {
            color: #667eea;
            font-size: 14px;
        }

        .testimonial-text {
            color: #b8b8b8;
            line-height: 1.7;
            font-size: 15px;
        }

        .testimonial-rating {
            color: #FFD700;
            margin-top: 15px;
            display: flex;
            gap: 4px;
        }

        .testimonial-rating svg {
            width: 18px;
            height: 18px;
            fill: #FFD700;
            filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .testimonial-rating svg:hover {
            transform: scale(1.3) rotate(15deg);
            filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
        }

        .testimonial-card:hover .testimonial-rating svg {
            animation: starShine 1.5s ease-in-out infinite;
        }

        .testimonial-rating svg:nth-child(1) { animation-delay: 0s; }
        .testimonial-rating svg:nth-child(2) { animation-delay: 0.1s; }
        .testimonial-rating svg:nth-child(3) { animation-delay: 0.2s; }
        .testimonial-rating svg:nth-child(4) { animation-delay: 0.3s; }
        .testimonial-rating svg:nth-child(5) { animation-delay: 0.4s; }

        @keyframes starShine {
            0%, 100% {
                filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 10px rgba(255, 215, 0, 1));
                transform: scale(1.1);
            }
        }

        .clients-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 60px auto 0;
            padding: 40px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
        }

        .client-logo {
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #888;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .client-logo:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            transform: translateY(-5px) scale(1.05);
        }

        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 30px;
            padding: 80px 60px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-primary, .cta-secondary {
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .cta-primary {
            background: white;
            color: #667eea;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .footer {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 5%;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
            animation: gradientShift 25s ease infinite;
            pointer-events: none;
        }

        .footer-neural {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.25;
            pointer-events: none;
        }

        .footer-node {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #667eea;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
            animation: footerNodePulse 4s ease-in-out infinite;
        }

        .footer-node:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .footer-node:nth-child(2) { top: 35%; left: 8%; animation-delay: 0.7s; }
        .footer-node:nth-child(3) { top: 55%; left: 12%; animation-delay: 1.4s; }
        .footer-node:nth-child(4) { top: 75%; left: 9%; animation-delay: 2.1s; }
        .footer-node:nth-child(5) { top: 20%; left: 30%; animation-delay: 0.4s; }
        .footer-node:nth-child(6) { top: 40%; left: 32%; animation-delay: 1.1s; }
        .footer-node:nth-child(7) { top: 60%; left: 28%; animation-delay: 1.8s; }
        .footer-node:nth-child(8) { top: 80%; left: 31%; animation-delay: 2.5s; }
        .footer-node:nth-child(9) { top: 25%; left: 70%; animation-delay: 0.5s; }
        .footer-node:nth-child(10) { top: 45%; left: 68%; animation-delay: 1.2s; }
        .footer-node:nth-child(11) { top: 65%; left: 72%; animation-delay: 1.9s; }
        .footer-node:nth-child(12) { top: 85%; left: 69%; animation-delay: 2.6s; }
        .footer-node:nth-child(13) { top: 18%; left: 90%; animation-delay: 0.6s; }
        .footer-node:nth-child(14) { top: 38%; left: 92%; animation-delay: 1.3s; }
        .footer-node:nth-child(15) { top: 58%; left: 88%; animation-delay: 2s; }
        .footer-node:nth-child(16) { top: 78%; left: 91%; animation-delay: 2.7s; }

        @keyframes footerNodePulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
                box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
            }
            50% {
                transform: scale(1.6);
                opacity: 0.9;
                box-shadow: 0 0 25px rgba(118, 75, 162, 0.8);
            }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-brand h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .footer-brand h3 img {
            height: 50px;
            width: auto;
        }

        .footer-brand p {
            color: #888;
            line-height: 1.6;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

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

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

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #667eea;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #666;
            font-size: 14px;
            position: relative;
            z-index: 1;
        }

        .messenger-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .messenger-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            color: white;
            animation: float 3s ease-in-out infinite;
        }

        .messenger-btn:nth-child(2) {
            animation-delay: 0.5s;
        }

        .messenger-btn:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
        }

        .messenger-btn svg {
            width: 28px;
            height: 28px;
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .telegram-btn {
            background: #0088cc;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #888;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal-close:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .online-counter {
                top: 70px;
                right: 10px;
                font-size: 11px;
            }
        }

        @media (max-width: 768px) {
            body {
                cursor: default;
            }

            .custom-cursor, .cursor-dot {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .services-grid,
            .cases-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .calculator-section,
            .testimonials-section,
            .cta-section {
                padding: 40px 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }

            .timer-display {
                gap: 10px;
            }

            .timer-unit {
                min-width: 70px;
                padding: 10px 15px;
            }

            .timer-value {
                font-size: 24px;
            }

            .scroll-to-top {
                right: 20px;
                bottom: 100px;
            }

            .sticky-cta {
                font-size: 14px;
                padding: 12px 30px;
            }

            .notification {
                left: 10px;
                right: 10px;
                max-width: calc(100% - 20px);
                bottom: 100px;
            }
        }

/* ===== NAVIGATION STYLES ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
}

.nav-menu a:hover {
    color: #667eea;
}

/* Современные SVG иконки */
.menu-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 0 transparent);
    flex-shrink: 0;
    display: block;
}

/* Текст рядом с иконкой */
.menu-text {
    font-size: 16px;
    white-space: nowrap;
    line-height: 20px;
    display: inline-block;
}

/* Градиент для иконок */
.nav-menu li:hover .menu-icon {
    stroke: url(#iconGradient);
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.8));
    transform: scale(1.15) translateY(-2px);
}

/* SVG градиент определение */
svg#iconGradient {
    width: 0;
    height: 0;
    position: absolute;
}

/* Анимация при загрузке */
.nav-menu li {
    animation: slideInDown 0.5s ease backwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Активная страница */
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: #667eea;
    position: relative;
}

.nav-menu .current-menu-item > a .menu-icon,
.nav-menu .current_page_item > a .menu-icon {
    stroke: #667eea;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 1));
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
}

/* Dropdown стили */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 30, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    min-width: 280px;
    padding: 15px 0;
    list-style: none;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    display: block !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(102, 126, 234, 0.1) inset,
                0 0 30px rgba(102, 126, 234, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Эффект подсветки при наведении */
.dropdown-menu li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(102, 126, 234, 0.15), 
                transparent);
    transition: left 0.6s ease;
}

.dropdown-menu li:hover::before {
    left: 100%;
}

.dropdown-menu a {
    padding: 14px 25px;
    font-size: 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(102, 126, 234, 0.12);
    border-left-color: #667eea;
    padding-left: 30px;
}

.dropdown-menu .menu-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.dropdown-menu li:hover .menu-icon {
    stroke: #667eea;
    transform: scale(1.25) translateX(5px) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 1));
}

/* Разделитель в dropdown */
.dropdown-menu li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Эффект свечения для dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.3) 0%, 
                rgba(118, 75, 162, 0.3) 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu::before {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #667eea;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== PAGE STYLES ===== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-image {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.page-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-content {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 1200px;
}

.page-content h2 {
    font-size: 36px;
    margin: 40px 0 20px;
    color: #ffffff;
}

.page-content h3 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #667eea;
}

.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #b8b8b8;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #b8b8b8;
}

.page-content li {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.6;
}

.page-content a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: #764ba2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(102, 126, 234, 0.2);
        z-index: 999;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }

    .nav-menu a {
        padding: 15px 10px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(102, 126, 234, 0.05);
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .page-content {
        padding: 40px 20px;
    }

    .page-content h2 {
        font-size: 28px;
    }

    .page-content h3 {
        font-size: 24px;
    }

    .page-content p,
    .page-content li {
        font-size: 16px;
    }
}


/* Competency Cards - Live Hover Effects */
.competency-item:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.4) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.competency-item:hover > div:first-child {
    opacity: 1 !important;
}

.competency-item:hover .progress-bar {
    animation: progressPulse 1.5s ease-in-out infinite;
}

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

/* Why Choose Us - Enhanced List Items */
.page-content ul li:hover {
    padding-left: 8px;
    color: #e0e0e0 !important;
}

.page-content ul li:hover span:first-child {
    transform: scale(1.2);
}

/* Quick Answers Cards - Contact Page */
div[style*="padding: 20px"][style*="background: rgba(102, 126, 234, 0.05)"]:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.25) !important;
}

/* Contact Cards Hover */
.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.4) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.contact-card:hover a {
    color: #764ba2 !important;
}
