 
        :root {
            --primary: #4361ee;
            --primary-light: #4895ef;
            --primary-dark: #3a0ca3;
            --secondary: #7209b7;
            --accent: #f72585;
            --success: #4cc9f0;
            --warning: #f8961e;
            --danger: #ef233c;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            overflow-x: hidden;
            width: 100%;
        }
        
        body {
            font-family: 'Manrope', 'Inter', -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #f5f7ff;
        }
        
        /* Контейнер */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            box-shadow: var(--shadow-sm);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn-icon {
            margin-right: 8px;
        }
        
        /* Хедер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            padding: 0 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-dark);
            z-index: 1001;
        }
        
        .logo-icon {
            margin-right: 10px;
            color: var(--primary);
            font-size: 2rem;
        }
        
        /* Бургер-меню */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--primary-dark);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        /* Навигация */
        .nav-menu {
            display: flex;
            align-items: center;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin: 0 15px;
            position: relative;
        }
        
        .nav-link {
   font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
    transition: var(--transition);
    text-decoration: none; /* Убирает подчеркивание */
}

.nav-link:hover {
    color: var(--primary);
    text-decoration: none; /* Убирает подчеркивание при наведении */
}

.nav-link.active {
    color: var(--primary);
    /* Удалено подчеркивание */
}

        }
        
        .auth-buttons {
            display: flex;
            margin-left: 20px;
        }
        
        .auth-buttons .btn {
            margin-left: 15px;
        }
        
        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: white;
            padding: 30px;
            box-shadow: var(--shadow-lg);
            transform: translateY(-150%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            pointer-events: none;
        }
        
        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }
        
        .mobile-nav-list {
            list-style: none;
        }
        
        .mobile-nav-item {
            margin-bottom: 20px;
        }
        
        .mobile-nav-link {
            font-weight: 600;
            color: var(--dark);
            padding: 12px 0;
            display: block;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .mobile-nav-link:hover {
            color: var(--primary);
        }
        
        .mobile-nav-link.active {
            color: var(--primary);
        }
        
        .mobile-auth {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }
        
        /* Герой секция */
        .hero {
            padding-top: 80px;
            padding-bottom: 50px;
            background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(67,97,238,0.1) 0%, rgba(67,97,238,0) 70%);
            z-index: 0;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 50px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .hero-title span {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
        }
        
        .hero-image {
            flex: 1;
            position: relative;
        }
        
        .hero-img {
            width: 100%;
            max-width: 600px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: perspective(1000px) rotateY(-10deg) translateY(0); }
            50% { transform: perspective(1000px) rotateY(-10deg) translateY(-20px); }
        }
        
        /* Поисковая форма */
        .search-box {
            background: white;
            margin-bottom: -55px; 
            padding: 40px;
            box-shadow: var(--shadow-lg);
            margin-top: 10px;
            position: relative;
            z-index: 2;
        }
        
        .search-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .search-tab {
            padding: 12px 24px;
            margin-right: 5px;
            font-weight: 600;
            cursor: pointer;
            border-radius: var(--radius-sm) var(--radius-sm) 0 0;
            transition: var(--transition);
            color: var(--gray);
        }
        
        .search-tab.active {
            color: var(--primary);
            background: rgba(67,97,238,0.1);
            position: relative;
        }
        
        .search-tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .search-form {
            display: flex;
        }
        
        .search-input {
            flex: 1;
            padding: 16px 20px;
            border: 0px solid var(--light-gray);
            border-radius: var(--radius-md) 0 0 var(--radius-md);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(67,97,238,0.2);
        }
        
        .search-btn {
            padding: 16px 30px;
            
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .search-btn:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        }
        
        /* Особенности */
        .features {
            background: white;
            position: relative;
            padding: 80px 0;
        }
        
        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--light-gray);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(67,97,238,0.1) 0%, rgba(114,9,183,0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-text {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Статистика */
        .stats {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
            color: white;
            padding: 80px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-card {
            text-align: center;
            padding: 30px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Как это работает */
        .how-it-works {
            background: var(--light);
            padding: 80px 0;
        }
        
        .steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .step {
            display: flex;
            align-items: flex-start;
            background: white;
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .step:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }
        
        .step-number {
            min-width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            margin-right: 20px;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .step-text {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Тарифы */
        .pricing {
            background: white;
            padding: 80px 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .pricing-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--light-gray);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            position: relative;
        }
        
        .pricing-card.popular::before {
            content: 'Популярный';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 5px 30px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-header {
            padding: 30px;
            text-align: center;
            background: linear-gradient(135deg, rgba(67,97,238,0.1) 0%, rgba(114,9,183,0.1) 100%);
        }
        
        .pricing-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-dark);
        }
        
        .pricing-period {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .pricing-features {
            padding: 30px;
        }
        
        .pricing-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .pricing-feature i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        .pricing-footer {
            padding: 0 30px 30px;
            text-align: center;
        }
        
        /* Отзывы */
        .testimonials {
            background: var(--light);
            padding: 80px 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text::before {
            content: ' ';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* CTA */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .cta .btn-outline {
            border-color: white;
            color: white;
        }
        
        .cta .btn-outline:hover {
            background: white;
            color: var(--primary);
        }
        
        /* Футер */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .footer-links li {
            margin-bottom: 10px;
            list-style: none; /* Убирает маркеры списка */
            padding-left: 0;  /* Убирает отступ слева */
            margin-left: 0;   /* Убирает внешний отступ */
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-contact-item i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }
        
        /* Адаптивность */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu, .auth-buttons {
                display: none;
            }
            
            .hero-container {
                flex-direction: column;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 50px;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
                height: 70px;
            }
            
            .logo {
                font-size: 1.5rem;
                 text-decoration: none !important;
            }
            
            .hero {
                padding-top: 140px;
                padding-bottom: 60px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .search-box {
                padding: 1px;
                margin-top: -45px;
            }
            
            .search-tabs {
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            
            .search-tabs::-webkit-scrollbar {
                display: none;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-input {
                border-radius: var(--radius-md) var(--radius-md) 0 0;
            }
            
            .search-btn {
               
            }
            
            .features-grid, .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular::before {
                right: -25px;
                padding: 5px 25px;
                font-size: 0.7rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .header-container {
                padding: 0 15px;
            }
            
            .hero {
                padding-top: 120px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-buttons .btn {
                width: 100%;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
          /* Общие стили для кнопки */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #4361ee;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
    z-index: 9999;
    border: none;
    outline: none;
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .back-to-top:hover {
    background-color: #3a0ca3;
    transform: translateY(-3px);
  }

  /* Мобильная адаптация */
  @media (max-width: 768px) {
    .back-to-top {
      width: 45px;
      height: 45px;
      font-size: 20px;
      bottom: 20px;
      right: 20px;
    }
 
 

body {margin:0;}

.bavbar {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  bottom: 0;
  width: 100%;
  
  z-index: 1030;
}

.Bavbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.bavbar a:hover {
  background: #ddd;
  color: black;
}

  }
 