@charset "utf-8";
/* CSS Document */
:root {
            --primary-color: #20978a;
            --secondary-color: #00859d;
            --accent-color: #d92c29;
            --highlight-color: #f2bf0c;
            --text-color: #ffffff;
            --bg-dark: #0a0a14;
            --border-color: rgba(255, 255, 255, 0.1);
            --card-bg: rgba(10, 10, 20, 0.8);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: var(--bg-dark);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Неоновый фон (как в калькуляторе) */
        .shapes-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            perspective: 1000px;
        }

        .shape {
            position: absolute;
            opacity: 0.85;
            animation: float 15s infinite ease-in-out;
            filter: blur(1px);
            transform-style: preserve-3d;
        }

        .shape-1 {
            top: 5%;
            left: 5%;
            width: 450px;
            height: 450px;
            background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 70%);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5),
                       inset 0 0 30px rgba(0, 255, 255, 0.15);
            animation-delay: 0s;
            z-index: 4;
        }

        .shape-2 {
            top: 50%;
            right: 5%;
            width: 500px;
            height: 500px;
            background: linear-gradient(225deg, #16213e 0%, #0a0a14 70%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 30%);
            box-shadow: 0 0 35px rgba(255, 0, 255, 0.5),
                       inset 0 0 30px rgba(255, 0, 255, 0.15);
            animation-delay: -5s;
            z-index: 3;
        }

        .shape-3 {
            bottom: 10%;
            left: 15%;
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, #1e1e2e 0%, #0a0a14 70%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 70%);
            box-shadow: 0 0 28px rgba(0, 200, 255, 0.5),
                       inset 0 0 25px rgba(0, 200, 255, 0.15);
            animation-delay: -10s;
            z-index: 2;
        }

        .shape-4 {
            top: 15%;
            right: 20%;
            width: 380px;
            height: 380px;
            background: linear-gradient(315deg, #1c1c28 0%, #0a0a14 70%);
            clip-path: polygon(0 30%, 30% 0, 100% 0, 100% 100%, 0 100%);
            box-shadow: 0 0 32px rgba(255, 50, 50, 0.5),
                       inset 0 0 28px rgba(255, 50, 50, 0.15);
            animation-delay: -7s;
            z-index: 5;
        }

        .shape-5 {
            top: 30%;
            left: 25%;
            width: 420px;
            height: 420px;
            background: linear-gradient(170deg, #1c1c3e 0%, #0a0a24 70%);
            clip-path: polygon(0 40%, 40% 0, 100% 20%, 80% 100%, 20% 100%);
            box-shadow: 0 0 35px rgba(50, 255, 50, 0.5),
                       inset 0 0 30px rgba(50, 255, 50, 0.15);
            animation-delay: -2s;
            z-index: 1;
        }

        /* Электрические эффекты */
        .electric-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.4;
        }

        .electric-line {
            position: absolute;
            background: linear-gradient(90deg, 
                transparent,
                rgba(0, 255, 255, 0.9),
                rgba(0, 255, 255, 0.7),
                transparent
            );
            height: 2px;
            animation: electricFlow 3s infinite linear;
            filter: blur(0.5px);
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(-25px, 15px) rotate(-1deg) scale(1.02);
            }
            50% {
                transform: translate(10px, -20px) rotate(1deg) scale(1.01);
            }
            75% {
                transform: translate(15px, 10px) rotate(-1deg) scale(1.02);
            }
        }

        @keyframes electricFlow {
            0% {
                left: -100%;
                opacity: 0;
            }
            5% {
                opacity: 1;
            }
            95% {
                opacity: 1;
            }
            100% {
                left: 100%;
                opacity: 0;
            }
        }

        /* Навигационное меню */
        .navbar {
            background: rgba(10, 10, 20, 0.85);
            box-shadow: var(--box-shadow);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--secondary-color);
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand img {
            height: 50px;
            transition: var(--transition);
            filter: brightness(1.2);
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        .navbar-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar-item {
            position: relative;
            margin-left: 20px;
        }

        .navbar-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 4px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .navbar-link:hover {
            background-color: rgba(0, 133, 157, 0.3);
            transform: translateY(-2px);
            color: var(--highlight-color);
        }

        .navbar-link i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(10, 10, 20, 0.95);
            border-radius: 4px;
            box-shadow: var(--box-shadow);
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
            backdrop-filter: blur(10px);
            border: 1px solid var(--secondary-color);
        }

		.dropdown-menu li {
			list-style-type: none;
		}

        .navbar-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-link {
            color: var(--secondary-color);
            text-decoration: none;
            display: block;
            transition: var(--transition);
        }

        .dropdown-link:hover {
            color: var(--highlight-color);
            padding-left: 5px;
        }

        .dropdown-divider {
            height: 1px;
            background-color: var(--border-color);
            margin: 5px 0;
        }

        .dropdown-header {
            padding: 10px 15px;
            font-weight: bold;
            color: var(--primary-color);
            background-color: rgba(32, 151, 138, 0.15);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 80px 0;
            text-align: center;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
            text-align: center;
            min-width: 180px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            color: white;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            color: var(--highlight-color);
        }

        /* Services Section */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
            border-radius: 2px;
        }

        .section-title p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(5px);
            height: 100%;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(20px);
            cursor: pointer;
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--primary-color);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .service-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            text-align: center;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .service-card .btn {
            align-self: center;
            margin-top: auto;
        }

        /* Services Notice */
        .services-notice {
            background: rgba(32, 151, 138, 0.15);
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            padding: 20px;
            margin: 30px auto;
            max-width: 800px;
            text-align: center;
            backdrop-filter: blur(5px);
        }

        .services-notice p {
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .services-notice strong {
            color: var(--highlight-color);
        }

        /* Features Section */
        .features {
            background: rgba(10, 10, 20, 0.5);
            backdrop-filter: blur(10px);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid var(--border-color);
            opacity: 0;
            transform: translateY(20px);
        }

        .feature-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-item:hover {
            transform: translateY(-5px);
            border-color: var(--highlight-color);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--highlight-color);
            margin-bottom: 20px;
        }

        .feature-item h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .feature-item p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: rgba(10, 10, 20, 0.7);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .contact-card h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .contact-card p, .contact-card address {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
        }

        .contact-card a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-card a:hover {
            color: var(--highlight-color);
        }

        /* Footer */
        footer {
            background: rgba(10, 10, 20, 0.9);
            padding: 60px 0 30px;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column p, .footer-column address {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
        }

        .footer-column a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column a:hover {
            color: var(--highlight-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .services-grid, .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .navbar-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .navbar-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 15px;
            }
            
            .navbar-menu.active {
                display: flex;
                animation: fadeIn 0.4s ease;
            }
            
            .navbar-item {
                margin: 5px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .dropdown-menu {
                position: static;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                margin-left: 15px;
                border-left: 2px solid var(--primary-color);
            }
            
            .navbar-item:hover .dropdown-menu {
                display: block;
                animation: slideIn 0.3s ease;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .services-grid, .features-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card, .feature-item {
                padding: 20px;
            }
        }

