    /* ===== БАЗОВЫЕ СТИЛИ ===== */
    * {
      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 ===== */
    
    /* 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;
    }
    
    /* ===== ОСНОВНОЙ КОНТЕНТ СТРАНИЦЫ СТОИМОСТИ ===== */
    .pricing-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;
    }
    
    /* Заголовок страницы */
    .pricing-header {
      text-align: center;
      margin-bottom: 60px;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 0.2s;
    }
    
    .pricing-title {
      font-size: 42px;
      color: #1a73e8;
      margin-bottom: 20px;
    }
    
    .pricing-subtitle {
      font-size: 20px;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
    }
    
    /* Основной контент */
    .pricing-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    
    .pricing-info {
      opacity: 0;
      animation: fadeInUp 0.8s forwards 0.4s;
    }
    
    .pricing-card {
      background: linear-gradient(135deg, #f8fafc, #eef2f7);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .pricing-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
    }
    
    .product-icon {
      font-size: 48px;
      color: #1a73e8;
      margin-bottom: 20px;
      text-align: center;
    }
    
    .product-title {
      font-size: 28px;
      color: #1a73e8;
      margin-bottom: 15px;
      text-align: center;
    }
    
    .product-description {
      color: #666;
      text-align: center;
      margin-bottom: 30px;
    }
    
    .price-custom {
      text-align: center;
      margin: 30px 0;
      padding: 20px;
      background: rgba(26, 115, 232, 0.1);
      border-radius: 8px;
    }
    
    .price-label {
      font-size: 18px;
      color: #666;
      margin-bottom: 10px;
    }
    
    .price-value {
      font-size: 32px;
      font-weight: 800;
      color: #1a73e8;
      margin-bottom: 15px;
    }
    
    .price-note {
      font-size: 16px;
      color: #888;
    }
    
    .features-list {
      list-style: none;
      margin: 30px 0;
    }
    
    .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    .feature-item:hover {
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .feature-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
      flex-shrink: 0;
    }
    
    .feature-text {
      color: #555;
    }
    
    /* Контактная информация */
    .contact-info {
      opacity: 0;
      animation: fadeInUp 0.8s forwards 0.6s;
    }
    
    .contact-card {
      background: linear-gradient(135deg, #f8fafc, #eef2f7);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 100%;
    }
    
    .contact-title {
      font-size: 24px;
      color: #1a73e8;
      margin-bottom: 30px;
      text-align: center;
    }
    
    .contact-methods {
      list-style: none;
    }
    
    .contact-method {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
      padding: 20px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .contact-method:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .contact-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      flex-shrink: 0;
    }
    
    .contact-details {
      flex: 1;
    }
    
    .contact-type {
      font-size: 18px;
      font-weight: 600;
      color: #444;
      margin-bottom: 5px;
    }
    
    .contact-value {
      font-size: 20px;
      color: #1a73e8;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .contact-value:hover {
      color: #b833ff;
    }
    
    .contact-description {
      font-size: 14px;
      color: #666;
      margin-top: 5px;
    }
    
    /* Дополнительная информация */
    .additional-info {
      background: #eaf2fc;
      border-radius: 12px;
      padding: 60px 40px;
      background: #eaf2fc;
      text-align: center;
      margin: 60px 0;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 0.8s;
    }
    
    .additional-title {
      font-size: 32px;
      margin-bottom: 20px;
      color: #1a73e8;
    }
    
    .additional-text {
      font-size: 18px;
      margin-bottom: 30px;
      opacity: 0.9;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #888;
    }
    
    /* Кнопки действий */
    .action-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      opacity: 0;
      animation: fadeInUp 0.8s forwards 1s;
    }
    
    
    /* Анимации */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Адаптивность */
    @media (max-width: 992px) {
      .pricing-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }
    
    @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;
      }
      
      .pricing-title {
        font-size: 32px;
      }
      
      .contact-method {
        flex-direction: column;
        text-align: center;
      }
      
      .action-buttons {
        flex-direction: column;
        align-items: center;
      }
    }