:root {
            --primary-color: #0a1f5c;
            --primary-light: #1a3a9a;
            --primary-dark: #051033;
            --secondary-color: #00b8ff;
            --secondary-light: #5de2ff;
            --secondary-dark: #0086cc;
            --accent-color: #ff3d7f;
            --light-color: #f8faff;
            --dark-color: #121826;
            --gray-color: #6c757d;
            --success-color: #00c853;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: white; /* Изменено на белый текст */
            line-height: 1.7;
            overflow-x: hidden;
            background: linear-gradient(135deg, #0c1530 0%, #1a2b5c 30%, #0a1f5c 70%, #051033 100%);
            background-attachment: fixed;
            position: relative;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 184, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 61, 127, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
            pointer-events: none;
            z-index: -1;
        }
        
        .container {
            position: relative;
            z-index: 2;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: white; /* Добавлено для заголовков */
        }
        
        p, span, div, a {
            color: white; /* Убедимся что весь текст белый */
        }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Header & Navigation */
        .navbar {
            background-color: rgba(10, 31, 92, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(0, 184, 255, 0.2);
        }
        
        .navbar.scrolled {
            padding: 0.6rem 0;
            background-color: rgba(5, 16, 51, 0.98);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.9rem;
            color: white !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .navbar-brand .logo-icon {
            font-size: 2.2rem;
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 30px;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: rgba(0, 184, 255, 0.15);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 70%;
        }
        
        .navbar-toggler {
            border-color: rgba(0, 184, 255, 0.5);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 184, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .cta-button {
            background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 184, 255, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 184, 255, 0.4);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            color: white;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 184, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 61, 127, 0.1) 0%, transparent 40%);
            z-index: -1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-section h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-section .lead {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 800px;
            color: rgba(255, 255, 255, 0.9); /* Явно задаем цвет */
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: pulse 2s infinite;
            color: white;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 184, 255, 0.5); }
            70% { box-shadow: 0 0 0 10px rgba(0, 184, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 184, 255, 0); }
        }
        
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            color: rgba(255, 255, 255, 0.8); /* Явно задаем цвет */
        }
        
        .hero-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #three-container {
            width: 100%;
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: rgba(0, 0, 0, 0.2);
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: float 6s ease-in-out infinite;
            color: white;
            text-align: center;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        
        .element-1 {
            top: 10%;
            left: 5%;
            width: 120px;
            animation-delay: 0s;
        }
        
        .element-2 {
            top: 5%;
            right: 10%;
            width: 100px;
            animation-delay: 1s;
        }
        
        .element-3 {
            bottom: 15%;
            left: 15%;
            width: 140px;
            animation-delay: 2s;
        }
        
        /* Sections */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 4rem;
            text-align: center;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }
        
        .section-title .title-decoration {
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            margin: 0 auto 1.5rem;
            border-radius: 5px;
        }
        
        .section-title p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        /* Services */
        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 184, 255, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .service-card h4 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .service-features li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        /* Calculator */
        .calculator-container {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .calculator-title {
            color: white;
            margin-bottom: 2rem;
            font-size: 2.2rem;
        }
        
        .calculator-subtitle {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }
        
        .price-highlight {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            display: inline-block;
            margin-bottom: 2rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 184, 255, 0.3);
        }
        
        .form-label {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }
        
        .form-control, .form-select {
            background-color: rgba(0, 0, 0, 0.3); /* Изменено для лучшей видимости */
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 10px;
            padding: 0.8rem 1rem;
            transition: all 0.3s;
        }
        
        /* Исправление цвета текста в выпадающих списках */
        .form-control option, .form-select option {
            background-color: var(--primary-dark);
            color: white;
        }
        
        .form-control:focus, .form-select:focus {
            background-color: rgba(0, 0, 0, 0.4);
            border-color: var(--secondary-color);
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(0, 184, 255, 0.25);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-range::-webkit-slider-thumb {
            background-color: var(--secondary-color);
            box-shadow: 0 0 10px rgba(0, 184, 255, 0.5);
        }
        
        .form-range::-moz-range-thumb {
            background-color: var(--secondary-color);
            box-shadow: 0 0 10px rgba(0, 184, 255, 0.5);
        }
        
        .range-value {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .price-display {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            margin-top: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .price-label {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }
        
        .price-amount {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 0.5rem 0;
            background: linear-gradient(90deg, white, var(--secondary-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .price-note {
            opacity: 0.8;
            font-size: 0.9rem;
            margin-top: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Portfolio */
        .portfolio-section {
            position: relative;
        }
        
        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .filter-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
            color: white;
            border-color: transparent;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .portfolio-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 184, 255, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .portfolio-content {
            padding: 1.8rem;
        }
        
        .portfolio-category {
            display: inline-block;
            background: rgba(0, 184, 255, 0.15);
            color: var(--secondary-color);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .portfolio-content h4 {
            color: white;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        
        .portfolio-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.2rem;
        }
        
        .portfolio-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.2rem;
        }
        
        .tech-tag {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.2rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
        }
        
        .portfolio-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }
        
        .portfolio-link:hover {
            color: var(--secondary-light);
            gap: 0.8rem;
        }
        
        /* Team */
        .team-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            height: 100%;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 184, 255, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.8rem;
            border: 5px solid rgba(0, 184, 255, 0.2);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .team-card h4 {
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .team-position {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 1.2rem;
        }
        
        .team-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }
        
        .team-skills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .skill-tag {
            background: rgba(0, 184, 255, 0.15);
            color: var(--secondary-light);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Contact - Telegram Focus */
        .contact-container {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
        }
        
        .telegram-section {
            background: linear-gradient(135deg, rgba(0, 184, 255, 0.1), rgba(0, 86, 179, 0.1));
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            margin-top: 2rem;
            border: 1px solid rgba(0, 184, 255, 0.2);
        }
        
        .telegram-icon {
            font-size: 4rem;
            color: #0088cc;
            margin-bottom: 1.5rem;
        }
        
        .telegram-button {
            background: linear-gradient(90deg, #0088cc, #00b8ff);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.1rem;
            margin-top: 1.5rem;
        }
        
        .telegram-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
            color: white;
        }
        
        .contact-info {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .contact-item {
            margin-bottom: 2.5rem;
        }
        
        .contact-icon {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .contact-item h4 {
            color: white;
            margin-bottom: 0.8rem;
        }
        
        .contact-item p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.3rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background: rgba(5, 16, 51, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4rem 0 2rem;
            color: white;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            display: block;
        }
        
        .footer-logo span {
            background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            max-width: 300px;
        }
        
        .footer-heading {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-input {
            flex-grow: 1;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 10px 0 0 10px;
            border-right: none;
        }
        
        .newsletter-btn {
            background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 10px 10px 0;
            font-weight: 600;
            cursor: pointer;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 3rem;
            }
            
            .hero-visual {
                margin-top: 3rem;
                height: 300px;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 80px;
            }
            
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section .lead {
                font-size: 1.2rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .calculator-container,
            .contact-container {
                padding: 2rem;
            }
            
            .price-amount {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-badge {
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 10px;
                margin-bottom: 0.5rem;
                border-right: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .newsletter-btn {
                border-radius: 10px;
            }
            
            .floating-element {
                display: none; /* Скрываем на мобильных для лучшего отображения 3D модели */
            }
        }

    /* Исправленный Swiper карусель */
.portfolio-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-carousel .swiper-wrapper {
    align-items: center;
}

.portfolio-carousel .swiper-slide {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.portfolio-carousel .swiper-slide-active {
    opacity: 1;
}

.portfolio-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-carousel .swiper-slide-active img:hover {
    transform: scale(1.02);
}

/* Кнопки навигации */
.portfolio-carousel .swiper-button-next,
.portfolio-carousel .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    opacity: 0;
}

.portfolio-carousel:hover .swiper-button-next,
.portfolio-carousel:hover .swiper-button-prev {
    opacity: 1;
}

.portfolio-carousel .swiper-button-next:hover,
.portfolio-carousel .swiper-button-prev:hover {
    background: rgba(0, 184, 255, 0.8);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.portfolio-carousel .swiper-button-next:after,
.portfolio-carousel .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.portfolio-carousel .swiper-button-next {
    right: 10px;
}

.portfolio-carousel .swiper-button-prev {
    left: 10px;
}

/* Кнопка полноэкранного режима */
.swiper-fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-carousel:hover .swiper-fullscreen-btn {
    opacity: 1;
}

.swiper-fullscreen-btn:hover {
    background: rgba(0, 184, 255, 0.8);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Счетчик слайдов - фиксированная позиция */
.swiper-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    z-index: 10;
    pointer-events: none;
}

/* Полноэкранный режим */
.swiper-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 16, 51, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.swiper-fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

.swiper-fullscreen-container {
    width: 90%;
    height: 90%;
    max-width: 1200px;
    position: relative;
}

.swiper-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.swiper-fullscreen-close:hover {
    background: rgba(255, 61, 127, 0.8);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.swiper-fullscreen {
    width: 100%;
    height: 100%;
}

.swiper-fullscreen .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-fullscreen .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.swiper-fullscreen .swiper-button-next,
.swiper-fullscreen .swiper-button-prev {
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
}

.swiper-fullscreen .swiper-button-next:after,
.swiper-fullscreen .swiper-button-prev:after {
    font-size: 24px;
}

.swiper-fullscreen .swiper-pagination {
    bottom: 20px !important;
}

.swiper-fullscreen .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-fullscreen .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

.swiper-fullscreen-counter {
    position: absolute;
    bottom: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-carousel .swiper-button-next,
    .portfolio-carousel .swiper-button-prev,
    .swiper-fullscreen-btn {
        opacity: 1;
        visibility: visible;
        width: 30px;
        height: 30px;
    }
    
    .portfolio-carousel .swiper-button-next:after,
    .portfolio-carousel .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .swiper-fullscreen-btn {
        font-size: 1rem;
    }
    
    .swiper-fullscreen-container {
        width: 95%;
        height: 95%;
    }
    
    .swiper-fullscreen-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
}

/* Добавьте в секцию стилей в <style> */
.phone-link {
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.phone-link:hover {
    color: var(--secondary-light);
    transform: translateX(5px);
}

.phone-numbers p {
    margin-bottom: 0.5rem;
}

/* АГРЕССИВНАЯ анимация для DataSprint ссылки */
.datasprint-link {
    position: relative;
    color: var(--secondary-color) !important;
    text-decoration: none;
    font-weight: 700;
    padding: 0 8px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ЯРКИЙ glow эффект для текста */
.datasprint-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    height: 130%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 184, 255, 0.3) 0%,
        rgba(255, 61, 127, 0.15) 50%,
        transparent 80%
    );
    border-radius: 6px;
    z-index: -1;
    opacity: 0.8;
    filter: blur(8px);
    animation: aggressive-glow 3s infinite ease-in-out;
}

.datasprint-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

@keyframes aggressive-glow {
    0%, 100% {
        opacity: 0.7;
        filter: blur(6px);
        background: radial-gradient(
            ellipse at center,
            rgba(0, 184, 255, 0.35) 0%,
            rgba(0, 184, 255, 0.15) 40%,
            transparent 80%
        );
        transform: translate(-50%, -50%) scale(1);
    }
    33% {
        opacity: 0.9;
        filter: blur(10px);
        background: radial-gradient(
            ellipse at center,
            rgba(255, 61, 127, 0.3) 0%,
            rgba(0, 184, 255, 0.25) 50%,
            transparent 85%
        );
        transform: translate(-50%, -50%) scale(1.05);
    }
    66% {
        opacity: 0.8;
        filter: blur(12px);
        background: radial-gradient(
            ellipse at center,
            rgba(93, 226, 255, 0.4) 0%,
            rgba(0, 184, 255, 0.2) 45%,
            transparent 80%
        );
        transform: translate(-50%, -50%) scale(1.02);
    }
}

/* АГРЕССИВНОЕ переливание цвета текста */
.datasprint-link {
    animation: aggressive-color-shift 4s infinite ease-in-out;
}

@keyframes aggressive-color-shift {
    0% {
        color: var(--secondary-color) !important;
        text-shadow: 
            0 0 15px rgba(0, 184, 255, 0.8),
            0 0 25px rgba(0, 184, 255, 0.5),
            0 0 35px rgba(0, 184, 255, 0.3);
    }
    33% {
        color: var(--secondary-light) !important;
        text-shadow: 
            0 0 20px rgba(93, 226, 255, 0.9),
            0 0 30px rgba(93, 226, 255, 0.6),
            0 0 40px rgba(93, 226, 255, 0.4);
    }
    66% {
        color: white !important;
        text-shadow: 
            0 0 18px rgba(255, 61, 127, 0.7),
            0 0 28px rgba(255, 61, 127, 0.5),
            0 0 38px rgba(255, 61, 127, 0.3);
    }
    100% {
        color: var(--secondary-color) !important;
        text-shadow: 
            0 0 15px rgba(0, 184, 255, 0.8),
            0 0 25px rgba(0, 184, 255, 0.5),
            0 0 35px rgba(0, 184, 255, 0.3);
    }
}

/* АГРЕССИВНОЕ хаотичное движение ракеты */
.datasprint-link .bi-rocket-takeoff {
    display: inline-block;
    animation: aggressive-rocket 3.5s infinite ease-in-out;
    filter: drop-shadow(0 0 3px currentColor);
}

@keyframes aggressive-rocket {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        color: var(--secondary-color);
    }
    15% {
        transform: translate(3px, -3px) rotate(5deg) scale(1.1);
        color: var(--secondary-light);
    }
    30% {
        transform: translate(-4px, 2px) rotate(-4deg) scale(0.95);
        color: white;
    }
    45% {
        transform: translate(2px, 4px) rotate(3deg) scale(1.05);
        color: var(--accent-color);
    }
    60% {
        transform: translate(-3px, -2px) rotate(-6deg) scale(1.08);
        color: var(--secondary-light);
    }
    75% {
        transform: translate(5px, -4px) rotate(4deg) scale(1.12);
        color: white;
    }
    90% {
        transform: translate(-2px, 3px) rotate(-3deg) scale(0.98);
        color: var(--secondary-color);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        color: var(--secondary-color);
    }
}

/* ЕЩЕ СИЛЬНЕЕ при наведении */
.datasprint-link:hover .bi-rocket-takeoff {
    animation: rocket-blast 0.8s infinite ease-in-out;
    filter: drop-shadow(0 0 8px currentColor);
}

.datasprint-link:hover::after {
    animation-duration: 1.5s;
    opacity: 1;
    filter: blur(15px);
}

@keyframes rocket-blast {
    0%, 100% {
        transform: translateY(0) scale(1.2);
    }
    50% {
        transform: translateY(-5px) scale(1.4);
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .datasprint-link::after {
        width: 108%;
        height: 120%;
        filter: blur(4px);
    }
    
    @keyframes aggressive-glow {
        0%, 100% {
            opacity: 0.6;
            filter: blur(4px);
        }
        33% {
            opacity: 0.8;
            filter: blur(6px);
        }
        66% {
            opacity: 0.7;
            filter: blur(5px);
        }
    }
    
    @keyframes aggressive-color-shift {
        0% {
            text-shadow: 
                0 0 10px rgba(0, 184, 255, 0.7),
                0 0 18px rgba(0, 184, 255, 0.4);
        }
        33% {
            text-shadow: 
                0 0 12px rgba(93, 226, 255, 0.8),
                0 0 20px rgba(93, 226, 255, 0.5);
        }
        66% {
            text-shadow: 
                0 0 11px rgba(255, 61, 127, 0.6),
                0 0 19px rgba(255, 61, 127, 0.4);
        }
    }
    
    .datasprint-link .bi-rocket-takeoff {
        animation: aggressive-rocket-mobile 4s infinite ease-in-out;
    }
    
    @keyframes aggressive-rocket-mobile {
        0%, 100% {
            transform: translate(0, 0) rotate(0deg) scale(1);
        }
        15% {
            transform: translate(2px, -2px) rotate(4deg) scale(1.05);
        }
        30% {
            transform: translate(-3px, 1px) rotate(-3deg) scale(0.97);
        }
        45% {
            transform: translate(1px, 3px) rotate(2deg) scale(1.03);
        }
        60% {
            transform: translate(-2px, -1px) rotate(-4deg) scale(1.06);
        }
        75% {
            transform: translate(3px, -3px) rotate(3deg) scale(1.08);
        }
    }
}