   /* 1) Шапка ниже админ-панели */
body.admin-bar .site-header { top: 32px; }           /* десктоп */
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }         /* мобайл */
}

/* 2) На всякий — пусть панель всегда поверх */
#wpadminbar { z-index: 100000; }

/* 3) Если у шапки огромный z-index — прижми пониже панели */
.site-header { z-index: 9999; }  /* меньше, чем у #wpadminbar */

   
      .payment-success-page {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        .success-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .success-icon {
            margin: 0 auto 20px;
            width: 80px;
            height: 80px;
            animation: checkmark 0.6s ease-in-out;
        }
        
        @keyframes checkmark {
            0% { transform: scale(0); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .success-subtitle {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            margin-top: 15px;
        }
        
        .vacancy-info-card {
            background: #f8f9fa;
            border-radius: 3px;
            padding: 30px;
            margin: 30px 0;
            /* border-left: 4px solid #4CAF50; */
            text-align: center;
        }
        
        .vacancy-info-card h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .vacancy-info-card p {
            color: #666;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .vacancy-id {
            font-size: 14px !important;
            color: #999 !important;
            margin-top: 15px !important;
        }
        
        .vacancy-id span {
            font-family: 'Courier New', monospace;
            background: #e9ecef;
            padding: 2px 6px;
            border-radius: 4px;
            color: #666;
        }
        
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .info-card {
            background: white;
            border-radius: 3px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
        }
        
        .info-icon {
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .info-card h4 {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .info-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .action-buttons {
            text-align: center;
            margin: 40px 0 30px;
        }
        
      
        .support-text {
            text-align: center;
            font-size: 14px;
            color: #999;
            margin-top: 30px;
        }
        
        @media (max-width: 768px) {
            .payment-success-page {
                padding: 20px 0;
            }
            
            .vacancy-info-card {
                padding: 20px;
            }
            
            .info-cards {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
       
        }
        .promosc {
  position: relative;
  overflow: hidden;
  display: flex;
 
  padding: 80px 0; /* высота по контенту; если нужен фулл-скрин — добавь min-height:100vh */
 
}

.promosc__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.promosc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 2;
}

.promosc .container {
  position: relative;
  z-index: 3;
  color: #fff;
}