/* ===== БАЗОВЫЕ СТИЛИ ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Montserrat", sans-serif;
    }
    html, body {
      height: 100%;
    }
    body {
      color: #333;
      background: #fff;
      line-height: 1.6;
    }
    
    /* ===== HEADER STYLES ===== */
    .header {
      background: linear-gradient(120deg, #0f172a, #1e3a8a);
      color: white;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 2000;
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .header-main {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      position: relative;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 10;
    }
    
    .logo-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #1a73e8, #b833ff);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
    }
    
    .logo-text {
      display: flex;
      flex-direction: column;
    }
    
    .logo-title {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: 1px;
    }
    
    .logo-subtitle {
      font-size: 12px;
      opacity: 0.8;
      letter-spacing: 2px;
    }
    
    .header-nav {
      display: flex;
      gap: 30px;
      z-index: 10;
    }
    
    .nav-link {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      position: relative;
      padding: 8px 0;
      transition: all 0.3s ease;
    }
    
    .nav-link:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover {
      color: #b833ff;
    }
    
    .nav-link:hover:after {
      width: 100%;
    }
    
    .nav-link.active {
      color: #b833ff;
    }
    
    .nav-link.active:after {
      width: 100%;
    }
    
    .header-actions {
      display: flex;
      gap: 15px;
      z-index: 10;
    }
    
    .header-btn {
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-primary {
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      color: white;
      border: none;
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
    }
    
    /* Mobile menu button (hidden by default) */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 20;
    }
    
    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    
    /* ===== ТИПОГРАФИЯ ===== */
    h1, h2, h3, h4 {
      font-weight: 800;
      line-height: 1.2;
    }
    h1 {
      font-size: 52px;
      margin-bottom: 24px;
    }
    h2 {
      font-size: 36px;
      margin-bottom: 40px;
      position: relative;
    }
    h2.section-title {
      color: #1a73e8;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    h2.section-title:after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      margin-top: 16px;
    }
    h2.section-title.white {
      color: #fff;
    }
    h2.section-title.white:after {
      background: linear-gradient(90deg, #20c2ff, #b833ff);
    }
    p {
      font-size: 18px;
      margin-bottom: 20px;
    }
    
    /* ===== КНОПКИ ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      padding: 14px 32px;
      font-weight: 500;
      border-radius: 4px;
      background: linear-gradient(90deg, #1a73e8 0%, #b833ff 100%);
      color: #fff;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 16px;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #1a73e8;
      color: #1a73e8;
    }
    .btn-outline:hover {
      background: #1a73e8;
      color: #fff;
    }
    
    /* ===== ОСНОВНОЙ КОНТЕНТ СТРАНИЦЫ AIM ===== */
    .aim-container {
      max-width: 1200px;
      margin: 150px auto 80px;
      padding: 0 20px;
    }
    
    /* Хлебные крошки */
    .breadcrumbs {
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeInUp 0.8s forwards;
    }
    
    .breadcrumbs-list {
      display: flex;
      list-style: none;
      gap: 10px;
    }
    
    .breadcrumbs-item {
      font-size: 14px;
      color: #666;
      display: flex;
      align-items: center;
    }
    
    .breadcrumbs-item:not(:last-child):after {
      content: '/';
      margin-left: 10px;
    }
    
    .breadcrumbs-link {
      color: #666;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .breadcrumbs-link:hover {
      color: #1a73e8;
    }
    
    /* Герой секция */
    .aim-hero {
      background: linear-gradient(135deg, #0f172a, #1e3a8a);
      color: #fff;
      padding: 80px 40px;
      border-radius: 16px;
      margin-bottom: 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 0.2s;
    }
    
    .aim-hero:before {
      content: "";
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(26, 115, 232, 0.2) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .aim-hero:after {
      content: "";
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(184, 51, 255, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .aim-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .aim-title {
      font-size: 42px;
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    
    .aim-subtitle {
      font-size: 24px;
      margin-bottom: 40px;
      opacity: 0.9;
    }
    
    .aim-acronym {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 12px;
      display: inline-block;
      margin-bottom: 30px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .aim-acronym span {
      font-weight: 700;
      color: #b833ff;
    }
    
    /* Коротко о AIM */
    .aim-about {
      margin-bottom: 80px;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 0.4s;
    }
    
    .about-header {
      text-align: left;
      margin-bottom: 50px;
    }
    
    .about-content {
      background: linear-gradient(135deg, #f8fafc, #eef2f7);
      border-radius: 16px;
      padding: 60px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      position: relative;
    }
    
    .about-content:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
    }
    
    .about-text {
      font-size: 20px;
      text-align: center;
      margin-bottom: 0;
      line-height: 1.8;
    }
    
    /* Возможности AIM */
    /* AIM позволяет - ваши оригинальные стили */
.aim-capabilities {
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.6s;
}

.capabilities-header {
    text-align: left;
    margin-bottom: 50px;
}

.capabilities-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.capabilities-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 400px;
}

.capability-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 4px solid #1a73e8;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.capability-icon {
    font-size: 48px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.capability-title {
    font-size: 22px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.capability-description {
    color: #666;
    line-height: 1.6;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .capabilities-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .capabilities-column {
        max-width: 100%;
    }
    
    .capability-card {
        padding: 30px 20px;
    }
}
    
    /* Преимущества */
    .aim-benefits {
      margin-bottom: 80px;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 0.8s;
    }
    
    .benefits-header {
      text-align: left;
      margin-bottom: 50px;
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .benefit-card {
      background: linear-gradient(135deg, #f8fafc, #eef2f7);
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    
    .benefit-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(180deg, #1a73e8, #b833ff);
    }
    
    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .benefit-icon {
      font-size: 42px;
      color: #1a73e8;
      margin-bottom: 20px;
    }
    
    .benefit-title {
      font-size: 24px;
      color: #1a73e8;
      margin-bottom: 15px;
    }
    
    .benefit-description {
      color: #555;
      line-height: 1.6;
    }
    
    /* Система учета активов */
    
    .aim-schema {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .asset-system {
      margin-bottom: 80px;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 1s;
    }
    
    .system-header {
      text-align: left;
      margin-bottom: 50px;
    }
    
    .system-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .system-image {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      background: linear-gradient(135deg, #1a73e8, #b833ff);
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      font-weight: 600;
    }
    
    .system-features {
      list-style: none;
    }
    
    .system-feature {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      padding: 15px;
      background: #f8fafc;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    .system-feature:hover {
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .feature-check {
      width: 30px;
      height: 30px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      flex-shrink: 0;
    }
    
    .feature-text {
      color: #444;
      font-weight: 500;
    }
    
    /* Видеоматериалы */
    .aim-videos {
      margin-bottom: 80px;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 1.2s;
    }
    
    .videos-header {
      text-align: left;
      margin-bottom: 50px;
    }
    
    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .video-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    }
    
    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    /* Обновленные стили для видео-контейнеров */
    .video-container {
      position: relative;
      width: 100%;
      height: 200px;
      background: #1a1a1a;
      overflow: hidden;
    }
    
    .video-player {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 1;
    }
    
    .video-overlay i {
      font-size: 60px;
      color: white;
      opacity: 0.9;
      transition: all 0.3s ease;
    }
    
    .video-overlay:hover i {
      opacity: 1;
      transform: scale(1.1);
    }
    
    .video-container.playing .video-overlay {
      opacity: 0;
      pointer-events: none;
    }
    
    .video-content {
      padding: 25px;
    }
    
    .video-title {
      font-size: 18px;
      color: #1a73e8;
      margin-bottom: 10px;
    }
    
    .video-description {
      color: #666;
      font-size: 14px;
    }
    
    /* Кнопка действия */
    .aim-actions {
      text-align: center;
      margin-bottom: 60px;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 1.4s;
    }
    
    /* Футер */
    .blog-footer {
      background: linear-gradient(120deg, #0f172a, #1e3a8a);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    
    .footer-widget h3 {
      font-size: 20px;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .footer-widget h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
    }
    
    .footer-about p {
      margin-bottom: 25px;
      opacity: 0.8;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
    }
    
    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .social-link:hover {
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      transform: translateY(-3px);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 15px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .footer-links a:hover {
      color: #b833ff;
      gap: 15px;
    }
    
    .footer-contact {
      list-style: none;
    }
    
    .footer-contact li {
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    
    .footer-contact i {
      color: #b833ff;
      font-size: 20px;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      margin-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
      opacity: 0.7;
      font-size: 14px;
    }
    
    /* Анимации */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Адаптивность */
    @media (max-width: 992px) {
      .system-content {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .header-main {
        padding: 15px 20px;
      }
      
      .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(120deg, #0f172a, #1e3a8a);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      
      .header-nav.active {
        display: flex;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .aim-title {
        font-size: 32px;
      }
      
      .aim-subtitle {
        font-size: 20px;
      }
      
      .about-content {
        padding: 40px 20px;
      }
      
      .video-container {
        height: 180px;
      }
      
      .video-overlay i {
        font-size: 50px;
      }
    }

    @media (max-width: 480px) {
      .video-container {
        height: 160px;
      }
      
      .video-overlay i {
        font-size: 40px;
      }
    }